├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE.md ├── README.md ├── apps ├── .gitkeep ├── web-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── e2e │ │ │ └── app.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ └── tsconfig.json └── web │ ├── .eslintrc.json │ ├── app │ ├── (authentication) │ │ ├── layout.tsx │ │ ├── sign-in │ │ │ └── page.tsx │ │ └── sign-up │ │ │ └── page.tsx │ ├── (marketing) │ │ ├── blog │ │ │ ├── [slug] │ │ │ │ ├── opengraph-image.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── @signInModal │ │ ├── (.)sign-in │ │ │ └── page.tsx │ │ └── default.tsx │ ├── @signUpModal │ │ ├── (.)sign-up │ │ │ └── page.tsx │ │ └── default.tsx │ ├── [teamSlug] │ │ ├── dashboard │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── settings │ │ │ ├── accounts │ │ │ └── page.tsx │ │ │ ├── aside-link.tsx │ │ │ ├── billing │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── members │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── profile │ │ │ └── page.tsx │ ├── api │ │ ├── accept-team-invitation │ │ │ └── [token] │ │ │ │ └── route.ts │ │ ├── lemonsqueezy │ │ │ └── route.ts │ │ ├── oauth │ │ │ ├── github │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── sign-in │ │ │ └── route.ts │ │ ├── sign-out │ │ │ └── route.ts │ │ ├── sign-up │ │ │ └── route.ts │ │ ├── trpc │ │ │ └── [trpc] │ │ │ │ └── route.ts │ │ └── verify-email │ │ │ └── [token] │ │ │ └── route.ts │ ├── client-providers.tsx │ ├── error.tsx │ ├── global-error.tsx │ ├── layout.tsx │ ├── mdx.css │ ├── not-found.tsx │ ├── opengraph-image.tsx │ ├── robots.ts │ ├── sitemap.ts │ └── styles.css │ ├── index.d.ts │ ├── jest.config.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── pages │ └── api │ │ ├── email-verification.tsx │ │ └── team-invitation-email.tsx │ ├── postcss.config.js │ ├── posts │ └── blog-post-1.mdx │ ├── project.json │ ├── public │ ├── .gitkeep │ ├── fonts │ │ ├── Inter-Bold.ttf │ │ └── Inter-Regular.ttf │ ├── images │ │ ├── apple-icon-180.png │ │ ├── favicon-196.png │ │ ├── logo-mark.svg │ │ ├── logo.svg │ │ ├── manifest-icon-192.maskable.png │ │ └── manifest-icon-512.maskable.png │ └── site.webmanifest │ ├── tailwind.config.js │ ├── tsconfig.json │ └── tsconfig.spec.json ├── babel.config.json ├── contentlayer.config.ts ├── drizzle.config.json ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── authentication │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── authentication.ts │ │ │ └── get-authentication.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── authorisation │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── authorisation.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── configuration │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── web.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── db │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── db.ts │ │ │ └── schema.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── feature │ ├── authentication │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── authentication-form │ │ │ │ │ ├── authentication-form.tsx │ │ │ │ │ ├── github-button.tsx │ │ │ │ │ └── schema.ts │ │ │ │ ├── oauth │ │ │ │ │ └── github.ts │ │ │ │ ├── sign-in │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── sign-in-form.tsx │ │ │ │ │ └── sign-in.ts │ │ │ │ ├── sign-out │ │ │ │ │ └── sign-out.ts │ │ │ │ └── sign-up │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── sign-up-form.tsx │ │ │ │ │ └── sign-up.ts │ │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── billing │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── plan-card │ │ │ │ │ └── plan-card.tsx │ │ │ │ └── plan-form │ │ │ │ │ └── plan-form.tsx │ │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── dashboard │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── header │ │ │ │ │ └── header.tsx │ │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── settings │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── add-connected-account │ │ │ │ │ └── add-connected-account.tsx │ │ │ │ ├── connected-accounts │ │ │ │ │ └── connected-accounts.tsx │ │ │ │ ├── profile-form │ │ │ │ │ ├── container.tsx │ │ │ │ │ └── form.tsx │ │ │ │ └── remove-connected-account │ │ │ │ │ └── remove-connected-account.tsx │ │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ └── team │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── invite-members-form │ │ │ │ ├── container.tsx │ │ │ │ └── form.tsx │ │ │ ├── invite-table │ │ │ │ ├── container.tsx │ │ │ │ ├── row-actions.tsx │ │ │ │ └── table.tsx │ │ │ ├── team-form │ │ │ │ ├── container.tsx │ │ │ │ └── form.tsx │ │ │ ├── team-switcher │ │ │ │ └── team-switcher.tsx │ │ │ ├── team-table │ │ │ │ ├── container.tsx │ │ │ │ ├── row-actions.tsx │ │ │ │ └── table.tsx │ │ │ └── team-tabs │ │ │ │ └── team-tabs.tsx │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json ├── ui │ ├── blog │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── article-card │ │ │ │ │ └── article-card.tsx │ │ │ │ └── mdx-components │ │ │ │ │ └── mdx-components.tsx │ │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ └── web │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── accordion │ │ │ │ └── accordion.tsx │ │ │ ├── alert-dialog │ │ │ │ └── alert-dialog.tsx │ │ │ ├── alert │ │ │ │ └── alert.tsx │ │ │ ├── avatar │ │ │ │ └── avatar.tsx │ │ │ ├── badge │ │ │ │ └── badge.tsx │ │ │ ├── button │ │ │ │ └── button.tsx │ │ │ ├── calendar │ │ │ │ └── calendar.tsx │ │ │ ├── card │ │ │ │ └── card.tsx │ │ │ ├── command │ │ │ │ └── command.tsx │ │ │ ├── data-table │ │ │ │ ├── data-table-pagination.tsx │ │ │ │ └── data-table.tsx │ │ │ ├── date-range-picker │ │ │ │ └── date-range-picker.tsx │ │ │ ├── dialog │ │ │ │ └── dialog.tsx │ │ │ ├── dropdown-menu │ │ │ │ └── dropdown-menu.tsx │ │ │ ├── footer │ │ │ │ └── footer.tsx │ │ │ ├── form │ │ │ │ └── form.tsx │ │ │ ├── header │ │ │ │ └── header.tsx │ │ │ ├── input │ │ │ │ └── input.tsx │ │ │ ├── intercept-dialog │ │ │ │ └── intercept-dialog.tsx │ │ │ ├── label │ │ │ │ └── label.tsx │ │ │ ├── logo │ │ │ │ └── logo.tsx │ │ │ ├── popover │ │ │ │ └── popover.tsx │ │ │ ├── radio-group │ │ │ │ └── radio-group.tsx │ │ │ ├── select │ │ │ │ └── select.tsx │ │ │ ├── sign-out-button │ │ │ │ └── sign-out-button.tsx │ │ │ ├── skeleton │ │ │ │ └── skeleton.tsx │ │ │ ├── table │ │ │ │ └── table.tsx │ │ │ ├── tabs │ │ │ │ └── tabs.tsx │ │ │ ├── theme-provider │ │ │ │ └── theme-provider.tsx │ │ │ ├── toaster │ │ │ │ └── toaster.tsx │ │ │ ├── tooltip │ │ │ │ └── tooltip.tsx │ │ │ └── user-button │ │ │ │ └── user-button.tsx │ │ └── server.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json └── utility │ ├── email │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── components │ │ │ ├── Button.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Heading.tsx │ │ │ ├── Link.tsx │ │ │ ├── Text.tsx │ │ │ ├── base-layout.tsx │ │ │ └── index.ts │ │ ├── emails │ │ │ ├── team-invitation.tsx │ │ │ └── verify-email.tsx │ │ ├── index.ts │ │ ├── mailing.config.json │ │ ├── previews │ │ │ ├── team-invitation.tsx │ │ │ └── verify-email.tsx │ │ └── theme.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── payment │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── client.ts │ │ │ ├── create-checkout │ │ │ └── create-checkout.ts │ │ │ ├── get-plans │ │ │ └── get-plans.ts │ │ │ ├── get-products │ │ │ └── get-products.ts │ │ │ └── get-variants │ │ │ └── get-variants.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── schema │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── team │ │ │ ├── index.ts │ │ │ ├── invite-members-schema.ts │ │ │ └── update-team-schema.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── shared │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── classnames │ │ │ └── classnames.ts │ │ │ ├── format-date │ │ │ └── format-date.ts │ │ │ ├── generate-token │ │ │ └── generate-token.ts │ │ │ └── get-first-part-of-email │ │ │ └── get-first-part-of-email.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── trpc-next-client │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── client.ts │ │ │ ├── createHydrateClient.tsx │ │ │ └── createTrpcNextBeta.tsx │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── trpc-next-server │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── createTrpcNextLayout.tsx │ │ │ ├── local-storage.ts │ │ │ └── server.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ └── trpc │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── createContext.ts │ │ ├── createRouter.ts │ │ └── routers │ │ ├── _app.ts │ │ ├── billing-router │ │ └── billing-router.ts │ │ ├── invitation-router │ │ └── invitation-router.tsx │ │ ├── member-router │ │ └── member-router.tsx │ │ ├── team-router │ │ └── team-router.tsx │ │ └── user-router │ │ └── user-router.tsx │ ├── tsconfig.json │ └── tsconfig.lib.json ├── mailing.config.json ├── migrations.json ├── nx.json ├── package.json ├── tools ├── locales-sync.config.js └── tsconfig.tools.json ├── tsconfig.base.json └── types ├── lucia.d.ts └── next-intl.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/web-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/web-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/project.json -------------------------------------------------------------------------------- /apps/web-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/web-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/web-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get("h1"); 2 | -------------------------------------------------------------------------------- /apps/web-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/web-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/web-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/.eslintrc.json -------------------------------------------------------------------------------- /apps/web/app/(authentication)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(authentication)/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/(authentication)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(authentication)/sign-in/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(authentication)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(authentication)/sign-up/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(marketing)/blog/[slug]/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(marketing)/blog/[slug]/opengraph-image.tsx -------------------------------------------------------------------------------- /apps/web/app/(marketing)/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(marketing)/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(marketing)/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(marketing)/blog/page.tsx -------------------------------------------------------------------------------- /apps/web/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /apps/web/app/@signInModal/(.)sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/@signInModal/(.)sign-in/page.tsx -------------------------------------------------------------------------------- /apps/web/app/@signInModal/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/@signInModal/default.tsx -------------------------------------------------------------------------------- /apps/web/app/@signUpModal/(.)sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/@signUpModal/(.)sign-up/page.tsx -------------------------------------------------------------------------------- /apps/web/app/@signUpModal/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/@signUpModal/default.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/accounts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/accounts/page.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/aside-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/aside-link.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/billing/page.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/members/page.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/page.tsx -------------------------------------------------------------------------------- /apps/web/app/[teamSlug]/settings/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/[teamSlug]/settings/profile/page.tsx -------------------------------------------------------------------------------- /apps/web/app/api/accept-team-invitation/[token]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/accept-team-invitation/[token]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/lemonsqueezy/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/lemonsqueezy/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/oauth/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/oauth/github/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/oauth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/oauth/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/sign-in/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/sign-in/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/sign-out/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/sign-out/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/sign-up/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/sign-up/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /apps/web/app/api/verify-email/[token]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/api/verify-email/[token]/route.ts -------------------------------------------------------------------------------- /apps/web/app/client-providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/client-providers.tsx -------------------------------------------------------------------------------- /apps/web/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/error.tsx -------------------------------------------------------------------------------- /apps/web/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/global-error.tsx -------------------------------------------------------------------------------- /apps/web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/mdx.css -------------------------------------------------------------------------------- /apps/web/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/not-found.tsx -------------------------------------------------------------------------------- /apps/web/app/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/opengraph-image.tsx -------------------------------------------------------------------------------- /apps/web/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/robots.ts -------------------------------------------------------------------------------- /apps/web/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/sitemap.ts -------------------------------------------------------------------------------- /apps/web/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/app/styles.css -------------------------------------------------------------------------------- /apps/web/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/index.d.ts -------------------------------------------------------------------------------- /apps/web/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/jest.config.ts -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/next.config.js -------------------------------------------------------------------------------- /apps/web/pages/api/email-verification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/pages/api/email-verification.tsx -------------------------------------------------------------------------------- /apps/web/pages/api/team-invitation-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/pages/api/team-invitation-email.tsx -------------------------------------------------------------------------------- /apps/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/postcss.config.js -------------------------------------------------------------------------------- /apps/web/posts/blog-post-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/posts/blog-post-1.mdx -------------------------------------------------------------------------------- /apps/web/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/project.json -------------------------------------------------------------------------------- /apps/web/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web/public/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /apps/web/public/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /apps/web/public/images/apple-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/apple-icon-180.png -------------------------------------------------------------------------------- /apps/web/public/images/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/favicon-196.png -------------------------------------------------------------------------------- /apps/web/public/images/logo-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/logo-mark.svg -------------------------------------------------------------------------------- /apps/web/public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/logo.svg -------------------------------------------------------------------------------- /apps/web/public/images/manifest-icon-192.maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/manifest-icon-192.maskable.png -------------------------------------------------------------------------------- /apps/web/public/images/manifest-icon-512.maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/images/manifest-icon-512.maskable.png -------------------------------------------------------------------------------- /apps/web/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/public/site.webmanifest -------------------------------------------------------------------------------- /apps/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/tailwind.config.js -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/apps/web/tsconfig.spec.json -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "babelrcRoots": ["*"] 3 | } 4 | -------------------------------------------------------------------------------- /contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/contentlayer.config.ts -------------------------------------------------------------------------------- /drizzle.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/drizzle.config.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/authentication/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/.eslintrc.json -------------------------------------------------------------------------------- /libs/authentication/README.md: -------------------------------------------------------------------------------- 1 | # authentication 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/authentication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/project.json -------------------------------------------------------------------------------- /libs/authentication/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/src/index.ts -------------------------------------------------------------------------------- /libs/authentication/src/lib/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/src/lib/authentication.ts -------------------------------------------------------------------------------- /libs/authentication/src/lib/get-authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/src/lib/get-authentication.ts -------------------------------------------------------------------------------- /libs/authentication/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/tsconfig.json -------------------------------------------------------------------------------- /libs/authentication/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authentication/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/authorisation/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authorisation/.eslintrc.json -------------------------------------------------------------------------------- /libs/authorisation/README.md: -------------------------------------------------------------------------------- 1 | # authorisation 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/authorisation/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authorisation/project.json -------------------------------------------------------------------------------- /libs/authorisation/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib/authorisation"; 2 | -------------------------------------------------------------------------------- /libs/authorisation/src/lib/authorisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authorisation/src/lib/authorisation.ts -------------------------------------------------------------------------------- /libs/authorisation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authorisation/tsconfig.json -------------------------------------------------------------------------------- /libs/authorisation/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/authorisation/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/configuration/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/configuration/.eslintrc.json -------------------------------------------------------------------------------- /libs/configuration/README.md: -------------------------------------------------------------------------------- 1 | # configuration 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/configuration/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/configuration/project.json -------------------------------------------------------------------------------- /libs/configuration/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib/web"; 2 | -------------------------------------------------------------------------------- /libs/configuration/src/lib/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/configuration/src/lib/web.ts -------------------------------------------------------------------------------- /libs/configuration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/configuration/tsconfig.json -------------------------------------------------------------------------------- /libs/configuration/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/configuration/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/db/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/.eslintrc.json -------------------------------------------------------------------------------- /libs/db/README.md: -------------------------------------------------------------------------------- 1 | # db 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/db/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/project.json -------------------------------------------------------------------------------- /libs/db/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/src/index.ts -------------------------------------------------------------------------------- /libs/db/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/src/lib/db.ts -------------------------------------------------------------------------------- /libs/db/src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/src/lib/schema.ts -------------------------------------------------------------------------------- /libs/db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/tsconfig.json -------------------------------------------------------------------------------- /libs/db/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/db/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/feature/authentication/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/.babelrc -------------------------------------------------------------------------------- /libs/feature/authentication/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/.eslintrc.json -------------------------------------------------------------------------------- /libs/feature/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/README.md -------------------------------------------------------------------------------- /libs/feature/authentication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/project.json -------------------------------------------------------------------------------- /libs/feature/authentication/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/index.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/authentication-form/authentication-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/authentication-form/authentication-form.tsx -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/authentication-form/github-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/authentication-form/github-button.tsx -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/authentication-form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/authentication-form/schema.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/oauth/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/oauth/github.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-in/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-in/action.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-in/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-in/sign-in-form.tsx -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-in/sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-in/sign-in.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-out/sign-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-out/sign-out.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-up/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-up/action.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-up/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-up/sign-up-form.tsx -------------------------------------------------------------------------------- /libs/feature/authentication/src/lib/sign-up/sign-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/lib/sign-up/sign-up.ts -------------------------------------------------------------------------------- /libs/feature/authentication/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/src/server.ts -------------------------------------------------------------------------------- /libs/feature/authentication/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/tsconfig.json -------------------------------------------------------------------------------- /libs/feature/authentication/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/authentication/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/feature/billing/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/.babelrc -------------------------------------------------------------------------------- /libs/feature/billing/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/.eslintrc.json -------------------------------------------------------------------------------- /libs/feature/billing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/README.md -------------------------------------------------------------------------------- /libs/feature/billing/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/project.json -------------------------------------------------------------------------------- /libs/feature/billing/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/src/index.ts -------------------------------------------------------------------------------- /libs/feature/billing/src/lib/plan-card/plan-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/src/lib/plan-card/plan-card.tsx -------------------------------------------------------------------------------- /libs/feature/billing/src/lib/plan-form/plan-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/src/lib/plan-form/plan-form.tsx -------------------------------------------------------------------------------- /libs/feature/billing/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/src/server.ts -------------------------------------------------------------------------------- /libs/feature/billing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/tsconfig.json -------------------------------------------------------------------------------- /libs/feature/billing/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/billing/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/feature/dashboard/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/.babelrc -------------------------------------------------------------------------------- /libs/feature/dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/.eslintrc.json -------------------------------------------------------------------------------- /libs/feature/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/README.md -------------------------------------------------------------------------------- /libs/feature/dashboard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/project.json -------------------------------------------------------------------------------- /libs/feature/dashboard/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/src/index.ts -------------------------------------------------------------------------------- /libs/feature/dashboard/src/lib/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/src/lib/header/header.tsx -------------------------------------------------------------------------------- /libs/feature/dashboard/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/src/server.ts -------------------------------------------------------------------------------- /libs/feature/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/tsconfig.json -------------------------------------------------------------------------------- /libs/feature/dashboard/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/dashboard/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/feature/settings/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/.babelrc -------------------------------------------------------------------------------- /libs/feature/settings/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/.eslintrc.json -------------------------------------------------------------------------------- /libs/feature/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/README.md -------------------------------------------------------------------------------- /libs/feature/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/project.json -------------------------------------------------------------------------------- /libs/feature/settings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/index.ts -------------------------------------------------------------------------------- /libs/feature/settings/src/lib/add-connected-account/add-connected-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/lib/add-connected-account/add-connected-account.tsx -------------------------------------------------------------------------------- /libs/feature/settings/src/lib/connected-accounts/connected-accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/lib/connected-accounts/connected-accounts.tsx -------------------------------------------------------------------------------- /libs/feature/settings/src/lib/profile-form/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/lib/profile-form/container.tsx -------------------------------------------------------------------------------- /libs/feature/settings/src/lib/profile-form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/lib/profile-form/form.tsx -------------------------------------------------------------------------------- /libs/feature/settings/src/lib/remove-connected-account/remove-connected-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/lib/remove-connected-account/remove-connected-account.tsx -------------------------------------------------------------------------------- /libs/feature/settings/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/src/server.ts -------------------------------------------------------------------------------- /libs/feature/settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/tsconfig.json -------------------------------------------------------------------------------- /libs/feature/settings/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/settings/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/feature/team/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/.babelrc -------------------------------------------------------------------------------- /libs/feature/team/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/.eslintrc.json -------------------------------------------------------------------------------- /libs/feature/team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/README.md -------------------------------------------------------------------------------- /libs/feature/team/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/project.json -------------------------------------------------------------------------------- /libs/feature/team/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/index.ts -------------------------------------------------------------------------------- /libs/feature/team/src/lib/invite-members-form/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/invite-members-form/container.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/invite-members-form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/invite-members-form/form.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/invite-table/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/invite-table/container.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/invite-table/row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/invite-table/row-actions.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/invite-table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/invite-table/table.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-form/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-form/container.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-form/form.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-switcher/team-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-switcher/team-switcher.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-table/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-table/container.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-table/row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-table/row-actions.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-table/table.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/lib/team-tabs/team-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/lib/team-tabs/team-tabs.tsx -------------------------------------------------------------------------------- /libs/feature/team/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/src/server.ts -------------------------------------------------------------------------------- /libs/feature/team/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/tsconfig.json -------------------------------------------------------------------------------- /libs/feature/team/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/feature/team/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui/blog/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/.babelrc -------------------------------------------------------------------------------- /libs/ui/blog/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/.eslintrc.json -------------------------------------------------------------------------------- /libs/ui/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/README.md -------------------------------------------------------------------------------- /libs/ui/blog/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/project.json -------------------------------------------------------------------------------- /libs/ui/blog/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/src/index.ts -------------------------------------------------------------------------------- /libs/ui/blog/src/lib/article-card/article-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/src/lib/article-card/article-card.tsx -------------------------------------------------------------------------------- /libs/ui/blog/src/lib/mdx-components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/src/lib/mdx-components/mdx-components.tsx -------------------------------------------------------------------------------- /libs/ui/blog/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/src/server.ts -------------------------------------------------------------------------------- /libs/ui/blog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/tsconfig.json -------------------------------------------------------------------------------- /libs/ui/blog/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/blog/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui/web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/.babelrc -------------------------------------------------------------------------------- /libs/ui/web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/.eslintrc.json -------------------------------------------------------------------------------- /libs/ui/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/README.md -------------------------------------------------------------------------------- /libs/ui/web/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/project.json -------------------------------------------------------------------------------- /libs/ui/web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/index.ts -------------------------------------------------------------------------------- /libs/ui/web/src/lib/accordion/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/accordion/accordion.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/alert-dialog/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/alert-dialog/alert-dialog.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/alert/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/alert/alert.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/avatar/avatar.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/badge/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/badge/badge.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/button/button.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/calendar/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/calendar/calendar.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/card/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/card/card.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/command/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/command/command.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/data-table/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/data-table/data-table-pagination.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/data-table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/data-table/data-table.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/date-range-picker/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/date-range-picker/date-range-picker.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/dialog/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/dialog/dialog.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/dropdown-menu/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/dropdown-menu/dropdown-menu.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/footer/footer.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/form/form.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/header/header.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/input/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/input/input.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/intercept-dialog/intercept-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/intercept-dialog/intercept-dialog.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/label/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/label/label.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/logo/logo.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/popover/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/popover/popover.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/radio-group/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/radio-group/radio-group.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/select/select.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/sign-out-button/sign-out-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/sign-out-button/sign-out-button.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/skeleton/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/skeleton/skeleton.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/table/table.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/tabs/tabs.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/theme-provider/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/theme-provider/theme-provider.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/toaster/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/toaster/toaster.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/lib/user-button/user-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/lib/user-button/user-button.tsx -------------------------------------------------------------------------------- /libs/ui/web/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/src/server.ts -------------------------------------------------------------------------------- /libs/ui/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/tsconfig.json -------------------------------------------------------------------------------- /libs/ui/web/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/ui/web/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/email/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/.babelrc -------------------------------------------------------------------------------- /libs/utility/email/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/README.md -------------------------------------------------------------------------------- /libs/utility/email/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/project.json -------------------------------------------------------------------------------- /libs/utility/email/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Button.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Footer.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Header.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Heading.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Link.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/Text.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/base-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/base-layout.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/components/index.ts -------------------------------------------------------------------------------- /libs/utility/email/src/emails/team-invitation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/emails/team-invitation.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/emails/verify-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/emails/verify-email.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/index.ts -------------------------------------------------------------------------------- /libs/utility/email/src/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/mailing.config.json -------------------------------------------------------------------------------- /libs/utility/email/src/previews/team-invitation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/previews/team-invitation.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/previews/verify-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/previews/verify-email.tsx -------------------------------------------------------------------------------- /libs/utility/email/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/src/theme.ts -------------------------------------------------------------------------------- /libs/utility/email/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/email/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/email/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/payment/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/payment/README.md: -------------------------------------------------------------------------------- 1 | # utility-payment 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/utility/payment/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/project.json -------------------------------------------------------------------------------- /libs/utility/payment/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/index.ts -------------------------------------------------------------------------------- /libs/utility/payment/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/lib/client.ts -------------------------------------------------------------------------------- /libs/utility/payment/src/lib/create-checkout/create-checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/lib/create-checkout/create-checkout.ts -------------------------------------------------------------------------------- /libs/utility/payment/src/lib/get-plans/get-plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/lib/get-plans/get-plans.ts -------------------------------------------------------------------------------- /libs/utility/payment/src/lib/get-products/get-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/lib/get-products/get-products.ts -------------------------------------------------------------------------------- /libs/utility/payment/src/lib/get-variants/get-variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/src/lib/get-variants/get-variants.ts -------------------------------------------------------------------------------- /libs/utility/payment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/payment/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/payment/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/schema/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/schema/README.md: -------------------------------------------------------------------------------- 1 | # utility-schema 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/utility/schema/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/project.json -------------------------------------------------------------------------------- /libs/utility/schema/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib/team"; 2 | -------------------------------------------------------------------------------- /libs/utility/schema/src/lib/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/src/lib/team/index.ts -------------------------------------------------------------------------------- /libs/utility/schema/src/lib/team/invite-members-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/src/lib/team/invite-members-schema.ts -------------------------------------------------------------------------------- /libs/utility/schema/src/lib/team/update-team-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/src/lib/team/update-team-schema.ts -------------------------------------------------------------------------------- /libs/utility/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/schema/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/schema/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/shared/README.md: -------------------------------------------------------------------------------- 1 | # utility-shared 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/utility/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/project.json -------------------------------------------------------------------------------- /libs/utility/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/src/index.ts -------------------------------------------------------------------------------- /libs/utility/shared/src/lib/classnames/classnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/src/lib/classnames/classnames.ts -------------------------------------------------------------------------------- /libs/utility/shared/src/lib/format-date/format-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/src/lib/format-date/format-date.ts -------------------------------------------------------------------------------- /libs/utility/shared/src/lib/generate-token/generate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/src/lib/generate-token/generate-token.ts -------------------------------------------------------------------------------- /libs/utility/shared/src/lib/get-first-part-of-email/get-first-part-of-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/src/lib/get-first-part-of-email/get-first-part-of-email.ts -------------------------------------------------------------------------------- /libs/utility/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/.babelrc -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/README.md -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/project.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib/client"; 2 | -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/src/lib/client.ts -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/src/lib/createHydrateClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/src/lib/createHydrateClient.tsx -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/src/lib/createTrpcNextBeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/src/lib/createTrpcNextBeta.tsx -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-client/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-client/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/.babelrc -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/README.md -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/project.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib/server"; 2 | -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/src/lib/createTrpcNextLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/src/lib/createTrpcNextLayout.tsx -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/src/lib/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/src/lib/local-storage.ts -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/src/lib/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/src/lib/server.ts -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/trpc-next-server/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc-next-server/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utility/trpc/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/.eslintrc.json -------------------------------------------------------------------------------- /libs/utility/trpc/README.md: -------------------------------------------------------------------------------- 1 | # utility-trpc 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/utility/trpc/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/project.json -------------------------------------------------------------------------------- /libs/utility/trpc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/index.ts -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/createContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/createContext.ts -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/createRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/createRouter.ts -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/_app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/_app.ts -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/billing-router/billing-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/billing-router/billing-router.ts -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/invitation-router/invitation-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/invitation-router/invitation-router.tsx -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/member-router/member-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/member-router/member-router.tsx -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/team-router/team-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/team-router/team-router.tsx -------------------------------------------------------------------------------- /libs/utility/trpc/src/lib/routers/user-router/user-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/src/lib/routers/user-router/user-router.tsx -------------------------------------------------------------------------------- /libs/utility/trpc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/tsconfig.json -------------------------------------------------------------------------------- /libs/utility/trpc/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/libs/utility/trpc/tsconfig.lib.json -------------------------------------------------------------------------------- /mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/mailing.config.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/package.json -------------------------------------------------------------------------------- /tools/locales-sync.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/tools/locales-sync.config.js -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /types/lucia.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/types/lucia.d.ts -------------------------------------------------------------------------------- /types/next-intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amosbastian/template/HEAD/types/next-intl.d.ts --------------------------------------------------------------------------------