-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
{
"name": "vibe-codin-pie",
"version": "1.0.0",
"description": "🥧 Vibe Cod'in Pie - AI-driven interactive live coding music for GeekPie Pi Day",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run dev:server",
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "node --watch server/index.js",
"dev:client": "vite client",
"build": "vite build client",
"start": "NODE_ENV=production node server/index.js",
"preview": "vite preview client",
"test:ws": "node test/ws_stability_test.js"
},
"dependencies": {
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"qrcode": "^1.5.4",
"ws": "^8.18.0"
},
"devDependencies": {
"vite": "^6.1.0"
}
}