├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── apps ├── be │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── docs │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── GeistMonoVF.woff │ │ │ └── GeistVF.woff │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.module.css │ │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── public │ │ ├── file-text.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ └── tsconfig.json ├── react-app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── web │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── app │ ├── admin │ │ └── page.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── page.module.css │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── public │ ├── file-text.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ └── tsconfig.json ├── package.json ├── packages ├── common │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── eslint-config │ ├── README.md │ ├── library.js │ ├── next.js │ ├── package.json │ └── react-internal.js ├── typescript-config │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json └── ui │ ├── .eslintrc.js │ ├── package.json │ ├── src │ ├── admin.tsx │ ├── button.tsx │ ├── card.tsx │ └── code.tsx │ ├── tsconfig.json │ ├── tsconfig.lint.json │ └── turbo │ └── generators │ ├── config.ts │ └── templates │ └── component.hbs └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/README.md -------------------------------------------------------------------------------- /apps/be/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/be/package.json -------------------------------------------------------------------------------- /apps/be/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/be/src/index.ts -------------------------------------------------------------------------------- /apps/be/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/be/tsconfig.json -------------------------------------------------------------------------------- /apps/docs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/.eslintrc.js -------------------------------------------------------------------------------- /apps/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/.gitignore -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/favicon.ico -------------------------------------------------------------------------------- /apps/docs/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /apps/docs/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /apps/docs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/globals.css -------------------------------------------------------------------------------- /apps/docs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/page.module.css -------------------------------------------------------------------------------- /apps/docs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/app/page.tsx -------------------------------------------------------------------------------- /apps/docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/next.config.mjs -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/public/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/public/file-text.svg -------------------------------------------------------------------------------- /apps/docs/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/public/globe.svg -------------------------------------------------------------------------------- /apps/docs/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/public/next.svg -------------------------------------------------------------------------------- /apps/docs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/public/vercel.svg -------------------------------------------------------------------------------- /apps/docs/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/public/window.svg -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/react-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/.gitignore -------------------------------------------------------------------------------- /apps/react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/README.md -------------------------------------------------------------------------------- /apps/react-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/index.html -------------------------------------------------------------------------------- /apps/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/package.json -------------------------------------------------------------------------------- /apps/react-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/public/vite.svg -------------------------------------------------------------------------------- /apps/react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/src/App.css -------------------------------------------------------------------------------- /apps/react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/src/App.tsx -------------------------------------------------------------------------------- /apps/react-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/src/assets/react.svg -------------------------------------------------------------------------------- /apps/react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/src/index.css -------------------------------------------------------------------------------- /apps/react-app/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/src/main.tsx -------------------------------------------------------------------------------- /apps/react-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/react-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/tsconfig.json -------------------------------------------------------------------------------- /apps/react-app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/tsconfig.node.json -------------------------------------------------------------------------------- /apps/react-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/react-app/vite.config.ts -------------------------------------------------------------------------------- /apps/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/.eslintrc.js -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/admin/page.tsx -------------------------------------------------------------------------------- /apps/web/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/favicon.ico -------------------------------------------------------------------------------- /apps/web/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /apps/web/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /apps/web/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/globals.css -------------------------------------------------------------------------------- /apps/web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/page.module.css -------------------------------------------------------------------------------- /apps/web/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/app/page.tsx -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/public/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/public/file-text.svg -------------------------------------------------------------------------------- /apps/web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/public/globe.svg -------------------------------------------------------------------------------- /apps/web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/public/next.svg -------------------------------------------------------------------------------- /apps/web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/public/vercel.svg -------------------------------------------------------------------------------- /apps/web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/public/window.svg -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/package.json -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/eslint-config/library.js -------------------------------------------------------------------------------- /packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/eslint-config/next.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/eslint-config/react-internal.js -------------------------------------------------------------------------------- /packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/typescript-config/base.json -------------------------------------------------------------------------------- /packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/src/admin.tsx -------------------------------------------------------------------------------- /packages/ui/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/src/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/src/card.tsx -------------------------------------------------------------------------------- /packages/ui/src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/src/code.tsx -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/ui/turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/turbo/generators/config.ts -------------------------------------------------------------------------------- /packages/ui/turbo/generators/templates/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/packages/ui/turbo/generators/templates/component.hbs -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/my-turborepo/HEAD/turbo.json --------------------------------------------------------------------------------