forked from digital-stage/auth-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
64
65
66
{
"name": "@digitalstage/auth-server",
"version": "0.0.1",
"description": "Authentication server for digital-stage.org",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development LOG_LEVEL=debug nodemon --watch './src/**/*.ts' --exec 'ts-node' src/index.ts | pino-colada",
"build": "tsc",
"start": "NODE_ENV=development tsc && node ./dist/index.js",
"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 auth-server'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-stage/auth-server.git"
},
"keywords": [
"video",
"realtime",
"mediasoup",
"node"
],
"author": "Tobias Hegemann <tobias.hegemann@googlemail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-stage/auth-server/issues"
},
"homepage": "https://github.com/digital-stage/auth-server#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/ip": "^1.1.0",
"@types/mongodb": "^3.5.27",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.10.1",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"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.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"mongodb": "^3.6.2",
"mongoose": "^5.10.5",
"node": "^14.10.1",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pino": "^6.6.1",
"pino-pretty": "^4.2.1",
"socket.io": "^2.3.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.0"
}
}