-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 986 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
31
{
"name": "@somehow-digital/renovate-config",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:prettier": "prettier --check '**/*.{md,json,yml,yaml,js}'",
"lint:cspell": "cspell --no-progress --no-summary --dot --no-must-find-files '**/*.*'",
"lint:renovate": "renovate-config-validator default.json",
"fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'",
"fix:prettier": "prettier --write '**/*.{md,json,yml,yaml}'"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/cspell-dictionary": "^2.0.0",
"@somehow-digital/prettier-config": "^2.0.0",
"concurrently": "^9.0.0",
"cspell": "^8.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.4.2",
"renovate": "^39.0.0"
}
}