package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "dev-tools",
  3. "version": "0.0.0",
  4. "private": true,
  5. "sideEffects": false,
  6. "type": "module",
  7. "main": "./index.ts",
  8. "types": "./index.ts",
  9. "exports": {
  10. ".": "./index.ts"
  11. },
  12. "scripts": {
  13. "preinstall": "npx only-allow pnpm",
  14. "clean": "rimraf node_modules .turbo tsconfig.tsbuildinfo dist",
  15. "test": "vitest run",
  16. "test:watch": "vitest",
  17. "typecheck": "tsc --noEmit"
  18. },
  19. "dependencies": {
  20. "common": "workspace:*",
  21. "lucide-react": "*",
  22. "ui": "workspace:*"
  23. },
  24. "devDependencies": {
  25. "@testing-library/jest-dom": "^6.6.0",
  26. "@testing-library/react": "^16.0.0",
  27. "@testing-library/user-event": "^14.0.0",
  28. "@types/react": "catalog:",
  29. "@types/react-dom": "catalog:",
  30. "config": "workspace:*",
  31. "jsdom": "^26.1.0",
  32. "next-router-mock": "^0.9.13",
  33. "tailwindcss": "catalog:",
  34. "tsconfig": "workspace:*",
  35. "typescript": "catalog:",
  36. "vitest": "catalog:"
  37. },
  38. "peerDependencies": {
  39. "next": "catalog:",
  40. "react": "catalog:",
  41. "react-dom": "catalog:"
  42. }
  43. }