This Turborepo includes the following packages/apps:
admin
: a Next.js appclient
: another Next.js appapi
: a hono API@repo/ui
: a stub React component library shared by bothadmin
andclient
applications@repo/biome-config
: Fast linting and formatting configurations for the monorepo@repo/typescript-config
:tsconfig.json
s used throughout the monorepo@repo/types
: shared TypeScript supabase types
Each package/app is 100% TypeScript.
This Turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- Biome for linting and formatting
- Supabase for the database
To build all apps and packages, run the following command:
pnpm build
To develop all apps and packages, run the following command:
pnpm dev
To lint & format all apps and packages, run the following command:
pnpm lint