-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
37 lines (37 loc) · 1.07 KB
/
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
34
35
36
37
{
"name": "simple_webrtc_signaling_server",
"version": "1.0.0",
"description": "WebRTC signalling server using Socket.io with option for rooms and deployment instructions",
"main": "server.js",
"repository": "[email protected]:aljanabim/simple_webrtc_signaling_server.git",
"author": "Mustafa Al-Janabi",
"license": "MIT",
"scripts": {
"start": "env-cmd -f ./config/prod.env node server.js",
"dev": "env-cmd -f ./config/dev.env nodemon server.js",
"client1": "nodemon ./examples/example-client1.js",
"client2": "nodemon ./examples/example-client2.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"sirv": "^1.0.5",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1",
"env-cmd": "^10.1.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"keywords": [
"signaling server",
"webrtc",
"peer-to-peer",
"signaling",
"socket.io",
"websocket"
],
"engines": {
"node": ">=14.x"
}
}