-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1009 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
37
38
39
40
41
42
43
44
{
"private": true,
"name": "4k-demo-oven",
"version": "1.4.0",
"description": "Demo framework.",
"dependencies": {
"@types/fs-extra": "^8.0.0",
"@types/gulp": "^4.0.6",
"@types/nconf": "^0.10.0",
"@types/node-notifier": "^5.4.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"nconf": "^0.10.0",
"nconf-yaml": "^1.0.2",
"node-notifier": "^5.4.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"yargs": "^13.3.0"
},
"devDependencies": {
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
}
}