-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 983 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 983 Bytes
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
{
"name": "futaba-wp-theme-with-webpack",
"scripts": {
"clean": "rimraf ./dist",
"dev": "yarn run clean && webpack --mode=development --watch",
"test": "yarn run clean && webpack --mode=development",
"build": "yarn && yarn run clean && webpack --mode=production"
},
"browserslist": [
"> 3% in JP",
"ie 11",
"android 4.4",
"last 1 versions"
],
"dependencies": {
"ress": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^3.4.2",
"mini-css-extract-plugin": "^0.9.0",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-loader": "^3.0.0",
"postcss-sort-media-queries": "^1.1.20",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"sass-loader": "^8.0.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-remove-empty-scripts": "^0.7.1"
}
}