2020-11-12 12:44:48 +00:00
|
|
|
{
|
|
|
|
"dependencies": {
|
2020-11-17 11:52:09 +00:00
|
|
|
"axios": "^0.21.0",
|
|
|
|
"three": "^0.122.0"
|
2020-11-12 12:44:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.11.1",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
2020-11-17 11:52:09 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
2020-11-12 12:44:48 +00:00
|
|
|
"@babel/preset-env": "^7.11.0",
|
|
|
|
"babel-loader": "^8.1.0",
|
|
|
|
"concurrently": "^5.2.0",
|
2020-11-17 11:52:09 +00:00
|
|
|
"css-loader": "^5.0.1",
|
2020-11-12 12:44:48 +00:00
|
|
|
"dotenv": "^8.2.0",
|
|
|
|
"file-loader": "^6.0.0",
|
|
|
|
"img-loader": "^3.0.1",
|
2020-11-17 11:52:09 +00:00
|
|
|
"less-loader": "^7.1.0",
|
|
|
|
"mini-css-extract-plugin": "^1.3.1",
|
|
|
|
"style-loader": "^2.0.0",
|
|
|
|
"terser-webpack-plugin": "^5.0.3",
|
2020-11-12 12:44:48 +00:00
|
|
|
"url-loader": "^4.1.0",
|
2020-11-17 11:52:09 +00:00
|
|
|
"webpack": "^5.4.0",
|
|
|
|
"webpack-cli": "^4.2.0",
|
|
|
|
"webpack-merge": "^5.4.0"
|
2020-11-12 12:44:48 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
|
|
|
|
"serve": "http-server",
|
2020-11-17 11:52:09 +00:00
|
|
|
"prod": "rm -rf dist && webpack --progress --mode=production",
|
|
|
|
"watch": "concurrently \"npm run serve\" \"npx webpack --progress --mode=development --watch\" "
|
2020-11-12 12:44:48 +00:00
|
|
|
}
|
|
|
|
}
|