This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
67
68
69
{
"name": "@digitalstage/auth-server",
"private": true,
"version": "0.0.1",
"description": "Authentication server for digital-stage.org",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development DEBUG=auth* nodemon --watch './src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "npx eslint ./src --ext .js,.ts",
"build": "tsc",
"start": "NODE_ENV=development DEBUG=auth* 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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-stage/auth-server/issues"
},
"homepage": "https://github.com/digital-stage/auth-server#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/node": "^16.7.1",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^13.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.7",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
}
}