package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "platform-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. "@smartcut/types": "workspace:*",
  22. "@smartcut/api-client": "workspace:*",
  23. "@smartcut/shared-utils": "workspace:*",
  24. "@smartcut/shared-components": "workspace:*"
  25. },
  26. "devDependencies": {
  27. "@vitejs/plugin-vue": "^5.0.0",
  28. "typescript": "^5.3.0",
  29. "vite": "^5.0.0",
  30. "vue-tsc": "^1.8.0",
  31. "eslint": "^9.0.0",
  32. "@eslint/js": "^9.0.0",
  33. "typescript-eslint": "^8.0.0",
  34. "eslint-plugin-vue": "^9.30.0",
  35. "vue-eslint-parser": "^9.4.0",
  36. "prettier": "^3.2.0",
  37. "tailwindcss": "^3.4.0",
  38. "autoprefixer": "^10.4.0",
  39. "postcss": "^8.4.0"
  40. }
  41. }