-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.02 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
{
"name": "tapakila-nextjs-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed:events": "ts-node scripts/seed_events.ts",
"cy:open": "cypress open",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.3",
"@clerk/nextjs": "^6.39.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.4.7",
"@neondatabase/serverless": "^0.10.4",
"@nextui-org/react": "^2.6.11",
"@prisma/client": "^6.5.0",
"@prisma/extension-accelerate": "^1.3.0",
"@types/bcryptjs": "^2.4.6",
"@vercel/analytics": "^1.5.0",
"aos": "^2.3.4",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"jsonwebtoken": "^9.0.2",
"next": "^16.3.0",
"next-auth": "^5.0.0-beta.32",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"sonner": "^2.0.3",
"swiper": "^14.0.7",
"swr": "^2.3.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/aos": "^3.0.7",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.24",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.0.4",
"@types/swiper": "^5.4.3",
"cypress": "^15.19.0",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"postcss": "^8",
"prisma": "^6.5.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3"
},
"allowScripts": {
"@clerk/shared@3.47.7": true,
"@prisma/client@6.19.3": true,
"@prisma/engines@6.19.3": true,
"bcrypt@6.0.0": true,
"prisma@6.19.3": true,
"unrs-resolver@1.12.2": true,
"cypress@15.19.0": true
}
}