-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "@nestjsx/package-starter",
"description": "Package starter for Nestjsx packages",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run build:clean",
"build:clean": "npx del './dist/*{.ts,.js,.map}'",
"build": "npx tsc -b",
"commit": "npx git-cz",
"test": "echo \"OK\""
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"yarn commit\" instead"
}
},
"dependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.0.12",
"commitizen": "3.1.1",
"coveralls": "3.0.4",
"cz-conventional-changelog": "2.1.0",
"del-cli": "2.0.0",
"husky": "3.0.0",
"jest": "24.8.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.2",
"validate-commit-msg": "2.14.0"
},
"author": {
"name": "Michael Yali",
"email": "[email protected]"
}
}