2020-11-12 12:44:48 +00:00
|
|
|
{
|
|
|
|
"dependencies": {
|
2020-11-19 15:39:55 +00:00
|
|
|
"proj4": "^2.6.3",
|
2020-11-26 08:46:10 +00:00
|
|
|
"three": "^0.123.0"
|
2020-11-12 12:44:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-11-26 08:46:10 +00:00
|
|
|
"@babel/core": "^7.12.9",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
2020-11-17 11:52:09 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
2020-11-26 08:46:10 +00:00
|
|
|
"@babel/preset-env": "^7.12.7",
|
|
|
|
"babel-loader": "^8.2.1",
|
|
|
|
"concurrently": "^5.3.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",
|
2020-11-26 08:46:10 +00:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"img-loader": "^3.0.2",
|
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-26 08:46:10 +00:00
|
|
|
"url-loader": "^4.1.1",
|
|
|
|
"webpack": "^5.7.0",
|
2020-11-17 11:52:09 +00:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|