-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 994 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
32
33
34
35
36
37
38
39
40
41
{
"version": "1.4.4",
"workspaces": [
"packages/*"
],
"description": "HexLabs custom configurations for JS/TS projects",
"private": true,
"homepage": "https://github.com/hackgt/config",
"license": "MIT",
"engines": {
"node": ">=16"
},
"prettier": "./packages/prettier-config",
"standard-version": {
"scripts": {
"prerelease": "yarn test"
}
},
"scripts": {
"format": "prettier --write './**/*.{js,ts,json,yml,yaml,css,html}'",
"release": "standard-version",
"test": "yarn workspaces run test",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/node": "^20.4.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"standard-version": "^9.5.0",
"syncpack": "^10.9.3",
"tape": "^5.6.6"
},
"lint-staged": {
"*.{js,ts,tsx,json,yml,yaml,css,html}": [
"prettier --write"
]
}
}