-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.62 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
{
"name": "wordpress-plugin-boilerplate",
"version": "0.0.0",
"description": "Plugin description",
"author": "wordpress@geniem.com",
"license": "GPL-3.0-or-later",
"private": true,
"dependencies": {
"idempotent-babel-polyfill": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.14",
"@wordpress/eslint-plugin": "^9.2.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.0.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.4.4",
"node-sass": "^6.0.0",
"normalize-css": "^2.3.1",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.33.2",
"webpack-cli": "^4.9.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint assets/scripts webpack.config.js",
"lint-fix": "eslint assets/scripts webpack.config.js --fix",
"lint-ci": "eslint assets/scripts webpack.config.js --format checkstyle",
"watch": "webpack --progress --watch --mode development",
"dev": "webpack --progress --mode development",
"build": "cross-env NODE_ENV=production webpack --progress --mode production"
}
}