forked from wagtail/sphinx-wagtail-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "sphinx-wagtail-theme",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@percy/cli": "^1.1.4",
"@wagtail/stylelint-config-wagtail": "^0.5.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.3.9",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"stylelint": "^14.8.2",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@wagtail/eslint-config-wagtail": "^0.4.0",
"autocompleter": "^6.0.3",
"bootstrap": "^4.4.1",
"eslint": "^8.16.0",
"jquery": "^3.5.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",
"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": ">=16"
}
}