package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "name": "taais-admin",
  3. "private": true,
  4. "version": "1.2.0",
  5. "type": "module",
  6. "description": "taais-admin open source management system",
  7. "author": {
  8. "name": "gaokunw",
  9. "email": "wanggaokun@wo.cn"
  10. },
  11. "license": "MIT",
  12. "scripts": {
  13. "dev": "vite",
  14. "serve": "vite",
  15. "build:dev": "vite build --mode development",
  16. "build:test": "vue-tsc && vite build --mode test",
  17. "build:pro": "vite build --mode production",
  18. "type:check": "vue-tsc --noEmit --skipLibCheck",
  19. "preview": "npm run build:dev && vite preview",
  20. "lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
  21. "lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
  22. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  23. "lint:lint-staged": "lint-staged",
  24. "prepare": "husky install",
  25. "release": "standard-version",
  26. "commit": "git add -A && czg && git push"
  27. },
  28. "dependencies": {
  29. "@element-plus/icons-vue": "^2.3.1",
  30. "@types/file-saver": "^2.0.7",
  31. "@types/js-cookie": "^3.0.6",
  32. "@vueuse/core": "^10.6.1",
  33. "@wangeditor/editor": "^5.1.23",
  34. "@wangeditor/editor-for-vue": "^5.1.12",
  35. "axios": "^1.6.2",
  36. "crypto-js": "^4.2.0",
  37. "dayjs": "^1.11.10",
  38. "driver.js": "^1.3.1",
  39. "echarts": "^5.4.3",
  40. "echarts-liquidfill": "^3.1.0",
  41. "element-plus": "2.6.0",
  42. "fabric": "^5.3.0",
  43. "file-saver": "^2.0.5",
  44. "image-conversion": "^2.1.1",
  45. "js-cookie": "^3.0.5",
  46. "jsencrypt": "^3.3.2",
  47. "md5": "^2.3.0",
  48. "mitt": "^3.0.1",
  49. "nanoid": "^5.0.4",
  50. "nprogress": "^0.2.0",
  51. "pinia": "^2.1.7",
  52. "pinia-plugin-persistedstate": "^3.2.0",
  53. "prismjs": "^1.29.0",
  54. "qs": "^6.11.2",
  55. "screenfull": "^6.0.2",
  56. "sortablejs": "^1.15.1",
  57. "vue": "3.3.13",
  58. "vue-cropper": "^1.1.2",
  59. "vue-i18n": "^9.6.4",
  60. "vue-konva": "^3.0.2",
  61. "vue-router": "^4.2.5",
  62. "vue-types": "^5.1.1",
  63. "vue-video-player": "^6.0.0",
  64. "vuedraggable": "^4.1.0"
  65. },
  66. "devDependencies": {
  67. "@commitlint/cli": "^18.4.3",
  68. "@commitlint/config-conventional": "^18.4.3",
  69. "@types/md5": "^2.3.5",
  70. "@types/nprogress": "^0.2.3",
  71. "@types/prismjs": "^1.26.3",
  72. "@types/qs": "^6.9.10",
  73. "@types/sortablejs": "^1.15.7",
  74. "@typescript-eslint/eslint-plugin": "^6.14.0",
  75. "@typescript-eslint/parser": "^6.14.0",
  76. "@vitejs/plugin-vue": "^4.5.2",
  77. "@vitejs/plugin-vue-jsx": "^3.1.0",
  78. "autoprefixer": "^10.4.16",
  79. "cz-git": "^1.7.1",
  80. "czg": "^1.7.1",
  81. "eslint": "^8.55.0",
  82. "eslint-config-prettier": "^9.1.0",
  83. "eslint-plugin-prettier": "^5.0.1",
  84. "eslint-plugin-vue": "^9.19.2",
  85. "husky": "^8.0.3",
  86. "lint-staged": "^15.1.0",
  87. "postcss": "^8.4.32",
  88. "postcss-html": "^1.5.0",
  89. "prettier": "^3.1.0",
  90. "rollup-plugin-visualizer": "^5.9.3",
  91. "sass": "^1.69.5",
  92. "standard-version": "^9.5.0",
  93. "stylelint": "^16.0.2",
  94. "stylelint-config-html": "^1.1.0",
  95. "stylelint-config-recess-order": "^4.4.0",
  96. "stylelint-config-recommended-scss": "^14.0.0",
  97. "stylelint-config-recommended-vue": "^1.5.0",
  98. "stylelint-config-standard": "^35.0.0",
  99. "stylelint-config-standard-scss": "^12.0.0",
  100. "typescript": "4.9.5",
  101. "unplugin-vue-setup-extend-plus": "^1.0.0",
  102. "vite": "^5.4.8",
  103. "vite-plugin-compression": "^0.5.1",
  104. "vite-plugin-eslint": "^1.8.1",
  105. "vite-plugin-prismjs": "^0.0.8",
  106. "vite-plugin-pwa": "^0.17.2",
  107. "vite-plugin-simple-html": "^0.1.0",
  108. "vite-plugin-svg-icons": "^2.0.1",
  109. "vue-tsc": "^1.8.25"
  110. },
  111. "engines": {
  112. "node": ">=16.0.0"
  113. },
  114. "browserslist": {
  115. "production": [
  116. "> 1%",
  117. "not dead",
  118. "not op_mini all"
  119. ],
  120. "development": [
  121. "last 1 chrome version",
  122. "last 1 firefox version",
  123. "last 1 safari version"
  124. ]
  125. },
  126. "config": {
  127. "commitizen": {
  128. "path": "node_modules/cz-git"
  129. }
  130. }
  131. }