-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "webpackprac",
"version": "1.0.0",
"description": "",
"private": true,
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --config webpack.config.js",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"server": "node server.js",
"buildHttp": "http-server dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^3.9.0",
"webpack-dev-middleware": "^2.0.0",
"webpack-dev-server": "^2.9.0",
"webpack-merge": "^4.1.2",
"workbox-webpack-plugin": "^3.2.0"
},
"dependencies": {
"lodash": "^4.17.10"
}
}