31 lines
770 B
JSON
31 lines
770 B
JSON
{
|
|
"name": "docs",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack --port 3001",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "biome check --error-on-warnings app",
|
|
"lint:fix": "biome check --write app",
|
|
"format": "biome format app --write",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@repo/ui": "workspace:*",
|
|
"next": "^15.3.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/biome-config": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@types/node": "^22.15.3",
|
|
"@types/react": "19.1.0",
|
|
"@types/react-dom": "19.1.1",
|
|
"@biomejs/biome": "1.9.4",
|
|
"typescript": "5.8.2"
|
|
}
|
|
}
|