forked from cakePhone/bugsbyte2526
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "geisha-gains",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^6.19.2",
"@tabler/icons-react": "^3.35.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"jos": "^0.0.2",
"jose": "^6.1.3",
"lightweight-charts": "^5.1.0",
"lucide-react": "^0.545.0",
"next": "^16.1.6",
"postprocessing": "^6.37.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.7.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.180.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/bcryptjs": "^2.4.6",
"@types/node": "25.2.3",
"@types/react": "19.2.14",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"prisma": "^6.19.2",
"tailwindcss": "^3.4.4",
"tsx": "^4.19.2",
"typescript": "5.9.3"
}
}