forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "webpack-dev-server",
"version": "1.14.1",
"author": "Tobias Koppers @sokra",
"description": "Serves a webpack app. Updates the browser on changes.",
"peerDependencies": {
"webpack": ">=1.3.0 <3"
},
"dependencies": {
"compression": "^1.5.2",
"express": "^4.13.3",
"express-history-api-fallback": "^2.0.0",
"http-proxy": "^1.11.2",
"optimist": "~0.6.0",
"serve-index": "^1.7.2",
"sockjs": "^0.3.15",
"sockjs-client": "^1.0.3",
"stream-cache": "~0.0.1",
"strip-ansi": "^3.0.0",
"supports-color": "^3.1.1",
"webpack-dev-middleware": "^1.4.0"
},
"devDependencies": {
"css-loader": "~0.23.0",
"file-loader": "~0.8.4",
"jade": "^1.11.0",
"jade-loader": "~0.8.0",
"less": "^2.5.1",
"less-loader": "~2.2.0",
"style-loader": "~0.13.0",
"url-loader": "~0.5.6",
"webpack": "^1.12.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/webpack/webpack-dev-server.git"
},
"homepage": "http://github.com/webpack/webpack-dev-server",
"main": "lib/Server.js",
"bin": "bin/webpack-dev-server.js",
"files": [
"lib/",
"bin",
"client/",
"ssl/"
],
"scripts": {
"prepublish": "webpack ./client/live.js client/live.bundle.js --colors --config client/webpack.config.js -p && webpack ./client/index.js client/index.bundle.js --colors --config client/webpack.config.js -p"
}
}