-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "mlsc-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@react-three/drei": "^9.88.13",
"@react-three/fiber": "^8.15.10",
"@react-three/postprocessing": "^2.15.12",
"@react-three/rapier": "^1.2.1",
"@types/three": "^0.158.2",
"@vercel/blob": "^0.22.1",
"@vercel/kv": "^1.0.1",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"eslint-config-next": "^14.0.1",
"leva": "^0.9.35",
"next": "^14.0.1",
"next-auth": "^4.24.5",
"next-cloudinary": "^6.3.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"three": "^0.161.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.10.5",
"autoprefixer": "^10",
"lamina": "^1.1.23",
"postcss": "^8",
"prisma": "^5.7.1",
"sass": "^1.71.1",
"tailwindcss": "^3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}