- Turborepo + pnpm workspaces with catalog for shared dependency versions - TypeScript strict config (base + per-package extends) - Tailwind CSS v4 via @tailwindcss/vite plugin - ESLint + Prettier shared config - Planner app scaffolded with React Router 7 (port 3001) - Journal app scaffolded with React Router 7 (port 3000) - Both apps build and start successfully via turbo Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
959 B
JSON
36 lines
959 B
JSON
{
|
|
"name": "trails.cool",
|
|
"private": true,
|
|
"description": "Collaborative route planning + federated activity sharing for outdoor enthusiasts",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.6.5",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"dev": "turbo dev",
|
|
"build": "turbo build",
|
|
"lint": "turbo lint",
|
|
"test": "turbo test",
|
|
"typecheck": "turbo typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@react-router/dev": "^7.13.1",
|
|
"@react-router/node": "^7.13.1",
|
|
"@react-router/serve": "^7.13.1",
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"eslint": "^10.1.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"prettier": "^3.8.1",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"react-router": "^7.13.1",
|
|
"tailwindcss": "^4.2.2",
|
|
"turbo": "^2.8.20",
|
|
"typescript-eslint": "^8.57.1",
|
|
"vite": "catalog:"
|
|
}
|
|
}
|