forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "webpack-dev-server",
"version": "1.9.0",
"author": "Tobias Koppers @sokra",
"description": "Serves a webpack app. Updates the browser on changes.",
"peerDependencies": {
"webpack": "^1.3.0"
},
"dependencies": {
"connect-history-api-fallback": "1.1.0",
"express": "^4.3.2",
"http-proxy": "^1.1.4",
"optimist": "~0.6.0",
"serve-index": "^1.2.0",
"socket.io": "^1.3.3",
"socket.io-client": "^1.3.3",
"stream-cache": "~0.0.1",
"strip-ansi": "^2.0.1",
"supports-color": "^1.3.1",
"webpack-dev-middleware": "https://github.com/ssnau/webpack-dev-middleware/tarball/0d2beb349e2b12858e7845bbb4bbac4f821ae835"
},
"devDependencies": {
"css-loader": "~0.7.1",
"less-loader": "~0.7.5",
"style-loader": "~0.7.0",
"file-loader": "~0.7.2",
"jade-loader": "~0.6.1",
"url-loader": "~0.5.5",
"webpack": "^1.3.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/webpack/webpack-dev-server.git"
},
"homepage": "https://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"
}
}