three.cad/package.json

23 lines
667 B
JSON
Raw Normal View History

2021-03-20 19:08:15 +00:00
{
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"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/",
"deploy": "gh-pages -d dist -t true"
2021-03-20 19:08:15 +00:00
},
"devDependencies": {
"css-loader": "^5.1.3",
2021-03-23 03:55:44 +00:00
"gh-pages": "^3.1.0",
2021-03-20 19:08:15 +00:00
"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"
}
}