-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "auth-server",
"version": "1.0.0",
"description": "JWT authentication server",
"main": "./dist/server.js",
"scripts": {
"debug": "nodemon --watch ./dist --nolazy --inspect=0.0.0.0:9229 ./dist/server.js",
"docker-debug": "docker-compose -f docker-compose.yml -f docker-compose-dev.yml up",
"build": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"start": "node ./dist/server.js"
},
"author": "Tom Fenech",
"license": "GPL-3.0",
"dependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.5",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.0.37",
"@types/http-proxy-middleware": "^0.17.1",
"@types/jsonwebtoken": "^7.2.3",
"@types/mongoose": "^4.7.23",
"@types/node": "^8.0.41",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"http-proxy-middleware": "^0.17.4",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.12.2",
"typescript": "^2.5.3"
},
"devDependencies": {
"nodemon": "^1.12.1"
}
}