-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
104 lines (104 loc) · 3.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "webpack-dll-demo",
"version": "2.2.0",
"description": "webpack build with dll plugin, react, react router and redux",
"scripts": {
"start": "NODE_ENV=development node ./bin/dev-server.js",
"lint": "eslint src",
"dll": "NODE_ENV=production webpack --config webpack.config.dll.js --progress",
"tree": "rimraf tree-shaking/dist && NODE_ENV=production webpack --progress --colors --config ./tree-shaking/webpack.config.tree.js",
"build": "rimraf dist && NODE_ENV=production webpack --progress --colors -p --config webpack.config.prod.js",
"build:opt": "rimraf dist && NODE_ENV=production webpack --progress --colors -p --config webpack.config.opt.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/taikongfeizhu/webpack-dll-demo.git"
},
"author": "Abcat<[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-eslint": "^8.0.3",
"babel-plugin-import": "^1.6.3",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"bundle-loader": "^0.5.5",
"compression": "^1.6.2",
"css-loader": "^0.22.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "latest",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-markdown": "~1.0.0-beta.4",
"eslint-plugin-react": "7.5.1",
"eslint-tinker": "^0.4.0",
"expect": "^1.12.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.8.4",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"image-webpack-loader": "^3.1.0",
"jest": "^19.0.2",
"jest-runtime": "^19.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.2",
"postcss-loader": "^0.7.0",
"react-error-overlay": "^1.0.9",
"react-test-renderer": "^15.4.2",
"react-transition-group": "^1.1.1",
"redux-devtools-extension": "^2.13.0",
"redux-logger": "^2.8.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"style-loader": "^0.13.2",
"url-loader": "^0.5.6",
"webpack": "^3.10.0",
"add-asset-html-webpack-plugin": "^2.1.2",
"webpack-bundle-analyzer": "^2.9.1",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"antd": "^3.1.0",
"axios": "^0.16.2",
"core-js": "^2.5.1",
"create-react-class": "^15.6.2",
"debug": "^3.1.0",
"fastclick": "^1.0.6",
"fs-extra": "^5.0.0",
"happypack": "^4.0.0",
"history": "^4.6.1",
"immutable": "^3.8.2",
"jroll": "^2.5.0",
"lazy-route": "^1.0.7",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-saga": "^0.16.0"
}
}