forked from RyotaHirano/webpack4-try
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 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
{
"name": "webpack4-try",
"private": true,
"scripts": {
"start": "webpack-dev-server --progress --open --config webpack.config/webpack.development.config.babel.js",
"clean": "rm -rf ./build",
"build": "npm run clean && webpack --progress --hide-modules --config webpack.config/webpack.production.config.babel.js"
},
"engines": {
"node": "^8.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RyotaHirano/webpack4-try.git"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.18.0",
"css-loader": "^0.28.4",
"css-mqpacker": "^5.0.1",
"eslint": "^4.1.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^4.1.1",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"file-loader": "^1.1.9",
"html-loader": "^0.5.5",
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"image-webpack-loader": "^4.1.0",
"node-sass": "^4.5.3",
"postcss-flexbugs-fixes": "^2.1.0",
"postcss-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"tapable": "1.0.0-beta.5",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.4",
"webpack-dev-server": "^3.0.0",
"webpack-merge": "^4.1.1"
}
}