forked from andrepapaz-zz/nodeApiTypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
37
38
{
"name": "mmartan",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "tsc",
"start": "node ./build/index.js",
"dev": "concurrently --kill-others \"tsc -w\" \"nodemon ./build/index.js\"",
"predebug": "tsc",
"debug": "node --nolazy --inspect-brk=9229 ./build/index.js "
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"multer": "^1.4.0",
"rotating-file-stream": "^1.3.9",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/helmet": "0.0.42",
"@types/jsonwebtoken": "^7.2.8",
"@types/mongoose": "^5.2.17",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"concurrently": "^4.0.1"
}
}