-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 855 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
{
"name": "project_template",
"version": "0.1.0",
"description": "Base template for future app templates in the Software Factory",
"main": "index.js",
"repository": "https://github.com/rrglobal/project_template",
"author": "Josh Haines",
"license": "MIT",
"devDependencies": {
"commitizen": "^1.0.3",
"cz-conventional-changelog": "^1.0.1",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"scripts": {
"prepare": "husky install",
"commit": "cz",
"test": ""
},
"dependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^12.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}