-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.83 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
{
"name": "message-wall",
"version": "1.0.0",
"type": "module",
"private": false,
"scripts": {
"dev": "node server.js",
"dev:next": "next dev --turbopack",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"start:next": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset --force",
"db:deploy": "prisma migrate deploy",
"setup": "npm install && npx prisma generate && npx prisma migrate dev && npm run db:seed",
"clean": "rm -rf .next node_modules/.cache",
"health-check": "node scripts/health-check.cjs",
"prepare-public": "npm run health-check && echo 'See CLEANUP_CHECKLIST.md for final steps'"
},
"dependencies": {
"@prisma/client": "^6.13.0",
"@radix-ui/react-slot": "^1.2.3",
"@types/bcryptjs": "^2.4.6",
"@types/qrcode": "^1.5.5",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"multer": "^2.0.2",
"next": "15.4.6",
"next-auth": "^4.24.11",
"qrcode": "^1.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/multer": "^2.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"prisma": "^6.13.0",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}