package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "name": "sagoo-admin-ui",
  3. "version": "v2.1.1",
  4. "description": "vue3 vite next admin template",
  5. "author": "lyt_20201208",
  6. "license": "MIT",
  7. "scripts": {
  8. "dev": "npm run plugin:check && npm run writeEnv:dev && vite --force",
  9. "plugin:check": "ls ./public/plugin/topo && npm run plugin:has || npm run plugin:not",
  10. "plugin:has": "echo '\\033[31m 插件更新中,更新后自动运行 \\033[0m' && npm run plugin:pull",
  11. "plugin:not": "echo '\\033[31m 插件不存在,需要拉取 拉取后会自动运行 \\033[0m' && npm run plugin:clone",
  12. "plugin:clone": "git clone --depth 1 http://git.mydig.net/Sagoo-Cloud/sagoo-admin-ui-plugin.git ./public/plugin/",
  13. "plugin:pull": "cd ./public/plugin/ && git pull || npm run plugin:clone && echo '\\033[31m 插件更新完毕 \\033[0m'",
  14. "plugin:reload": "rm -rf ./public/plugin/ && npm run plugin:pull",
  15. "build": "npm run plugin:check && cross-env NODE_ENV=production node ./writeEnv.mjs && vite build && npm run getVersion",
  16. "build:dev": "npm run plugin:check && npm run writeEnv:dev && vite build --mode development && npm run getVersion",
  17. "build:golocal": "npm run plugin:check && cross-env NODE_ENV=golocal node ./writeEnv.mjs && vite build --mode golocal && npm run getVersion",
  18. "build:open": "npm run plugin:check && cross-env NODE_ENV=open node ./writeEnv.mjs && vite build --mode open && npm run getVersion",
  19. "writeEnv:dev": "cross-env NODE_ENV=development node ./writeEnv.mjs",
  20. "getVersion": "node ./getVersion.mjs",
  21. "updateVersion:small": "node ./updateVersion.mjs --patch",
  22. "updateVersion:mid": "node ./updateVersion.mjs --minor",
  23. "updateVersion:big": "node ./updateVersion.mjs --major"
  24. },
  25. "dependencies": {
  26. "@antv/g2plot": "2.4.20",
  27. "@element-plus/icons-vue": "2.0.9",
  28. "@form-create/component-wangeditor": "^2.6.2",
  29. "@form-create/element-ui": "^3",
  30. "@guolao/vue-monaco-editor": "^1.5.5",
  31. "@logicflow/core": "^2.0.16",
  32. "@logicflow/extension": "^2.0.21",
  33. "axios": "0.26.0",
  34. "clipboard": "2.0.11",
  35. "codemirror": "5.65.16",
  36. "codemirror-editor-vue3": "2.5.8",
  37. "countup.js": "2.1.0",
  38. "cropperjs": "1.5.12",
  39. "dayjs": "1.11.8",
  40. "downloadjs": "1.4.7",
  41. "echarts": "5.5.0",
  42. "echarts-gl": "2.0.9",
  43. "echarts-wordcloud": "2.0.0",
  44. "element-plus": "2.2.28",
  45. "event-source-polyfill": "1.0.31",
  46. "html2canvas": "^1.4.1",
  47. "js-cookie": "3.0.5",
  48. "jsplumb": "2.15.6",
  49. "jsrsasign": "10.8.6",
  50. "loadsh": "0.0.4",
  51. "mitt": "3.0.0",
  52. "monaco-editor": "^0.52.2",
  53. "nprogress": "0.2.0",
  54. "pako": "1.0.11",
  55. "print-js": "1.6.0",
  56. "province-city-china": "8.5.7",
  57. "qrcodejs2-fixes": "0.0.2",
  58. "sass": "^1.78.0",
  59. "sass-loader": "^16.0.1",
  60. "screenfull": "6.0.1",
  61. "semver": "7.6.2",
  62. "sortablejs": "1.14.0",
  63. "splitpanes": "3.1.1",
  64. "sql-formatter": "^15.6.1",
  65. "uuid": "9.0.0",
  66. "vform3-builds": "3.0.8",
  67. "vue": "3.2.37",
  68. "vue-clipboard3": "1.0.1",
  69. "vue-data-ui": "^2.4.17",
  70. "vue-grid-layout": "3.0.0-beta1",
  71. "vue-i18n": "9.1.10",
  72. "vue-router": "4.0.13",
  73. "vue3-clipboard": "1.0.0",
  74. "vue3-cron": "1.1.8",
  75. "vue3-json-viewer": "2.2.2",
  76. "vuex": "4.0.2",
  77. "wangeditor": "4.7.12",
  78. "xlsx-with-styles": "0.17.2"
  79. },
  80. "devDependencies": {
  81. "@types/js-cookie": "3.0.6",
  82. "@types/node": "17.0.21",
  83. "@types/nprogress": "0.2.0",
  84. "@types/sortablejs": "1.10.7",
  85. "@typescript-eslint/eslint-plugin": "5.13.0",
  86. "@typescript-eslint/parser": "5.13.0",
  87. "@vitejs/plugin-vue": "3.1.0",
  88. "@vue/compiler-sfc": "3.2.45",
  89. "cross-env": "^7.0.3",
  90. "dotenv": "^16.4.5",
  91. "eslint": "8.10.0",
  92. "eslint-plugin-vue": "8.5.0",
  93. "prettier": "2.5.1",
  94. "typescript": "4.6.2",
  95. "vite": "3.2.3",
  96. "vite-plugin-compression": "0.5.1",
  97. "vue-eslint-parser": "8.3.0"
  98. },
  99. "browserslist": [
  100. "> 1%",
  101. "last 2 versions",
  102. "not dead"
  103. ],
  104. "bugs": {
  105. "url": "https://gitee.com/lyt-top/vue-next-admin/issues"
  106. },
  107. "engines": {
  108. "node": ">=12.0.0",
  109. "npm": ">= 6.0.0"
  110. },
  111. "keywords": [
  112. "vue",
  113. "vue3",
  114. "vuejs/vue-next",
  115. "element-ui",
  116. "element-plus",
  117. "vue-next-admin",
  118. "next-admin"
  119. ],
  120. "repository": {
  121. "type": "git",
  122. "url": "https://gitee.com/lyt-top/vue-next-admin.git"
  123. },
  124. "updateTime": "2024-05-20 09:22:34"
  125. }