-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.39 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "handsup",
"version": "0.1.0",
"private": true,
"scripts": {
"dev2": "node server.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"format": "prettier --cache --write .",
"lint": "eslint --cache .",
"mock": "npx tsx watch ./src/utils/mocks/http.ts"
},
"dependencies": {
"@dotlottie/react-player": "^1.6.18",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.4",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-devtools": "^5.18.1",
"@tanstack/react-query-next-experimental": "^5.18.1",
"@types/stompjs": "^2.3.9",
"axios": "^1.6.7",
"chart.js": "^4.4.2",
"class-variance-authority": "^0.7.0",
"dayjs": "^1.11.10",
"file-saver": "^2.0.5",
"firebase": "^10.8.1",
"html2canvas": "^1.4.1",
"install": "^0.13.0",
"msw": "^2.3.5",
"next": "14.1.0",
"next-pwa": "^5.6.0",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-tailwindcss-datepicker": "^1.6.6",
"tailwind-scrollbar-hide": "^1.1.7",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.9.2",
"@stomp/stompjs": "^7.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/file-saver": "^2.0.7",
"@types/next-pwa": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^6.0.1",
"@types/react-dom": "^18",
"@types/sockjs-client": "^1.5.4",
"@types/uuid": "^9",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.0.1",
"clsx": "^2.1.0",
"cors": "^2.8.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"express": "^4.18.2",
"husky": "^8.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"packageManager": "yarn@4.1.0",
"msw": {
"workerDirectory": [
"public"
]
}
}