A monorepo starter template with shared configuration and independent projects.
Quick start: Use as a template repository, or copy structure/configs into existing projects for standardized tooling.
project-a/- First projectproject-b/- Second projecttasks/- Project planning and tracking- Shared configuration at root level
- Node.js 22 (see
.nvmrc) - npm or pnpm
- Clone or copy this template
- Navigate to a project directory:
cd project-a - Install dependencies:
npm install - Start development:
npm run dev
- Lint:
npm run lint - Format:
npm run format - Type check:
npm run typecheck
See CLAUDE.md for detailed development guidelines.