-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 966 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
{
"name": "starter-utils",
"type": "module",
"private": true,
"version": "1.0.10",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postinstall": "simple-git-hooks",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write"
},
"lint-staged": {
"*.{md,js,json,css,php}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit \"$1\""
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@prettier/plugin-php": "^0.22.2",
"@prettier/plugin-xml": "^3.4.1",
"conventional-changelog-angular": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1"
}
}