package.json 2.7 KB

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