package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "worker-app",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vite build",
  9. "type-check": "vue-tsc --noEmit",
  10. "preview": "vite preview",
  11. "lint": "eslint . --fix",
  12. "format": "prettier --write src/"
  13. },
  14. "dependencies": {
  15. "vue": "^3.4.0",
  16. "vue-router": "^4.2.0",
  17. "pinia": "^2.1.0",
  18. "ant-design-vue": "^4.0.0",
  19. "axios": "^1.6.0",
  20. "@ant-design/icons-vue": "^7.0.0",
  21. "dayjs": "^1.11.0",
  22. "@smartcut/types": "workspace:*",
  23. "@smartcut/api-client": "workspace:*",
  24. "@smartcut/shared-utils": "workspace:*",
  25. "@smartcut/shared-components": "workspace:*"
  26. },
  27. "devDependencies": {
  28. "@vitejs/plugin-vue": "^5.0.0",
  29. "typescript": "^5.3.0",
  30. "vite": "^5.0.0",
  31. "vue-tsc": "^1.8.0",
  32. "eslint": "^9.0.0",
  33. "@eslint/js": "^9.0.0",
  34. "typescript-eslint": "^8.0.0",
  35. "eslint-plugin-vue": "^9.30.0",
  36. "vue-eslint-parser": "^9.4.0",
  37. "prettier": "^3.2.0",
  38. "tailwindcss": "^3.4.0",
  39. "autoprefixer": "^10.4.0",
  40. "postcss": "^8.4.0"
  41. }
  42. }