-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "skela",
"version": "1.0.0",
"description": "An Upstatement-flavored starter theme for WordPress",
"author": "Upstatement",
"repository": "https://github.com/Upstatement/skela-wp-theme",
"license": "ISC",
"testing": {
"urls": {
"local": "http://skela.ups.dock",
"staging": "",
"production": ""
},
"accessibility": {
"compliance": "Section508"
}
},
"bundlesize": [
{
"path": "./dist/app.js",
"maxSize": "10 kB"
},
{
"path": "./dist/vendor.js",
"maxSize": "110 kB"
}
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --mode production",
"start": "NODE_ENV=development webpack --hide-modules --watch --mode development",
"start:ups-dock": "NODE_ENV=development webpack --hide-modules --watch --mode development --env.platform=ups-dock",
"lint:scripts": "eslint static/js/**/*.js --cache",
"lint:php": "./vendor/bin/phpcs --standard=phpcs.xml.dist --error-severity=1 --warning-severity=8 -p",
"fix:php": "./vendor/bin/phpcbf",
"phpstan": "./vendor/bin/phpstan analyze --memory-limit 512M",
"test:bundlesize": "bundlesize",
"test:a11y": "node tests/pa11y.js",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"lazysizes": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/plugin-transform-react-jsx": "^7.12.11",
"@babel/preset-env": "^7.12.11",
"@upstatement/eslint-config": "^1.0.1",
"@upstatement/prettier-config": "^1.0.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.26.13",
"browser-sync-webpack-plugin": "^2.3.0",
"bundlesize": "^0.17.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"file-loader": "^5.0.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^0.8.0",
"pa11y": "^5.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.3.0",
"sass": "^1.30.0",
"sass-loader": "7.*",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.3",
"webpack-modernizr-loader": "^5.0.0"
}
}