package.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "name": "alien-store-admin",
  3. "private": true,
  4. "version": "1.2.0",
  5. "type": "module",
  6. "description": "alien-store-admin open source management system",
  7. "eslintConfig": {
  8. "root": true,
  9. "env": {
  10. "node": true
  11. },
  12. "extends": [],
  13. "parserOptions": {
  14. "parser": "@babel/eslint-parser"
  15. },
  16. "rules": {
  17. "no-unused-vars": "off",
  18. "vue/no-unused-vars": "off"
  19. }
  20. },
  21. "author": {
  22. "name": "Geeker",
  23. "email": "848130454@qq.com",
  24. "url": "https://github.com/HalseySpicy"
  25. },
  26. "license": "MIT",
  27. "homepage": "https://github.com/HalseySpicy/Geeker-Admin",
  28. "repository": {
  29. "type": "git",
  30. "url": "git@github.com:HalseySpicy/Geeker-Admin.git"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/HalseySpicy/Geeker-Admin/issues"
  34. },
  35. "scripts": {
  36. "dev": "vite",
  37. "serve": "vite",
  38. "build:dev": "vite build --mode development",
  39. "build:test": "vite build --mode test",
  40. "build:pro": "vite build --mode production",
  41. "type:check": "vue-tsc --noEmit --skipLibCheck",
  42. "preview": "pnpm build:dev && vite preview",
  43. "lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
  44. "lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
  45. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  46. "lint:lint-staged": "lint-staged",
  47. "prepare": "husky install",
  48. "release": "standard-version",
  49. "commit": "git add -A && czg && git push"
  50. },
  51. "dependencies": {
  52. "@element-plus/icons-vue": "^2.3.1",
  53. "@tailwindcss/postcss": "^4.0.3",
  54. "@vueuse/core": "^10.11.0",
  55. "@wangeditor/editor": "^5.1.23",
  56. "@wangeditor/editor-for-vue": "^5.1.12",
  57. "axios": "^1.7.2",
  58. "dayjs": "^1.11.11",
  59. "driver.js": "^1.3.1",
  60. "echarts": "^5.5.1",
  61. "echarts-liquidfill": "^3.1.0",
  62. "element-plus": "^2.7.6",
  63. "lodash": "^4.17.21",
  64. "md5": "^2.3.0",
  65. "mitt": "^3.0.1",
  66. "nprogress": "^0.2.0",
  67. "pinia": "^2.1.7",
  68. "pinia-plugin-persistedstate": "^3.2.1",
  69. "qs": "^6.12.1",
  70. "screenfull": "^6.0.2",
  71. "sortablejs": "^1.15.2",
  72. "vue": "^3.4.31",
  73. "vue-i18n": "^9.13.1",
  74. "vue-router": "^4.4.0",
  75. "vuedraggable": "^4.1.0"
  76. },
  77. "devDependencies": {
  78. "@commitlint/cli": "^18.4.3",
  79. "@commitlint/config-conventional": "^18.4.3",
  80. "@tailwindcss/vite": "^4.0.4",
  81. "@types/md5": "^2.3.5",
  82. "@types/nprogress": "^0.2.3",
  83. "@types/qs": "^6.9.15",
  84. "@types/sortablejs": "^1.15.8",
  85. "@typescript-eslint/eslint-plugin": "^7.14.1",
  86. "@typescript-eslint/parser": "^7.14.1",
  87. "@vitejs/plugin-vue": "^5.0.4",
  88. "@vitejs/plugin-vue-jsx": "^3.1.0",
  89. "autoprefixer": "^10.4.20",
  90. "code-inspector-plugin": "^0.16.1",
  91. "cz-git": "1.9.2",
  92. "czg": "^1.9.2",
  93. "eslint": "^8.57.0",
  94. "eslint-config-prettier": "^9.1.0",
  95. "eslint-plugin-prettier": "^5.1.3",
  96. "eslint-plugin-vue": "^9.26.0",
  97. "husky": "^9.0.11",
  98. "lint-staged": "^15.2.5",
  99. "postcss": "^8.5.1",
  100. "postcss-html": "^1.7.0",
  101. "prettier": "^3.3.2",
  102. "rollup-plugin-visualizer": "^5.12.0",
  103. "sass": "^1.77.6",
  104. "standard-version": "^9.5.0",
  105. "stylelint": "^16.6.1",
  106. "stylelint-config-html": "^1.1.0",
  107. "stylelint-config-recess-order": "^5.0.1",
  108. "stylelint-config-recommended-scss": "^14.0.0",
  109. "stylelint-config-recommended-vue": "^1.5.0",
  110. "stylelint-config-standard": "^36.0.0",
  111. "stylelint-config-standard-scss": "^13.1.0",
  112. "tailwindcss": "^4.0.3",
  113. "typescript": "^5.5.2",
  114. "unplugin-vue-setup-extend-plus": "^1.0.1",
  115. "vite": "^5.3.2",
  116. "vite-plugin-compression": "^0.5.1",
  117. "vite-plugin-eslint": "^1.8.1",
  118. "vite-plugin-html": "^3.2.2",
  119. "vite-plugin-pwa": "^0.20.0",
  120. "vite-plugin-svg-icons": "^2.0.1",
  121. "vite-plugin-vue-devtools": "^7.3.5",
  122. "vue-tsc": "^2.0.22"
  123. },
  124. "engines": {
  125. "node": ">=16.18.0"
  126. },
  127. "browserslist": {
  128. "production": [
  129. "> 1%",
  130. "not dead",
  131. "not op_mini all"
  132. ],
  133. "development": [
  134. "last 1 chrome version",
  135. "last 1 firefox version",
  136. "last 1 safari version"
  137. ]
  138. },
  139. "config": {
  140. "commitizen": {
  141. "path": "node_modules/cz-git"
  142. }
  143. }
  144. }