mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-29 22:51:54 +08:00
29 lines
780 B
JSON
29 lines
780 B
JSON
{
|
|
"name": "tree-shaking-webpack",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
|
|
"build": "webpack --config ./webpack.config.js",
|
|
"analyze": "source-map-explorer 'dist/*.js'"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/preset-env": "^7.9.6",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"babel-loader": "^8.1.0",
|
|
"babel-plugin-import": "^1.13.0",
|
|
"html-webpack-plugin": "^4.3.0",
|
|
"source-map-explorer": "^2.4.2",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"dependencies": {
|
|
"@geist-ui/react": "latest",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1"
|
|
}
|
|
}
|