-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.13 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-chunk-progress",
"version": "0.0.2",
"description": "Provide chunk loading progress for your webpack application",
"main": "lib/index.js",
"repository": "https://github.com/ShenJack/webpack-chunk-progress",
"homepage": "https://github.com/ShenJack/webpack-chunk-progress",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-example": "rimraf ./example/dist && cross-env NODE_ENV=production webpack --config ./example/webpack.config.js --mode production",
"dev-example": "webpack-dev-server --config ./example/webpack.config.js"
},
"author": "shenjack",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^3.0.1",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"underscore": "^1.10.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {}
}