-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 878 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "streaming-room",
"version": "1.0.0",
"description": "A real-time collaborative video streaming platform",
"scripts": {
"start": "concurrently \"npm run start:http\" \"npm run start:socket\" \"npm run start:react\"",
"start:http": "cd server && npm run start:http",
"start:socket": "cd server && npm run start:socket",
"start:react": "cd ui && npm start",
"install:all": "npm install && cd server && npm install && cd ../ui && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd server && npm run dev",
"dev:frontend": "cd ui && npm start",
"env:check": "node -e \"require('dotenv').config(); console.log('Environment variables loaded:', process.env)\""
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}