-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 913 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 913 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
{
"name": "poco",
"version": "0.0.3",
"scripts": {
"prepare": "echo 'stop' && husky install",
"hook": "pnpm exec husky add .husky/commit-msg 'pnpm exec commitlint --edit $1'",
"changelog": "pnpm exec conventional-changelog -p angular -i CHANGELOG.md -s",
"cz": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/cz-commitlint": "^17.1.2",
"@commitlint/format": "^17.0.0",
"@commitlint/prompt-cli": "^17.1.2",
"@commitlint/types": "^17.0.0",
"@types/node": "^18.7.23",
"commitizen": "^4.2.5",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"inquirer": "8",
"typescript": "^4.6.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}