forked from wagtail/bakerydemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 837 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 837 Bytes
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
{
"name": "bakerydemo",
"version": "1.0.0",
"repository": "https://github.com/wagtail/bakerydemo",
"private": true,
"devEngines": {
"packageManager": {
"name": "npm"
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1"
},
"scripts": {
"fix:js": "eslint --ext .js --fix .",
"fix:css": "stylelint --fix **/*.css",
"format": "prettier --write \"**/?(.)*.{css,js,json,yaml,yml}\"",
"lint:js": "eslint --ext .js --report-unused-disable-directives .",
"lint:css": "stylelint **/*.css",
"lint:format": "prettier --check \"**/?(.)*.{css,js,json,yaml,yml}\"",
"lint": "npm run lint:js && npm run lint:css && npm run lint:format"
}
}