forked from morsdyce/webpack-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "webpack-workshop",
"version": "1.0.0",
"description": "Coming Soon",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"debug": "webpack-dev-server --env.debug=true",
"validate": "node scripts/validate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morsdyce/webpack-workshop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/morsdyce/webpack-workshop/issues"
},
"homepage": "https://github.com/morsdyce/webpack-workshop#readme",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.3",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-env": "1.6.1",
"copy-webpack-plugin": "4.5.0",
"css-loader": "0.28.10",
"file-loader": "0.11.2",
"html-webpack-plugin": "3.0.4",
"http-server": "0.11.1",
"style-loader": "0.20.2",
"url-loader": "1.0.1",
"webpack": "3.11.0",
"webpack-dev-server": "2.11.2"
},
"engines": {
"node": ">=6.11.5"
}
}