package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "worker-app",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vue-tsc --noEmit && 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. "@ant-design/icons-vue": "^7.0.0",
  16. "@smartcut/api-client": "workspace:*",
  17. "@smartcut/shared-components": "workspace:*",
  18. "@smartcut/shared-utils": "workspace:*",
  19. "@smartcut/types": "workspace:*",
  20. "@zxing/browser": "^0.2.1",
  21. "@zxing/library": "^0.23.0",
  22. "ant-design-vue": "^4.0.0",
  23. "axios": "^1.6.0",
  24. "dayjs": "^1.11.0",
  25. "pinia": "^2.1.0",
  26. "vue": "^3.4.0",
  27. "vue-router": "^4.2.0"
  28. },
  29. "devDependencies": {
  30. "@eslint/js": "^9.0.0",
  31. "@vitejs/plugin-vue": "^5.0.0",
  32. "autoprefixer": "^10.4.0",
  33. "eslint": "^9.0.0",
  34. "eslint-plugin-vue": "^9.30.0",
  35. "postcss": "^8.4.0",
  36. "prettier": "^3.2.0",
  37. "tailwindcss": "^3.4.0",
  38. "typescript": "^5.3.0",
  39. "typescript-eslint": "^8.0.0",
  40. "vite": "^5.0.0",
  41. "vue-eslint-parser": "^9.4.0",
  42. "vue-tsc": "^1.8.0"
  43. }
  44. }