-
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) · 1.07 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"name": "internview",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:all": "concurrently --kill-others \"npm run start:apigateway\" \"npm run start:user\" \"npm run start:advertisement\" \"npm run start:client\" \"npm run start:problems\" \"npm run start:webrtc\" \"npm run start:ide\"",
"start:apigateway": "npm --prefix .\\apigateway run dev",
"start:user": "npm --prefix .\\src\\user\\v1\\ run dev",
"start:advertisement": "npm --prefix .\\src\\advertisement\\v1\\ run dev",
"start:client": "npm --prefix .\\client\\ start",
"start:problems": "npm --prefix .\\src\\Problem\\v1\\ run dev",
"start:webrtc": "npm --prefix .\\src\\WebRTC\\ run dev",
"start:ide": "npm --prefix .\\src\\CollaborativeIDE\\ run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.0.1"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"react-codemirror2-react-17": "^1.0.0",
"socket.io": "^4.6.1",
"twilio": "^4.11.1",
"uuid": "^9.0.0"
}
}