-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (52 loc) · 1.27 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
{
"name": "codesprint",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate & next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@prisma/client": "^6.19.2",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.34.0",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.563.0",
"motion": "^12.34.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"prisma": "^6.19.2",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"three": "^0.182.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.6.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.182.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"prisma": {
"seed": "ts-node prisma/seed.js"
}
}