-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "rrp-blog-user-service",
"version": "1.2.0",
"description": "A simple Express API for a blog's users.",
"main": "server.ts",
"repository": {},
"author": "Raul R. Proenza <raul.r.proenza@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "npm run build && node node_modules/nodemon/bin/nodemon.js ./build/server.js",
"start-dev": "ts-node -L --inspect=0.0.0.0:5858 server.ts",
"dev": "node node_modules/nodemon/bin/nodemon.js -L ./build/server.js"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.15.2",
"helmet": "^3.4.1",
"mongoose": "^4.13.6",
"morgan": "^1.8.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.30",
"@types/body-parser": "^0.0.34",
"@types/cookie-parser": "^1.3.30",
"@types/cors": "^2.8.0",
"@types/express": "^4.0.35",
"@types/helmet": "^0.0.34",
"@types/mongoose": "^4.7.28",
"@types/morgan": "^1.7.32",
"@types/passport": "^0.3.3",
"nodemon": "^1.12.5",
"snyk": "^1.26.1",
"ts-node": "^3.3.0",
"typescript": "^2.6.2"
}
}