-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "climbing-pass",
"version": "0.1.0",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.9.1",
"@tanstack/react-query": "^5.18.0",
"@toss/use-overlay": "^1.3.6",
"@types/react-signature-canvas": "^1.0.4",
"@vercel/analytics": "^1.2.2",
"@vercel/blob": "^0.20.0",
"@vercel/postgres": "^0.7.2",
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"jsonwebtoken": "^9.0.2",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"next-intl": "^3.15.4",
"react": "^18",
"react-datepicker": "^6.1.0",
"react-dom": "^18",
"react-hook-form": "^7.50.0",
"react-number-format": "^5.3.1",
"react-signature-canvas": "^1.0.6",
"react-to-pdf": "^1.0.1",
"react-toastify": "^10.0.5",
"yup": "^1.3.2",
"zod": "^3.23.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"@tanstack/react-query-devtools": "^5.18.0",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^6.0.1",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^14.1.0",
"eslint-plugin-import": "^2.28.1",
"postcss": "^8",
"prisma": "^5.9.1",
"tailwindcss": "^3",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}