-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 877 Bytes
/
package.json
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
{
"name": "rooms",
"version": "0.0.1",
"description": "peer to peer video conferencing in the browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"start": "concurrently \"npm run server\" \"npm start --prefix client/.\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nabilahmedkhatri/rooms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nabilahmedkhatri/rooms/issues"
},
"homepage": "https://github.com/nabilahmedkhatri/rooms#readme",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash.clonedeep": "^4.5.0",
"websocket": "^1.0.30",
"ws": "^7.1.2"
},
"devDependencies": {
"concurrently": "^4.1.2"
}
}