forked from wesbos/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 715 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 715 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
{
"name": "webpack-app",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server",
"prebuild": "rimraf dist",
"build": "webpack -p"
},
"keywords": [],
"author": "",
"license": "",
"devDependencies": {
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.16.0",
"css-loader": "0.25.0",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.24.0",
"open-browser-webpack-plugin": "0.0.2",
"rimraf": "2.5.4",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-dashboard": "0.2.0",
"webpack-dev-server": "1.16.2"
}
}