28 lines
817 B
JSON
28 lines
817 B
JSON
{
|
|
"scripts": {
|
|
"start": "webpack --watch --config webpack.dev.js",
|
|
"build": "webpack --config webpack.prod.js",
|
|
"get-bundle-size": "webpack --profile --json > stats.json --config webpack.prod.js && webpack-bundle-analyzer stats.json dist/",
|
|
"deploy": "gh-pages -d dist -t true"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-react": "^7.12.13",
|
|
"babel-loader": "^8.2.2",
|
|
"css-loader": "^5.1.3",
|
|
"gh-pages": "^3.1.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-redux": "^7.2.3",
|
|
"redux": "^4.0.5",
|
|
"sass": "^1.32.8",
|
|
"sass-loader": "^11.0.1",
|
|
"stats-js": "^1.0.1",
|
|
"style-loader": "^2.0.0",
|
|
"three": "^0.126.1",
|
|
"webpack": "^5.26.3",
|
|
"webpack-bundle-analyzer": "^4.4.0",
|
|
"webpack-cli": "^4.5.0",
|
|
"webpack-merge": "^5.7.3"
|
|
}
|
|
}
|