├── .commitlintrc.json ├── .editorconfig ├── .eslintignore ├── .github └── workflows │ ├── accessibility-alt-text.yml │ └── tests.yml ├── .gitignore ├── .lintstagedrc.json ├── .npmrc ├── .vscode └── extensions.json ├── README.md ├── apps ├── api │ ├── jest-integration-config.js │ ├── jest-unit-config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── .gitkeep │ ├── tests │ │ └── .gitkeep │ ├── tsconfig-build.json │ └── tsconfig.json └── web │ ├── jest-integration-config.js │ ├── jest-unit-config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ └── .gitkeep │ ├── tests │ └── example.spec.ts │ └── tsconfig.json ├── biome.json ├── hooks ├── commit-msg ├── pre-commit └── pre-push ├── package.json ├── packages ├── jestconfig │ ├── jest-web-config.js │ ├── jest.config.js │ └── package.json └── tsconfig │ ├── api.json │ ├── base.json │ ├── package.json │ └── web.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── turbo.json /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/accessibility-alt-text.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.github/workflows/accessibility-alt-text.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers = true 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/README.md -------------------------------------------------------------------------------- /apps/api/jest-integration-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/jest-integration-config.js -------------------------------------------------------------------------------- /apps/api/jest-unit-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/jest-unit-config.js -------------------------------------------------------------------------------- /apps/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/jest.config.js -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/tsconfig-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/tsconfig-build.json -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/web/jest-integration-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/jest-integration-config.js -------------------------------------------------------------------------------- /apps/web/jest-unit-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/jest-unit-config.js -------------------------------------------------------------------------------- /apps/web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/jest.config.js -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web/tests/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/tests/example.spec.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/biome.json -------------------------------------------------------------------------------- /hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/hooks/commit-msg -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/hooks/pre-push -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/package.json -------------------------------------------------------------------------------- /packages/jestconfig/jest-web-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/jestconfig/jest-web-config.js -------------------------------------------------------------------------------- /packages/jestconfig/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/jestconfig/jest.config.js -------------------------------------------------------------------------------- /packages/jestconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/jestconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/tsconfig/api.json -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/packages/tsconfig/web.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senegalha/template-monorepo-typescript/HEAD/turbo.json --------------------------------------------------------------------------------