1
0

package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "frps-dashboard",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "dev": "vite",
  7. "build": "run-p type-check build-only",
  8. "preview": "vite preview",
  9. "build-only": "vite build",
  10. "type-check": "vue-tsc --noEmit",
  11. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
  12. },
  13. "dependencies": {
  14. "@types/humanize-plus": "^1.8.0",
  15. "echarts": "^5.4.1",
  16. "element-plus": "^2.3.3",
  17. "humanize-plus": "^1.8.2",
  18. "vue": "^3.2.47",
  19. "vue-router": "^4.1.6"
  20. },
  21. "devDependencies": {
  22. "@rushstack/eslint-patch": "^1.1.4",
  23. "@types/node": "^18.11.12",
  24. "@vitejs/plugin-vue": "^4.0.0",
  25. "@vue/eslint-config-prettier": "^7.0.0",
  26. "@vue/eslint-config-typescript": "^11.0.0",
  27. "@vue/tsconfig": "^0.1.3",
  28. "eslint": "^8.22.0",
  29. "eslint-plugin-vue": "^9.3.0",
  30. "npm-run-all": "^4.1.5",
  31. "prettier": "^2.7.1",
  32. "typescript": "~4.7.4",
  33. "unplugin-auto-import": "^0.13.0",
  34. "unplugin-vue-components": "^0.23.0",
  35. "vite": "^4.0.4",
  36. "vue-tsc": "^1.0.12"
  37. }
  38. }