package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "electronic-map",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "servebig": "node --max-old-space-size=6000 ./node_modules/@vue/cli-service/bin/vue-cli-service.js serve",
  8. "build": "vue-cli-service build",
  9. "test:unit": "vue-cli-service test:unit",
  10. "lint": "vue-cli-service lint",
  11. "fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit"
  12. },
  13. "dependencies": {
  14. "@antv/x6": "^1.24.4",
  15. "@arcgis/core": "^4.19.3",
  16. "@element-plus/icons-vue": "^0.2.4",
  17. "@open-wc/webpack-import-meta-loader": "git+https://github.com/KmjKoishi/webpack-import-meta-loader-fixed.git",
  18. "animate.css": "3.5",
  19. "axios": "^0.21.1",
  20. "cesium": "^1.78.0",
  21. "core-js": "^3.6.5",
  22. "echarts": "^5.1.1",
  23. "echarts-gl": "^2.0.4",
  24. "echarts-stat": "^1.2.0",
  25. "element-plus": "^1.1.0-beta.4",
  26. "file-saver": "^2.0.5",
  27. "font-awesome": "^4.7.0",
  28. "html2canvas": "^1.0.0-rc.7",
  29. "jquery": "^3.6.0",
  30. "jspdf": "^2.3.1",
  31. "jszip": "^3.7.1",
  32. "papaparse": "^5.3.1",
  33. "stompjs": "^2.3.3",
  34. "three": "^0.129.0",
  35. "three-collada-loader": "^0.0.1",
  36. "three-css2drender": "^1.0.0",
  37. "three-fbx-loader": "^1.0.2",
  38. "three-obj-mtl-loader": "^1.0.3",
  39. "vivus": "^0.4.6",
  40. "vue": "^3.0.11",
  41. "vue-axios": "^3.2.4",
  42. "vue-router": "^4.0.0-0",
  43. "vuex": "^4.0.0-0",
  44. "xlsx": "^0.17.0"
  45. },
  46. "devDependencies": {
  47. "@vue/cli-plugin-babel": "~4.5.0",
  48. "@vue/cli-plugin-eslint": "~4.5.0",
  49. "@vue/cli-plugin-router": "~4.5.0",
  50. "@vue/cli-plugin-unit-mocha": "~4.5.0",
  51. "@vue/cli-plugin-vuex": "~4.5.0",
  52. "@vue/cli-service": "~4.5.0",
  53. "@vue/compiler-sfc": "^3.0.0",
  54. "@vue/test-utils": "^2.0.0-0",
  55. "babel-eslint": "^10.1.0",
  56. "chai": "^4.1.2",
  57. "eslint": "^6.7.2",
  58. "eslint-plugin-vue": "^7.0.0",
  59. "less": "^3.0.4",
  60. "less-loader": "^5.0.0",
  61. "sass": "^1.27.0",
  62. "sass-loader": "^10.0.4",
  63. "script-loader": "^0.7.2",
  64. "style-resources-loader": "^1.4.1",
  65. "svg-sprite-loader": "^6.0.7",
  66. "svgo-loader": "^3.0.0"
  67. },
  68. "eslintConfig": {
  69. "root": true,
  70. "env": {
  71. "node": true
  72. },
  73. "extends": [
  74. "plugin:vue/vue3-essential",
  75. "eslint:recommended"
  76. ],
  77. "parserOptions": {
  78. "parser": "babel-eslint"
  79. },
  80. "rules": {
  81. "no-debugger": "off",
  82. "no-console": "off",
  83. "no-unused-vars": "off"
  84. },
  85. "overrides": [
  86. {
  87. "files": [
  88. "**/__tests__/*.{j,t}s?(x)",
  89. "**/tests/unit/**/*.spec.{j,t}s?(x)"
  90. ],
  91. "env": {
  92. "mocha": true
  93. }
  94. }
  95. ]
  96. },
  97. "browserslist": [
  98. "> 1%",
  99. "last 2 versions",
  100. "not dead"
  101. ]
  102. }