-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 932 Bytes
/
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
{
"name": "ts-express-rest-api",
"version": "1.0.0",
"main": "server.js",
"author": "Milan Stojimirov",
"license": "MIT",
"scripts": {
"start": "DEBUG=api node_modules/.bin/nodemon ./server.js",
"docs": "node_modules/.bin/apidoc -i src/ -o docs/"
},
"dependencies": {
"@types/body-parser": "^1.16.3",
"@types/compression": "^0.0.33",
"@types/cors": "^2.8.1",
"@types/debug": "^0.0.29",
"@types/express": "^4.0.35",
"@types/jsonwebtoken": "^7.2.0",
"@types/mongoose": "^4.7.11",
"@types/morgan": "^1.7.32",
"@types/sha1": "^1.1.0",
"apidoc": "^0.17.5",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cors": "^2.8.3",
"debug": "^2.6.4",
"express": "^4.15.2",
"jsonwebtoken": "^7.3.0",
"mongoose": "^4.9.5",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"sha1": "^1.1.1",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
}
}