-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.28 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.28 KB
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
{
"name": "plugin-boilerplate",
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"internal:pipeline": "webpack --colors",
"dev": "cross-env NODE_ENV=development npm run internal:pipeline --color=always -- --config resources/build/webpack.development.js",
"build": "cross-env NODE_ENV=production npm run internal:pipeline --color=always -- --config resources/build/webpack.production.js",
"lint": "run-s -cl lint:scripts lint:styles",
"lint-fix": "run-s -cl lint-fix:scripts lint-fix:styles",
"lint:scripts": "eslint --color ./resources/scripts/**",
"lint:styles": "stylelint --color ./resources/styles/**",
"lint-fix:scripts": "eslint --color --fix ./resources/scripts/**",
"lint-fix:styles": "stylelint --color --fix ./resources/styles/**",
"i18n": "run-s -cl i18n:textdomain i18n:pot",
"i18n:textdomain": "wpi18n addtextdomain --exclude=dist,node_modules,resources,tests,vendor",
"i18n:pot": "wpi18n makepot --exclude=dist,node_modules,resources,tests,vendor"
},
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"airbnb-browser-shims": "^3.3.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"import-glob": "^1.5.0",
"loader-utils": "^2.0.0",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^5.3.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.48.0",
"webpack-cli": "^4.1.0",
"webpack-manifest-plugin": "^3.1.1",
"webpack-spritesmith": "^1.1.0"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@wordpress/eslint-plugin": "^9.1.0",
"browser-sync": "^2.27.5",
"browser-sync-webpack-plugin": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"node-wp-i18n": "^1.2.6",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.20.1"
}
}