-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 866 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 866 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
{
"name": "x2od-github",
"private": true,
"version": "1.0.0",
"description": "Template files for x2od organization repos",
"scripts": {
"precommit": "lint-staged",
"prepare": "husky",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prune": "git branch | grep -v \"main\" | xargs git branch -D",
"renovate:validate": "npm install -D renovate && npx renovate-config-validator && npm uninstall renovate"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"@x2od/prettier-config": "^0.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"renovate": "^43.139.6"
},
"lint-staged": {
"**/*.*": [
"prettier --write"
]
}
}