-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
69 lines (69 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "wagtail.org",
"version": "1.0.0",
"private": true,
"description": "This is the source code to [Wagtail's website](https://wagtail.org)",
"scripts": {
"//[ Linting & formatting ]//": "",
"lint:css": "stylelint --report-needless-disables './wagtailio/static/sass'",
"lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives .",
"lint:format": "prettier --check '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml}'",
"lint": "npm run lint:format && npm run lint:js && npm run lint:css",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml}'",
"test": "echo \"Error: no test specified\" && exit 1",
"//[ Build tasks ]//": "",
"build": "webpack --mode development --progress",
"build:prod": "webpack --mode production",
"start": "webpack --mode development --progress --watch",
"start:reload": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagtail/wagtail.org.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wagtail/wagtail.org/issues"
},
"homepage": "https://github.com/wagtail/wagtail.org#readme",
"browserslist": [
"Firefox ESR",
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
"last 1 Firefox version",
"last 2 iOS versions",
"last 3 Safari versions",
"not safari 13",
"not ie 11"
],
"devDependencies": {
"@wagtail/eslint-config-wagtail": "^0.4.0",
"@wagtail/stylelint-config-wagtail": "^0.5.0",
"autoprefixer": "^10.4.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"eslint": "^8.20.0",
"eslint-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss-loader": "^7.0.1",
"prettier": "^3.3.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-webpack-plugin": "^3.3.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^5.1.2",
"webpack-dev-server": "^5.0.2",
"webpack-manifest-plugin": "^5.0.0"
},
"dependencies": {
"focus-trap": "^7.0.0",
"micromodal": "^0.4.10"
}
}