-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 949 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
{
"name": "web-rtc-signal-server",
"scripts": {
"run": "ts-node ./src/index.ts",
"prod": "nodemon --watch src --exec 'ts-node' ./src/index.ts",
"pm-start": "pm2 start ecosystem.config.js --env production",
"pm-stop": "pm2 stop ChatSignalServer",
"pm-restart": "pm2 restart ChatSignalServer"
},
"dependencies": {
"@socket.io/pm2": "^5.3.0",
"@socket.io/redis-adapter": "^8.2.1",
"@socket.io/redis-streams-adapter": "^0.1.0",
"@types/body-parser": "^1.19.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"redis": "^4.6.7",
"socket.io": "^4.7.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/node": "^20.4.1",
"@types/socket.io": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}