-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "playwright-reports-server",
"version": "4.2.1",
"description": "Playwright Reports Server: Can be used to accept blobs, merge them, store and view Playwright reports",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "cp -r .next/static .next/standalone/.next/ && cp -r ./public .next/standalone/public && node .next/standalone/server.js",
"format:check": "prettier --ignore-path .gitignore --list-different '**/**/*.{ts,json,md}'",
"format:fix": "npm run format:check -- --write",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"test:unit": "jest --testPathPattern=__tests__/unit",
"test:integration": "jest --testPathPattern=__tests__/integration"
},
"dependencies": {
"@nextui-org/react": "^2.4.8",
"@playwright/test": "1.45.1",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-query-devtools": "^5.59.15",
"croner": "^9.0.0",
"envalid": "^8.0.0",
"framer-motion": "^11.11.8",
"get-folder-size": "5.0.0",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"mime": "^4.0.4",
"minio": "^8.0.2",
"next": "14.2.21",
"next-auth": "^5.0.0-beta.22",
"next-themes": "^0.3.0",
"recharts": "^2.13.0",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": ">=22.10.2",
"@types/react": "18.3.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"autoprefixer": "10.4.20",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.3",
"jest": "^29.7.0",
"postcss": "8.4.47",
"prettier": "^3.3.3",
"tailwind-variants": "0.2.1",
"tailwindcss": "3.4.13",
"ts-node": "^10.9.2",
"typescript": "5.2.2"
},
"engines": {
"node": ">=20.0.0"
}
}