-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1011 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
{
"scripts": {
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --format=pretty ./**/*.js --max-warnings=0",
"lint:css": "stylelint ./**/*.css --max-warnings=0",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/github": "^9.2.6",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^9.0.6",
"lint-staged": "^14.0.0",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-standard": "^34.0.0"
},
"lint-staged": {
"*.js": "eslint --max-warnings=0",
"*.css": "stylelint --max-warnings=0"
},
"volta": {
"node": "20.11.0"
}
}