├── .gitignore ├── README.md ├── apps ├── docs │ ├── .eslintrc.js │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ └── index.tsx │ └── tsconfig.json ├── react-app │ ├── README.md │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── tailwind.config.js │ └── tsconfig.json └── web │ ├── .eslintrc.js │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ └── index.tsx │ └── tsconfig.json ├── package.json ├── packages ├── config │ ├── eslint-preset.js │ └── package.json ├── tsconfig │ ├── README.md │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json └── ui │ ├── dist │ ├── components │ │ └── Button │ │ │ ├── index.d.ts │ │ │ └── index.d.ts.map │ ├── index.d.ts │ ├── index.d.ts.map │ ├── index.es.js │ └── index.js │ ├── package.json │ ├── postcss.config.js │ ├── rollup.config.js │ ├── src │ ├── components │ │ └── Button │ │ │ └── index.tsx │ └── index.ts │ ├── tailwind.config.js │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /apps/docs/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("config/eslint-preset"); 2 | -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/next-env.d.ts -------------------------------------------------------------------------------- /apps/docs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/next.config.js -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/pages/index.tsx -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/README.md -------------------------------------------------------------------------------- /apps/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/package.json -------------------------------------------------------------------------------- /apps/react-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/postcss.config.js -------------------------------------------------------------------------------- /apps/react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/favicon.ico -------------------------------------------------------------------------------- /apps/react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/index.html -------------------------------------------------------------------------------- /apps/react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/logo192.png -------------------------------------------------------------------------------- /apps/react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/logo512.png -------------------------------------------------------------------------------- /apps/react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/manifest.json -------------------------------------------------------------------------------- /apps/react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/public/robots.txt -------------------------------------------------------------------------------- /apps/react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/App.css -------------------------------------------------------------------------------- /apps/react-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/App.test.tsx -------------------------------------------------------------------------------- /apps/react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/App.tsx -------------------------------------------------------------------------------- /apps/react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/index.css -------------------------------------------------------------------------------- /apps/react-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/index.tsx -------------------------------------------------------------------------------- /apps/react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/logo.svg -------------------------------------------------------------------------------- /apps/react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/react-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/reportWebVitals.ts -------------------------------------------------------------------------------- /apps/react-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/src/setupTests.ts -------------------------------------------------------------------------------- /apps/react-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/tailwind.config.js -------------------------------------------------------------------------------- /apps/react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/react-app/tsconfig.json -------------------------------------------------------------------------------- /apps/web/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("config/eslint-preset"); 2 | -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/next.config.js -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/pages/index.tsx -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /packages/config/eslint-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/config/eslint-preset.js -------------------------------------------------------------------------------- /packages/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/config/package.json -------------------------------------------------------------------------------- /packages/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/tsconfig/README.md -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/tsconfig/nextjs.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/tsconfig/react-library.json -------------------------------------------------------------------------------- /packages/ui/dist/components/Button/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/dist/components/Button/index.d.ts -------------------------------------------------------------------------------- /packages/ui/dist/components/Button/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/dist/components/Button/index.d.ts.map -------------------------------------------------------------------------------- /packages/ui/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./components/Button"; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /packages/ui/dist/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/dist/index.d.ts.map -------------------------------------------------------------------------------- /packages/ui/dist/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/dist/index.es.js -------------------------------------------------------------------------------- /packages/ui/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/dist/index.js -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/postcss.config.js -------------------------------------------------------------------------------- /packages/ui/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/rollup.config.js -------------------------------------------------------------------------------- /packages/ui/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/src/components/Button/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./components/Button"; 2 | -------------------------------------------------------------------------------- /packages/ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/tailwind.config.js -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peroconino/turbo-monorepo-react-nextjs/HEAD/turbo.json --------------------------------------------------------------------------------