-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 999 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
36
{
"name": "express-starter",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.0",
"@types/lodash": "^4.14.102",
"@types/node": "^8.0.29",
"husky": "^0.15.0-rc.8",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"typescript-formatter": "^7.0.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"class-validator": "^0.8.1",
"express": "^4.16.2",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"pg": "^7.3.0",
"pug": "^2.0.0-rc.4",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.6",
"typeorm": "0.1.11"
},
"scripts": {
"start": "ts-node src/index.ts",
"serve": "npx nodemon --exec 'npx ts-node --debug=9231 --inspect src/index.ts' --ext 'ts' --watch 'src'"
},
"husky": {
"hooks": {
"pre-commit": "npx tsfmt -r"
}
}
}