forked from digital-stage/v1-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "digitalstage-router",
"version": "0.0.1",
"description": "Router microservice for Digital Stage Platform",
"main": "index.js",
"scripts": {
"dev": "LOG_LEVEL=trace SSL=false PORT=3020 DOMAIN=localhost API_URL=http://localhost:4000 NODE_ENV=development nodemon --watch './src/**/*.ts' --exec 'ts-node' ./src/index.ts | pino-colada",
"build": "NODE_ENV=production tsc",
"start": "DEBUG=router* NODE_ENV=production tsc && node ./dist/index.js",
"deploy-frankfurt": "NODE_ENV=production pm2 deploy ecosystem.config.js frankfurt --force",
"deploy-amsterdam": "NODE_ENV=production pm2 deploy ecosystem.config.js amsterdam --force",
"deploy-production": "NODE_ENV=production pm2 deploy ecosystem.config.js production --force",
"reload-production": "NODE_ENV=production pm2 deploy ecosystem.config.js production exec 'pm2 reload router'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-stage/router.git"
},
"keywords": [
"mediasoup",
"router",
"digital",
"stage",
"art"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"fs": "0.0.1-security",
"https": "^1.0.0",
"lodash.omit": "^4.5.0",
"mediasoup": "latest",
"node": "^14.13.0",
"node-fetch": "^2.6.1",
"pino": "^6.7.0",
"public-ip": "4.0.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-pino-logger": "^4.0.2",
"@types/lodash.omit": "^4.5.6",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@types/node-fetch": "^2.5.7",
"@types/pino": "^6.3.2",
"@types/socket.io": "^2.1.11",
"nodemon": "^2.0.4",
"pino-colada": "^2.1.0",
"process": "^0.11.10",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"author": "tobias.hegemann@googlemail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-stage/router/issues"
},
"homepage": "https://github.com/digital-stage/router#readme"
}