package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. "crypto-js": "^4.2.0",
  59. "dayjs": "^1.11.11",
  60. "driver.js": "^1.3.1",
  61. "echarts": "^5.5.1",
  62. "echarts-liquidfill": "^3.1.0",
  63. "element-plus": "^2.7.6",
  64. "lodash": "^4.17.21",
  65. "md5": "^2.3.0",
  66. "mitt": "^3.0.1",
  67. "nprogress": "^0.2.0",
  68. "pinia": "^2.1.7",
  69. "pinia-plugin-persistedstate": "^3.2.1",
  70. "qs": "^6.12.1",
  71. "screenfull": "^6.0.2",
  72. "sortablejs": "^1.15.2",
  73. "vue": "^3.4.31",
  74. "vue-i18n": "^9.13.1",
  75. "vue-router": "^4.4.0",
  76. "vuedraggable": "^4.1.0"
  77. },
  78. "devDependencies": {
  79. "@commitlint/cli": "^18.4.3",
  80. "@commitlint/config-conventional": "^18.4.3",
  81. "@tailwindcss/vite": "^4.0.4",
  82. "@types/crypto-js": "^4.2.2",
  83. "@types/md5": "^2.3.5",
  84. "@types/nprogress": "^0.2.3",
  85. "@types/qs": "^6.9.15",
  86. "@types/sortablejs": "^1.15.8",
  87. "@typescript-eslint/eslint-plugin": "^7.14.1",
  88. "@typescript-eslint/parser": "^7.14.1",
  89. "@vitejs/plugin-vue": "^5.0.4",
  90. "@vitejs/plugin-vue-jsx": "^3.1.0",
  91. "autoprefixer": "^10.4.20",
  92. "code-inspector-plugin": "^0.16.1",
  93. "cz-git": "1.9.2",
  94. "czg": "^1.9.2",
  95. "eslint": "^8.57.0",
  96. "eslint-config-prettier": "^9.1.0",
  97. "eslint-plugin-prettier": "^5.1.3",
  98. "eslint-plugin-vue": "^9.26.0",
  99. "husky": "^9.0.11",
  100. "lint-staged": "^15.2.5",
  101. "postcss": "^8.5.1",
  102. "postcss-html": "^1.7.0",
  103. "prettier": "^3.3.2",
  104. "rollup-plugin-visualizer": "^5.12.0",
  105. "sass": "^1.77.6",
  106. "standard-version": "^9.5.0",
  107. "stylelint": "^16.6.1",
  108. "stylelint-config-html": "^1.1.0",
  109. "stylelint-config-recess-order": "^5.0.1",
  110. "stylelint-config-recommended-scss": "^14.0.0",
  111. "stylelint-config-recommended-vue": "^1.5.0",
  112. "stylelint-config-standard": "^36.0.0",
  113. "stylelint-config-standard-scss": "^13.1.0",
  114. "tailwindcss": "^4.0.3",
  115. "typescript": "^5.5.2",
  116. "unplugin-vue-setup-extend-plus": "^1.0.1",
  117. "vite": "^5.3.2",
  118. "vite-plugin-compression": "^0.5.1",
  119. "vite-plugin-eslint": "^1.8.1",
  120. "vite-plugin-html": "^3.2.2",
  121. "vite-plugin-pwa": "^0.20.0",
  122. "vite-plugin-svg-icons": "^2.0.1",
  123. "vite-plugin-vue-devtools": "^7.3.5",
  124. "vue-tsc": "^2.0.22"
  125. },
  126. "optionalDependencies": {
  127. "@rollup/rollup-linux-x64-gnu": "*"
  128. },
  129. "engines": {
  130. "node": ">=16.18.0"
  131. },
  132. "browserslist": {
  133. "production": [
  134. "> 1%",
  135. "not dead",
  136. "not op_mini all"
  137. ],
  138. "development": [
  139. "last 1 chrome version",
  140. "last 1 firefox version",
  141. "last 1 safari version"
  142. ]
  143. },
  144. "config": {
  145. "commitizen": {
  146. "path": "node_modules/cz-git"
  147. }
  148. }
  149. }