-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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",
"version": "1.0.0",
"description": "this is webpack practise",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/szg2008/webpack.git"
},
"scripts": {
"start": "webpack-dev-server --no-inline --content-base build/",
"build": "webpack --progress --profile --colors --config webpack.production.config.js"
},
"author": "suzg",
"license": "ISC",
"bugs": {
"url": "https://github.com/szg2008/webpack/issues"
},
"homepage": "https://github.com/szg2008/webpack#readme",
"devDependencies": {
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"browserslist": "^1.7.2",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"imports-loader": "^0.7.0",
"jquery": "^3.1.1",
"jshint-loader": "^0.8.3",
"json-loader": "^0.5.4",
"moment": "^2.17.1",
"postcss": "^5.2.12",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^2.3.0"
}
}