-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "webpack-init",
"version": "1.0.0",
"description": "proyect's shell",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"dev": "npm run webpack -- --mode development --watch",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.config.js",
"start": "webpack-dev-server --open"
},
"author": "Paco",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"babel-minify": "^0.5.1",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-preset-minify": "^0.5.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.1",
"file-loader": "^6.0.0",
"html-loader": "^1.2.1",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"source-map-loader": "^1.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}