-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "react-donis-docker-starter",
"version": "2.0.0",
"description": "A simple templete start with ReactJs and AdonisJs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-roque/react-donis-docker-starter.git"
},
"keywords": [
"reactjs",
"adonisjs",
"templete",
"starter"
],
"author": "gabriel-roque",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-roque/react-donis-docker-starter/issues"
},
"homepage": "https://github.com/gabriel-roque/react-donis-docker-starter#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}