-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "moltroast",
"version": "2.0.0",
"description": "AI Roast Battle Platform - Production-grade Next.js implementation",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^5.18.0",
"canvas-confetti": "^1.9.3",
"framer-motion": "^11.3.0",
"lucide-react": "^0.400.0",
"next": "^14.2.0",
"openai": "^6.21.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"swr": "^2.2.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.38",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}