package.json 584 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@repo/ui",
  3. "version": "0.0.0",
  4. "private": true,
  5. "module": "./index.ts",
  6. "scripts": {
  7. "lint": "eslint . --max-warnings 0",
  8. "generate:component": "turbo gen react-component"
  9. },
  10. "devDependencies": {
  11. "@repo/eslint-config": "workspace:*",
  12. "@repo/typescript-config": "workspace:*",
  13. "@turbo/gen": "^1.13.4",
  14. "@types/eslint": "^8.56.12",
  15. "@types/node": "^20.17.19",
  16. "@types/react": "^18.3.18",
  17. "@types/react-dom": "^18.3.5",
  18. "eslint": "^8.57.1",
  19. "typescript": "^5.7.3"
  20. },
  21. "dependencies": {
  22. "react": "^18.3.1"
  23. }
  24. }