-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "regenx-control-room",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"serve": "node ./scripts/realtime-server.mjs",
"deploy:appwrite": "node ./scripts/appwrite-deploy.mjs",
"build": "echo \"No build step required for static frontend\"",
"lint": "echo \"lint skipped (no config yet)\"",
"test:pwa": "node scripts/validate-pwa.mjs",
"test:config": "node scripts/validate-config.mjs",
"test:modules": "node scripts/validate-modules.mjs",
"test:health": "node scripts/validate-health.mjs",
"test": "npm run test:pwa && npm run test:modules && npm run test:health"
},
"dependencies": {
"express": "^4.22.2",
"socket.io": "^4.8.3",
"dotenv": "^17.4.2"
}
}