three.cad/package.json

31 lines
979 B
JSON
Raw Normal View History

2021-03-20 19:08:15 +00:00
{
"scripts": {
2021-03-26 19:18:11 +00:00
"start": "webpack serve --config webpack.dev.js",
2021-03-20 19:08:15 +00:00
"build": "webpack --config webpack.prod.js",
2021-03-23 03:55:44 +00:00
"get-bundle-size": "webpack --profile --json > stats.json --config webpack.prod.js && webpack-bundle-analyzer stats.json dist/",
2021-03-28 12:00:31 +00:00
"deploy": "webpack --config webpack.prod.js && gh-pages -d dist -t true -m"
2021-03-20 19:08:15 +00:00
},
"devDependencies": {
2021-03-29 10:27:34 +00:00
"@babel/plugin-proposal-class-properties": "^7.13.0",
2021-03-26 09:25:28 +00:00
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
2021-03-20 19:08:15 +00:00
"css-loader": "^5.1.3",
2021-03-23 03:55:44 +00:00
"gh-pages": "^3.1.0",
2021-03-26 09:25:28 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
2021-03-20 19:08:15 +00:00
"redux": "^4.0.5",
2021-03-28 12:00:31 +00:00
"redux-logger": "^3.0.6",
2021-03-20 19:08:15 +00:00
"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",
2021-03-26 19:18:11 +00:00
"webpack-dev-server": "^3.11.2",
2021-03-20 19:08:15 +00:00
"webpack-merge": "^5.7.3"
}
}