package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "rhythm",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build:prod": "vite build",
  9. "build:stag": "vite build --mode staging",
  10. "build:devProd": "vite build --mode devProd",
  11. "preview": "vite preview --port 9526",
  12. "type-check": "vue-tsc --build",
  13. "lint": "eslint . --fix",
  14. "format": "prettier --write src/"
  15. },
  16. "dependencies": {
  17. "axios": "^1.7.9",
  18. "nprogress": "^0.2.0",
  19. "pinia": "^2.3.0",
  20. "vant": "^4.9.15",
  21. "vue": "^3.5.13",
  22. "vue-router": "^4.5.0"
  23. },
  24. "devDependencies": {
  25. "@types/nprogress": "^0.2.0",
  26. "@tsconfig/node22": "^22.0.0",
  27. "@types/node": "^22.10.2",
  28. "@vitejs/plugin-vue": "^5.2.1",
  29. "@vitejs/plugin-vue-jsx": "^4.1.1",
  30. "@vue/eslint-config-prettier": "^10.1.0",
  31. "@vue/eslint-config-typescript": "^14.1.3",
  32. "@vue/tsconfig": "^0.7.0",
  33. "eslint": "^9.14.0",
  34. "eslint-plugin-vue": "^9.30.0",
  35. "npm-run-all2": "^7.0.2",
  36. "postcss-pxtorem": "^6.1.0",
  37. "prettier": "^3.3.3",
  38. "sass": "^1.83.0",
  39. "typescript": "~5.6.3",
  40. "vite": "^6.0.5",
  41. "vue-tsc": "^2.1.10"
  42. }
  43. }