-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1008 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
{
"name": "wunderio-drupal-project",
"version": "1.0.0",
"description": "",
"keywords": [
"Drupal",
"Eslint",
"Stylelint"
],
"author": "Wunder",
"license": "MIT",
"scripts": {
"build": "echo 'No build command specified in package.json'",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --no-error-on-unmatched-pattern './web/themes/custom/' './web/modules/custom/'",
"lint:css": "stylelint --allow-empty-input './web/themes/custom/**/*.{css,scss,sass}' './web/modules/custom/**/*.{css,scss,sass}'"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-yml": "^1.12.2",
"postcss": "^8.4.33",
"prettier": "^2.2.1",
"stylelint": "^15.11.0",
"stylelint-prettier": "^1.2.0"
}
}