-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "jukebox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"kiosk": "cmd /c scripts\\kiosk-start.bat",
"kiosk:install": "powershell -ExecutionPolicy Bypass -File scripts\\install-kiosk-startup.ps1",
"lint": "eslint",
"seed": "ts-node prisma/seed.ts",
"db:generate": "prisma generate && prisma generate --schema=prisma/cloud/schema.prisma",
"db:migrate": "prisma migrate dev",
"db:push:cloud": "prisma db push --schema=prisma/cloud/schema.prisma",
"import-playlist": "ts-node --project tsconfig.json scripts/import-playlist.ts"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"lucide-react": "^0.575.0",
"mercadopago": "^2.12.0",
"next": "16.1.6",
"prisma": "^5.22.0",
"qrcode.react": "^4.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-simple-keyboard": "^3.8.186"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}