-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 967 Bytes
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
{
"name": "ts-api",
"version": "1.0.0",
"description": "",
"main": "./build/index.js",
"scripts": {
"server": "tsc && nodemon ./build/index.js",
"start": "node ./build/index.js",
"ts:watch": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"boom": "^7.1.1",
"class-validator": "^0.8.1",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"faker": "^4.1.0",
"helmet": "^3.11.0",
"inversify": "^4.10.0",
"joi": "^13.1.2",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.5",
"method-override": "^2.3.10",
"mongojs": "^2.5.0",
"mongoose": "^5.0.6",
"morgan": "^1.9.0",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/mongoose": "^5.0.2",
"@types/node": "^9.4.6",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}