-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 KB
/
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
42
43
44
45
{
"name": "@allthings/colors",
"author": "Allthings",
"license": "MIT",
"version": "5.0.0",
"files": [
"dist"
],
"main": "dist/index.js",
"devDependencies": {
"@allthings/eslint-config": "2.1.1",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"typescript": "5.7.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"lint": "eslint --cache --ext .ts,.tsx src",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"postversion": "git push --tags origin HEAD",
"prepare": "husky",
"prepublishOnly": "yarn lint && yarn build",
"upgrade-dependencies": "yarn upgrade-interactive --latest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{gql,graphql,js,jsx,ts,tsx,md}": [
"yarn prettier"
]
}
}