-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.21 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.21 KB
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
{
"name": "website",
"description": "Drupal 11 implementation of DrevOps Website for DrevOps",
"license": "proprietary",
"private": true,
"engines": {
"yarn": ">= 1.22.22",
"node": ">= 20.20.0"
},
"scripts": {
"lint-js": "eslint web/modules/custom --ext .js --max-warnings=0 --no-error-on-unmatched-pattern",
"lint-css": "stylelint --allow-empty-input \"web/modules/custom/**/*.css\"",
"lint": "yarn run lint-js && yarn run lint-css",
"lint-fix-js": "eslint web/modules/custom --ext .js --no-error-on-unmatched-pattern --fix",
"lint-fix-css": "stylelint --allow-empty-input \"web/modules/custom/**/*.css\" --fix",
"lint-fix": "yarn run lint-fix-js && yarn run lint-fix-css"
},
"devDependencies": {
"@homer0/prettier-plugin-jsdoc": "^11.0.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-no-jquery": "^3.1.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-yml": "^1.19.0",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4"
}
}