{"id":47976571,"url":"https://github.com/owieth/turborepo-example","last_synced_at":"2026-04-04T10:56:17.203Z","repository":{"id":188492299,"uuid":"678818901","full_name":"owieth/turborepo-example","owner":"owieth","description":"Modern monorepo template — Next.js 16, React 19, Tailwind CSS v4, shadcn/ui, Nextra docs, TypeScript 5.9, Turborepo, pnpm workspaces","archived":false,"fork":false,"pushed_at":"2026-03-31T12:24:53.000Z","size":4375,"stargazers_count":17,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-04T10:56:14.856Z","etag":null,"topics":["monorepo","nextjs","nextjs16","nextra","pnpm","react","react19","shadcn-ui","starter-template","tailwindcss","tailwindcss-v4","turbo","turborepo","turborepo-template","typescript"],"latest_commit_sha":null,"homepage":"https://owieth.github.io/turborepo-example/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owieth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-15T13:03:42.000Z","updated_at":"2026-03-31T12:25:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"79cb7dea-0f62-4e46-b975-406f89170fcb","html_url":"https://github.com/owieth/turborepo-example","commit_stats":null,"previous_names":["owieth/turborepo-example"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/owieth/turborepo-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Fturborepo-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Fturborepo-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Fturborepo-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Fturborepo-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owieth","download_url":"https://codeload.github.com/owieth/turborepo-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Fturborepo-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31397056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["monorepo","nextjs","nextjs16","nextra","pnpm","react","react19","shadcn-ui","starter-template","tailwindcss","tailwindcss-v4","turbo","turborepo","turborepo-template","typescript"],"created_at":"2026-04-04T10:56:16.562Z","updated_at":"2026-04-04T10:56:17.174Z","avatar_url":"https://github.com/owieth.png","language":"TypeScript","funding_links":[],"categories":["Web Frontend"],"sub_categories":["Next.js"],"readme":"# Turborepo Example\n\nA modern monorepo template built with Next.js 16, React 19, Tailwind CSS v4, TypeScript 5.9, Turborepo, and pnpm workspaces.\n\n## Architecture\n\n```mermaid\ngraph TD\n    A[apps/web] --\u003e|imports| D[packages/ui]\n    B[apps/docs] --\u003e|imports| D\n    A --\u003e|extends| E[packages/tsconfig]\n    B --\u003e|extends| E\n    A --\u003e|extends| F[packages/eslint-config-custom]\n    B --\u003e|extends| F\n    D --\u003e|extends| E\n    D --\u003e|extends| F\n```\n\n## What's Inside\n\n### Apps\n\n| App         | Description                           | Port |\n| ----------- | ------------------------------------- | ---- |\n| `apps/web`  | Next.js application with Tailwind CSS | 3000 |\n| `apps/docs` | Nextra documentation site             | 3001 |\n\n### Packages\n\n| Package                         | Description                                                 |\n| ------------------------------- | ----------------------------------------------------------- |\n| `packages/ui`                   | Shared React component library (shadcn/ui, Radix, Tailwind) |\n| `packages/tsconfig`             | Shared TypeScript configurations                            |\n| `packages/eslint-config-custom` | Shared ESLint configuration                                 |\n\n## Prerequisites\n\n- [Node.js](https://nodejs.org/) \u003e= 22\n- [pnpm](https://pnpm.io/) \u003e= 10\n\n## Getting Started\n\n```bash\ngit clone https://github.com/owieth/turborepo-example.git\ncd turborepo-example\npnpm install\npnpm dev\n```\n\n## Scripts\n\n| Command         | Description                        |\n| --------------- | ---------------------------------- |\n| `pnpm dev`      | Start all apps in development mode |\n| `pnpm build`    | Build all apps and packages        |\n| `pnpm lint`     | Lint all apps and packages         |\n| `pnpm clean`    | Clean all build outputs            |\n| `pnpm prettier` | Format all files                   |\n\n## Project Structure\n\n```\nturborepo-example/\n  apps/\n    web/                 Next.js application\n    docs/                Nextra documentation\n  packages/\n    ui/                  Shared component library\n    tsconfig/            TypeScript configurations\n    eslint-config-custom/ ESLint shared config\n  docs/                  GitHub Pages landing page\n  turbo.json             Turborepo task orchestration\n  pnpm-workspace.yaml    Workspace definition\n```\n\n## Tech Stack\n\n- [Next.js 16](https://nextjs.org/) — React framework\n- [React 19](https://react.dev/) — UI library\n- [Tailwind CSS v4](https://tailwindcss.com/) — Utility-first CSS\n- [TypeScript 5.9](https://www.typescriptlang.org/) — Type safety\n- [Turborepo](https://turbo.build/) — Build orchestration\n- [pnpm](https://pnpm.io/) — Package management\n- [shadcn/ui](https://ui.shadcn.com/) — Component primitives\n- [Nextra](https://nextra.site/) — Documentation framework\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowieth%2Fturborepo-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowieth%2Fturborepo-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowieth%2Fturborepo-example/lists"}