-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 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
{
"name": "webpack-splitchunks",
"version": "1.0.0",
"description": "Introduce how to use webpack.splitChunks",
"main": "./src/index.js",
"scripts": {
"default": "webpack --config ./config/webpack.config.common.js",
"chunks": "webpack --config ./config/webpack.config.chunks.js",
"entry2": "webpack --config ./config/webpack.config.entry2.js",
"maxInitialRequests": "webpack --config ./config/webpack.config.maxInitialRequests.js",
"maxAsyncRequests": "webpack --config ./config/webpack.config.maxAsyncRequests.js"
},
"author": "kwzm",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"lodash": "^4.17.11",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}