package.json 671 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "docs",
  3. "version": "0.1.0",
  4. "type": "module",
  5. "private": true,
  6. "scripts": {
  7. "dev": "next dev --port 3001",
  8. "build": "next build",
  9. "start": "next start",
  10. "lint": "eslint --max-warnings 0",
  11. "check-types": "next typegen && tsc --noEmit"
  12. },
  13. "dependencies": {
  14. "@repo/ui": "workspace:*",
  15. "next": "16.1.0",
  16. "react": "^19.2.0",
  17. "react-dom": "^19.2.0"
  18. },
  19. "devDependencies": {
  20. "@repo/eslint-config": "workspace:*",
  21. "@repo/typescript-config": "workspace:*",
  22. "@types/node": "^22.15.3",
  23. "@types/react": "19.2.2",
  24. "@types/react-dom": "19.2.2",
  25. "eslint": "^9.39.1",
  26. "typescript": "5.9.2"
  27. }
  28. }