package.json 633 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "docs",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev --turbo --port 3001",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint"
  10. },
  11. "dependencies": {
  12. "@repo/ui": "workspace:*",
  13. "next": "14.2.6",
  14. "react": "18.3.1",
  15. "react-dom": "18.3.1"
  16. },
  17. "devDependencies": {
  18. "@repo/eslint-config": "workspace:*",
  19. "@repo/typescript-config": "workspace:*",
  20. "@types/node": "^20.17.19",
  21. "@types/react": "^18.3.18",
  22. "@types/react-dom": "^18.3.5",
  23. "eslint": "^8.57.1",
  24. "eslint-config-next": "14.2.6",
  25. "typescript": "^5.7.3"
  26. }
  27. }