package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "intelligent-early-warning",
  3. "author": "GYEE_ZM",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "dev": "vite",
  7. "build": "vite build",
  8. "serve": "vite preview"
  9. },
  10. "dependencies": {
  11. "@stomp/stompjs": "^6.1.2",
  12. "@vue/shared": "^3.2.36",
  13. "animate.css": "^4.1.1",
  14. "axios": "^0.21.1",
  15. "dayjs": "^1.10.7",
  16. "default-passive-events": "^2.0.0",
  17. "echarts": "^5.2.2",
  18. "element-plus": "^1.0.2-beta.71",
  19. "file-saver": "^2.0.5",
  20. "html2canvas": "^1.0.0-rc.7",
  21. "jsencrypt": "^3.2.1",
  22. "json-bigint": "^1.0.0",
  23. "jspdf": "^2.3.1",
  24. "moment": "^2.29.1",
  25. "q": "^1.5.1",
  26. "screenfull": "^6.0.0",
  27. "stompjs": "^2.3.3",
  28. "vue": "^3.0.5",
  29. "vue-cropperjs": "^5.0.0",
  30. "vue-loader-v16": "^16.0.0-beta.5.4",
  31. "vue-router": "^4.0.8",
  32. "vue3-simple-html2pdf": "^0.0.6",
  33. "vuex": "~4.0.0",
  34. "xlsx": "^0.17.4"
  35. },
  36. "devDependencies": {
  37. "@typescript-eslint/eslint-plugin": "^5.20.0",
  38. "@typescript-eslint/parser": "^5.20.0",
  39. "@vitejs/plugin-vue": "^1.2.2",
  40. "@vue/compiler-sfc": "^3.0.5",
  41. "sass": "^1.34.1",
  42. "sass-loader": "^12.0.0",
  43. "script-loader": "^0.7.2",
  44. "typescript": "^4.6.3",
  45. "vite": "^2.3.4",
  46. "vite-plugin-style-import": "^0.10.1",
  47. "vue-tsc": "^0.2.2",
  48. "wait-on": "^6.0.0"
  49. },
  50. "build": {
  51. "appId": "com.my-website.my-app",
  52. "productName": "intelligent-early-warning",
  53. "copyright": "Copyright © 2021 ${author}",
  54. "mac": {
  55. "category": "public.app-category.utilities"
  56. },
  57. "nsis": {
  58. "oneClick": false,
  59. "allowToChangeInstallationDirectory": true
  60. },
  61. "files": [
  62. "dist/**/*",
  63. "electron/**/*"
  64. ],
  65. "directories": {
  66. "buildResources": "assets",
  67. "output": "dist_electron"
  68. }
  69. }
  70. }