-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1010 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
31
32
33
34
35
36
{
"name": "procomm-app",
"version": "2.0.1",
"description": "ProComm Video Conference Application - React + Node.js",
"main": "server/server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run peer\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"peer": "peer --port 3002 --key peerjs",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"install-all": "npm install && cd client && npm install && cd ../server && npm install",
"vercel-build": "cd client && npm install && npm run build",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"keywords": [
"video-conference",
"react",
"nodejs",
"webrtc",
"socket.io"
],
"author": "Varun Kumar",
"license": "MIT",
"dependencies": {
"uuid": "^9.0.1",
"socket.io": "^4.8.1"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": "20.x"
}
}