forked from wagtail/sphinx-wagtail-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.59 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
46
47
48
{
"name": "sphinx-wagtail-theme",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@percy/cli": "^1.26.2",
"@wagtail/eslint-config-wagtail": "^0.4.0",
"@wagtail/stylelint-config-wagtail": "^0.8.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.7",
"eslint": "^8.56.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"sass-loader": "^13.3.2",
"stylelint": "^15.11.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"autocompleter": "^6.0.3",
"bootstrap": "^4.4.1"
},
"scripts": {
"start": "npm run watch",
"watch": "webpack --config=webpack.config.js --mode=development --watch",
"frontend": "webpack --config=webpack.config.js --mode=development",
"build": "webpack --config=webpack.config.js --mode=production",
"format": "npm run format:fix:css && npm run format:fix:js && npm run format:prettier",
"format:fix:css": "stylelint **/*.scss --fix",
"format:fix:js": "eslint --ext .js,.ts,.tsx . --fix",
"format:prettier": "prettier --write '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:format": "prettier --check '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:css": "stylelint **/*.scss",
"lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives .",
"lint": "npm run lint:js && npm run lint:css"
},
"engines": {
"node": ">=20"
},
"prettier": {
"singleQuote": true,
"quoteProps": "consistent"
}
}