-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
45
46
47
48
49
50
{
"name": "survey-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ts-node src/api/server.ts",
"lint_fix": "npm run lint -- --fix",
"lint": "tslint -c tslint.json -p tsconfig.json $CIRCLE_CI_FORMAT",
"build": "tsc",
"prebuild": "npm run lint",
"test": "jest",
"pretest": "npm run lint"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@types/body-parser": "^1.17.0",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/morgan": "^1.7.35",
"@types/node": "^10.14.10",
"@types/supertest": "^2.0.7",
"husky": "^2.5.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.5.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"morgan": "^1.9.1",
"winston": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint_fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}