| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "docs",
- "version": "0.1.0",
- "type": "module",
- "private": true,
- "scripts": {
- "dev": "next dev --port 3001",
- "build": "next build",
- "start": "next start",
- "lint": "eslint --max-warnings 0",
- "check-types": "next typegen && tsc --noEmit"
- },
- "dependencies": {
- "@repo/ui": "workspace:*",
- "next": "16.1.0",
- "react": "^19.2.0",
- "react-dom": "^19.2.0"
- },
- "devDependencies": {
- "@repo/eslint-config": "workspace:*",
- "@repo/typescript-config": "workspace:*",
- "@types/node": "^22.15.3",
- "@types/react": "19.2.2",
- "@types/react-dom": "19.2.2",
- "eslint": "^9.39.1",
- "typescript": "5.9.2"
- }
- }
|