-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
52
53
54
{
"name": "webpack-config-demo",
"version": "0.0.2",
"description": "A simple webpack example",
"main": "bundle.js",
"scripts": {
"start": "cd ./start/build;node devserver-watcher.js",
"build": "rm -rf ./start/dist/*;cd ./start/build;node build-webpack.js;"
},
"keywords": [
"webpack",
"demo",
"dll",
"happypack"
],
"author": "Erik Peng",
"license": "MIT",
"devDependencies": {
"async": "^2.2.0",
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.1",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"birdv3": "^0.3.27",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.21.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "^0.8.5",
"happypack": "^3.0.3",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"open": "0.0.5",
"ora": "^1.2.0",
"parallel-webpack": "^1.6.1",
"progress-bar-webpack-plugin": "^1.9.3",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "1.14.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-uglify-parallel": "^0.1.3",
"worker-farm": "^1.3.1"
},
"dependencies": {
"cross-env": "^3.1.4",
"object-assign": "^4.1.1"
}
}