├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierrc ├── README.md ├── apps └── web │ ├── .eslintrc │ ├── README.md │ ├── jest.config.js │ ├── jest.setup.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── favicon.ico │ └── vercel.svg │ ├── src │ ├── components │ │ ├── GoogleAnalytics │ │ │ └── GoogleAnalytics.tsx │ │ └── Greeting │ │ │ ├── Greeting.test.tsx │ │ │ └── Greeting.tsx │ ├── css │ │ └── global.css │ └── pages │ │ ├── _app.tsx │ │ ├── api │ │ └── hello.ts │ │ └── index.tsx │ ├── tailwind.config.js │ ├── tsconfig.json │ └── tsconfig.test.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── templates ├── react-library │ ├── package.json │ └── src │ │ ├── Hello.tsx │ │ └── index.ts └── ts-lib │ ├── package.json │ └── src │ └── index.ts └── turbo.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=@parcel/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/README.md -------------------------------------------------------------------------------- /apps/web/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/.eslintrc -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/jest.config.js -------------------------------------------------------------------------------- /apps/web/jest.setup.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect'; 2 | -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/next.config.js -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/postcss.config.js -------------------------------------------------------------------------------- /apps/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/public/vercel.svg -------------------------------------------------------------------------------- /apps/web/src/components/GoogleAnalytics/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/components/GoogleAnalytics/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Greeting/Greeting.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/components/Greeting/Greeting.test.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Greeting/Greeting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/components/Greeting/Greeting.tsx -------------------------------------------------------------------------------- /apps/web/src/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/css/global.css -------------------------------------------------------------------------------- /apps/web/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/pages/_app.tsx -------------------------------------------------------------------------------- /apps/web/src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/pages/api/hello.ts -------------------------------------------------------------------------------- /apps/web/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/src/pages/index.tsx -------------------------------------------------------------------------------- /apps/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/tailwind.config.js -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/apps/web/tsconfig.test.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /templates/react-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/templates/react-library/package.json -------------------------------------------------------------------------------- /templates/react-library/src/Hello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/templates/react-library/src/Hello.tsx -------------------------------------------------------------------------------- /templates/react-library/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/templates/react-library/src/index.ts -------------------------------------------------------------------------------- /templates/ts-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/templates/ts-lib/package.json -------------------------------------------------------------------------------- /templates/ts-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/templates/ts-lib/src/index.ts -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandronanez/turborepo-nextjs-starter/HEAD/turbo.json --------------------------------------------------------------------------------