├── .docker ├── api.Dockerfile ├── base.Dockerfile ├── client.Dockerfile ├── documentation.Dockerfile ├── elements.Dockerfile ├── envoy.Dockerfile ├── runner-ci-slim.Dockerfile └── runner-ci.Dockerfile ├── .dockerignore ├── .editorconfig ├── .electron ├── electron-builder.client.yml ├── electron.preload.js ├── electron.server.js └── index.js ├── .envoy └── envoy.yml ├── .eslint ├── .eslintrc.module-boundaries.backend.mjs ├── .eslintrc.module-boundaries.client.mjs ├── .eslintrc.module-boundaries.shared.mjs └── .eslintrc.module-boundaries.workspace.mjs ├── .eslintrc.module-boundaries.mjs ├── .eslintrc.naming-convention.mjs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ ├── MAINTENANCE-REQUEST.yml │ └── config.yml ├── actions │ ├── check-changes │ │ └── action.yml │ ├── check-origin │ │ └── action.yml │ ├── check-projects │ │ └── action.yml │ ├── configure-kernel │ │ └── action.yml │ ├── configure-yarn │ │ └── action.yml │ ├── disable-session-history │ │ └── action.yml │ ├── dist-artifact-download │ │ └── action.yml │ ├── dist-artifact-upload │ │ └── action.yml │ ├── npm-publish │ │ └── action.yml │ ├── setup-environment │ │ └── action.yml │ ├── validate-codeowner │ │ └── action.yml │ ├── validate-contribution-size │ │ └── action.yml │ └── workspace-cache │ │ └── action.yml └── workflows │ ├── build-docker.yml │ ├── codeql-analysis.yml │ ├── deploy-apps.yml │ ├── publish-packages.yml │ ├── test-e2e.yml │ ├── trunk.yml │ ├── validate-codeowners.yml │ └── validate-pr.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .ncurc.json ├── .npmrc ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .protolint.yaml ├── .stylelintrc ├── .vscode ├── extensions.json ├── recommended-settings.json └── settings.json ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── UNIT_COVERAGE.md ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── capacitor.config.json │ │ ├── java │ │ │ └── app │ │ │ │ └── web │ │ │ │ └── nx_ng_starter │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── splash.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── config.xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor.settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── variables.gradle ├── apps ├── api │ ├── .firebaserc │ ├── eslint.config.mjs │ ├── firebase.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── app │ │ │ └── api.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.firebase.ts │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ ├── vitest.config.mts │ └── webpack.config.js ├── client-e2e │ ├── cypress-reporter-options.json │ ├── cypress.config.js │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── testing-credentials.json │ │ ├── integration │ │ │ └── app.cy.ts │ │ ├── plugins │ │ │ └── index.ts │ │ └── support │ │ │ └── index.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── client │ ├── .firebaserc │ ├── eslint.config.mjs │ ├── firebase.json │ ├── ngsw-config.json │ ├── project.json │ ├── proxy.conf.json │ ├── src │ │ ├── app │ │ │ ├── client-routing.module.ts │ │ │ ├── client.module.ts │ │ │ └── components │ │ │ │ ├── root.component.html │ │ │ │ ├── root.component.scss │ │ │ │ ├── root.component.spec.ts │ │ │ │ └── root.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.config.ts │ │ │ ├── environment.prod.ts │ │ │ ├── environment.ts │ │ │ └── sentry.config.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.webmanifest │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── documentation-e2e │ ├── cypress-reporter-options.json │ ├── cypress.config.js │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── testing-credentials.json │ │ ├── integration │ │ │ └── app.cy.ts │ │ ├── plugins │ │ │ └── index.ts │ │ └── support │ │ │ └── index.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── documentation │ ├── .firebaserc │ ├── eslint.config.mjs │ ├── firebase.json │ ├── ngsw-config.json │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── componenets │ │ │ │ ├── md-reference-tree │ │ │ │ │ ├── md-reference-tree.component.html │ │ │ │ │ ├── md-reference-tree.component.scss │ │ │ │ │ ├── md-reference-tree.component.spec.ts │ │ │ │ │ └── md-reference-tree.component.ts │ │ │ │ ├── md-reference │ │ │ │ │ ├── md-reference.component.html │ │ │ │ │ ├── md-reference.component.scss │ │ │ │ │ ├── md-reference.component.spec.ts │ │ │ │ │ └── md-reference.component.ts │ │ │ │ └── root │ │ │ │ │ ├── root.component.html │ │ │ │ │ ├── root.component.scss │ │ │ │ │ ├── root.component.spec.ts │ │ │ │ │ └── root.component.ts │ │ │ ├── doc-routing.module.ts │ │ │ ├── doc.module.ts │ │ │ ├── interfaces │ │ │ │ └── environment.interface.ts │ │ │ └── modules │ │ │ │ ├── .gitkeep │ │ │ │ └── md-files │ │ │ │ ├── md-files.actions.ts │ │ │ │ ├── md-files.interface.ts │ │ │ │ ├── md-files.module.ts │ │ │ │ ├── md-files.reducer.ts │ │ │ │ └── md-files.selectors.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.config.ts │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.webmanifest │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test-setup.ts │ │ └── testing │ │ │ └── testing-providers.mock.ts │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── elements-e2e │ ├── cypress-reporter-options.json │ ├── cypress.config.js │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── testing-credentials.json │ │ ├── integration │ │ │ └── app.cy.ts │ │ ├── plugins │ │ │ └── index.ts │ │ └── support │ │ │ └── index.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── elements │ ├── .firebaserc │ ├── eslint.config.mjs │ ├── firebase.json │ ├── project.json │ ├── proxy.conf.json │ ├── src │ │ ├── app │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.config.ts │ │ │ ├── environment.prod.ts │ │ │ ├── environment.ts │ │ │ └── sentry.config.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts └── server-prod │ ├── eslint.config.mjs │ ├── package.json │ ├── project.json │ ├── src │ ├── app │ │ └── server-prod.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ ├── vitest.config.mts │ └── webpack.config.js ├── babel.config.json ├── capacitor.config.json ├── commitlint.config.js ├── commitlint.plugin.js ├── eslint.config.mjs ├── functions ├── package-lock.json └── package.json ├── libs ├── backend-auth │ ├── .babelrc │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── backend-auth.module.ts │ │ │ ├── controllers │ │ │ ├── auth.controller.spec.ts │ │ │ └── auth.controller.ts │ │ │ ├── interfaces │ │ │ └── auth.interface.ts │ │ │ └── services │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── backend-diagnostics │ ├── .babelrc │ ├── LICENSE │ ├── README.md │ ├── eslint.config.mjs │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controllers │ │ │ ├── diagnostics.controller.spec.ts │ │ │ └── diagnostics.controller.ts │ │ │ ├── diagnostics.module.ts │ │ │ ├── gateway │ │ │ ├── diagnostics.gateway.spec.ts │ │ │ └── diagnostics.gateway.ts │ │ │ ├── interfaces │ │ │ └── diagnostics.interface.ts │ │ │ └── services │ │ │ ├── diagnostics.service.spec.ts │ │ │ └── diagnostics.service.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── backend-gql │ ├── .babelrc │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── schema.gql │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── backend-gql.module.ts │ │ │ └── matcomp │ │ │ ├── guards │ │ │ ├── matcomp.guard.spec.ts │ │ │ └── matcomp.guard.ts │ │ │ ├── interfaces │ │ │ └── matcomp.interface.ts │ │ │ ├── matcomp.module.ts │ │ │ ├── resolvers │ │ │ ├── matcomp.resolver.spec.ts │ │ │ └── matcomp.resolver.ts │ │ │ └── services │ │ │ ├── matcomp.service.spec.ts │ │ │ └── matcomp.service.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── backend-grpc │ ├── .babelrc │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── backend-grpc.module.ts │ │ │ ├── controller │ │ │ ├── grpc.controller.spec.ts │ │ │ └── grpc.controller.ts │ │ │ └── grpc-client.options.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── backend-interfaces │ ├── README.md │ ├── codegen.yml │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── auth │ │ │ ├── index.ts │ │ │ ├── user-login-credentials.spec.ts │ │ │ ├── user-login-credentials.ts │ │ │ ├── user-logout-credentials.spec.ts │ │ │ ├── user-logout-credentials.ts │ │ │ ├── user-name.spec.ts │ │ │ ├── user-name.ts │ │ │ ├── user.interface.ts │ │ │ ├── user.spec.ts │ │ │ └── user.ts │ │ │ ├── diagnostics │ │ │ ├── index.ts │ │ │ ├── message.spec.ts │ │ │ └── message.ts │ │ │ ├── environment │ │ │ ├── api-environment.spec.ts │ │ │ ├── api-environment.ts │ │ │ └── index.ts │ │ │ ├── graphql │ │ │ ├── index.ts │ │ │ ├── matcomp │ │ │ │ ├── dto │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── matcomp.args.spec.ts │ │ │ │ │ ├── matcomp.args.ts │ │ │ │ │ ├── new-matcomp-input.dto.spec.ts │ │ │ │ │ └── new-matcomp-input.dto.ts │ │ │ │ ├── index.ts │ │ │ │ ├── matcomp-input.interface.spec.ts │ │ │ │ ├── matcomp-input.interface.ts │ │ │ │ ├── matcomp-subscription.interface.spec.ts │ │ │ │ ├── matcomp-subscription.interface.ts │ │ │ │ ├── matcomp.interface.spec.ts │ │ │ │ ├── matcomp.interface.ts │ │ │ │ └── model │ │ │ │ │ ├── matcomp.model.spec.ts │ │ │ │ │ └── matcomp.model.ts │ │ │ ├── scalars │ │ │ │ ├── date │ │ │ │ │ ├── date.scalar.spec.ts │ │ │ │ │ └── date.scalar.ts │ │ │ │ └── index.ts │ │ │ └── upload │ │ │ │ ├── dto │ │ │ │ ├── file-upload-input.dto.spec.ts │ │ │ │ └── file-upload-input.dto.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ ├── class.util.spec.ts │ │ │ └── class.util.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── backend-logger │ ├── .babelrc │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── backend-logger.module.ts │ │ │ └── middleware │ │ │ ├── logger.middleware.spec.ts │ │ │ └── logger.middleware.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-chatbot │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── chatbot-routing.module.ts │ │ │ ├── chatbot-widget-routing.module.ts │ │ │ ├── chatbot-widget.module.ts │ │ │ ├── chatbot.module.ts │ │ │ └── components │ │ │ │ ├── chatbot-root │ │ │ │ ├── chatbot-root.component.html │ │ │ │ ├── chatbot-root.component.scss │ │ │ │ ├── chatbot-root.component.spec.ts │ │ │ │ └── chatbot-root.component.ts │ │ │ │ └── chatbot-widget-root │ │ │ │ ├── chatbot-widget-root.component.html │ │ │ │ ├── chatbot-widget-root.component.scss │ │ │ │ ├── chatbot-widget-root.component.spec.ts │ │ │ │ └── chatbot-widget-root.component.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-core-components │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── content │ │ │ │ │ ├── content.component.html │ │ │ │ │ ├── content.component.scss │ │ │ │ │ ├── content.component.spec.ts │ │ │ │ │ └── content.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.scss │ │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── navigator │ │ │ │ │ ├── navigator.component.html │ │ │ │ │ ├── navigator.component.scss │ │ │ │ │ ├── navigator.component.spec.ts │ │ │ │ │ └── navigator.component.ts │ │ │ │ ├── search │ │ │ │ │ ├── search.component.html │ │ │ │ │ ├── search.component.scss │ │ │ │ │ ├── search.component.spec.ts │ │ │ │ │ └── search.component.ts │ │ │ │ ├── theme-toggle │ │ │ │ │ ├── theme-toggle.component.html │ │ │ │ │ ├── theme-toggle.component.scss │ │ │ │ │ ├── theme-toggle.component.spec.ts │ │ │ │ │ └── theme-toggle.component.ts │ │ │ │ ├── toolbar │ │ │ │ │ ├── toolbar.component.html │ │ │ │ │ ├── toolbar.component.scss │ │ │ │ │ ├── toolbar.component.spec.ts │ │ │ │ │ └── toolbar.component.ts │ │ │ │ └── tooltip │ │ │ │ │ ├── tooltip.component.html │ │ │ │ │ ├── tooltip.component.scss │ │ │ │ │ ├── tooltip.component.ts │ │ │ │ │ ├── tooltip.directive.spec.ts │ │ │ │ │ ├── tooltip.directive.ts │ │ │ │ │ └── tooltip.interface.ts │ │ │ └── core-components.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-core │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── icons │ │ │ │ │ ├── icon-128x128.png │ │ │ │ │ ├── icon-144x144.png │ │ │ │ │ ├── icon-152x152.png │ │ │ │ │ ├── icon-192x192.png │ │ │ │ │ ├── icon-384x384.png │ │ │ │ │ ├── icon-512x512.png │ │ │ │ │ ├── icon-72x72.png │ │ │ │ │ └── icon-96x96.png │ │ │ │ └── svg │ │ │ │ │ ├── logo-light.svg │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── recycling.svg │ │ │ ├── core.module.spec.ts │ │ │ ├── core.module.ts │ │ │ ├── providers │ │ │ │ ├── core-module.providers.spec.ts │ │ │ │ └── core-module.providers.ts │ │ │ └── styles │ │ │ │ ├── partials │ │ │ │ └── _flex.scss │ │ │ │ ├── styles.scss │ │ │ │ └── theming │ │ │ │ ├── theming-common.scss │ │ │ │ └── theming-extension.scss │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-d3-charts │ ├── LICENSE │ ├── README.md │ ├── eslint.config.mjs │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── _base │ │ │ │ │ └── chart.base.ts │ │ │ │ ├── bar-chart │ │ │ │ │ ├── bar-chart.component.html │ │ │ │ │ ├── bar-chart.component.scss │ │ │ │ │ ├── bar-chart.component.spec.ts │ │ │ │ │ └── bar-chart.component.ts │ │ │ │ ├── chart-examples-bar │ │ │ │ │ ├── chart-examples-bar.component.html │ │ │ │ │ ├── chart-examples-bar.component.scss │ │ │ │ │ ├── chart-examples-bar.component.spec.ts │ │ │ │ │ └── chart-examples-bar.component.ts │ │ │ │ ├── chart-examples-force-directed │ │ │ │ │ ├── chart-examples-force-directed.component.html │ │ │ │ │ ├── chart-examples-force-directed.component.scss │ │ │ │ │ ├── chart-examples-force-directed.component.spec.ts │ │ │ │ │ └── chart-examples-force-directed.component.ts │ │ │ │ ├── chart-examples-gauge │ │ │ │ │ ├── chart-examples-gauge.component.html │ │ │ │ │ ├── chart-examples-gauge.component.scss │ │ │ │ │ ├── chart-examples-gauge.component.spec.ts │ │ │ │ │ └── chart-examples-gauge.component.ts │ │ │ │ ├── chart-examples-line │ │ │ │ │ ├── chart-examples-line.component.html │ │ │ │ │ ├── chart-examples-line.component.scss │ │ │ │ │ ├── chart-examples-line.component.spec.ts │ │ │ │ │ └── chart-examples-line.component.ts │ │ │ │ ├── chart-examples-pie │ │ │ │ │ ├── chart-examples-pie.component.html │ │ │ │ │ ├── chart-examples-pie.component.scss │ │ │ │ │ ├── chart-examples-pie.component.spec.ts │ │ │ │ │ └── chart-examples-pie.component.ts │ │ │ │ ├── chart-examples-radar │ │ │ │ │ ├── chart-examples-radar.component.html │ │ │ │ │ ├── chart-examples-radar.component.scss │ │ │ │ │ ├── chart-examples-radar.component.spec.ts │ │ │ │ │ └── chart-examples-radar.component.ts │ │ │ │ ├── chart-examples │ │ │ │ │ ├── chart-examples.component.html │ │ │ │ │ ├── chart-examples.component.scss │ │ │ │ │ ├── chart-examples.component.spec.ts │ │ │ │ │ └── chart-examples.component.ts │ │ │ │ ├── force-directed-chart │ │ │ │ │ ├── force-directed-chart.component.html │ │ │ │ │ ├── force-directed-chart.component.scss │ │ │ │ │ ├── force-directed-chart.component.spec.ts │ │ │ │ │ └── force-directed-chart.component.ts │ │ │ │ ├── gauge-chart │ │ │ │ │ ├── gauge-chart.component.html │ │ │ │ │ ├── gauge-chart.component.scss │ │ │ │ │ ├── gauge-chart.component.spec.ts │ │ │ │ │ └── gauge-chart.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── line-chart │ │ │ │ │ ├── line-chart.component.html │ │ │ │ │ ├── line-chart.component.scss │ │ │ │ │ ├── line-chart.component.spec.ts │ │ │ │ │ └── line-chart.component.ts │ │ │ │ ├── pie-chart │ │ │ │ │ ├── pie-chart.component.html │ │ │ │ │ ├── pie-chart.component.scss │ │ │ │ │ ├── pie-chart.component.spec.ts │ │ │ │ │ └── pie-chart.component.ts │ │ │ │ └── radar-chart │ │ │ │ │ ├── radar-chart.component.html │ │ │ │ │ ├── radar-chart.component.scss │ │ │ │ │ ├── radar-chart.component.spec.ts │ │ │ │ │ └── radar-chart.component.ts │ │ │ ├── d3-charts.module.ts │ │ │ ├── interfaces │ │ │ │ ├── bar-chart.interface.ts │ │ │ │ ├── chart-component.interface.ts │ │ │ │ ├── force-directed-chart.interface.ts │ │ │ │ ├── gauge-chart.interface.ts │ │ │ │ ├── index.ts │ │ │ │ ├── line-chart.interface.ts │ │ │ │ ├── pie-chart.interface.ts │ │ │ │ └── radar-chart.interface.ts │ │ │ ├── providers │ │ │ │ └── d3-chart-factory.provider.ts │ │ │ ├── testing │ │ │ │ ├── d3.mock.spec.ts │ │ │ │ └── d3.mock.ts │ │ │ └── util │ │ │ │ ├── bar-chart.util.spec.ts │ │ │ │ ├── bar-chart.util.ts │ │ │ │ ├── configuration.util.ts │ │ │ │ ├── force-directed-chart.util.spec.ts │ │ │ │ ├── force-directed-chart.util.ts │ │ │ │ ├── gauge-chart.util.spec.ts │ │ │ │ ├── gauge-chart.util.ts │ │ │ │ ├── index.ts │ │ │ │ ├── line-chart.util.spec.ts │ │ │ │ ├── line-chart.util.ts │ │ │ │ ├── pie-chart.util.spec.ts │ │ │ │ ├── pie-chart.util.ts │ │ │ │ ├── radar-chart.util.spec.ts │ │ │ │ └── radar-chart.util.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-dashboards │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── _base │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── table │ │ │ │ │ │ ├── _table.base.scss │ │ │ │ │ │ └── table.base.ts │ │ │ │ ├── dashboards │ │ │ │ │ ├── dashboards.component.html │ │ │ │ │ ├── dashboards.component.scss │ │ │ │ │ ├── dashboards.component.spec.ts │ │ │ │ │ └── dashboards.component.ts │ │ │ │ └── table │ │ │ │ │ ├── table.component.html │ │ │ │ │ ├── table.component.scss │ │ │ │ │ ├── table.component.spec.ts │ │ │ │ │ └── table.component.ts │ │ │ ├── dashboards-routing.module.ts │ │ │ ├── dashboards.module.ts │ │ │ ├── interfaces │ │ │ │ └── table-config.interface.ts │ │ │ └── modules │ │ │ │ ├── index.ts │ │ │ │ └── table-controls │ │ │ │ ├── table-column-settings │ │ │ │ ├── table-column-settings.component.html │ │ │ │ ├── table-column-settings.component.scss │ │ │ │ ├── table-column-settings.component.spec.ts │ │ │ │ └── table-column-settings.component.ts │ │ │ │ ├── table-controls.module.ts │ │ │ │ └── table-row-menu │ │ │ │ ├── table-row-menu.component.html │ │ │ │ ├── table-row-menu.component.scss │ │ │ │ ├── table-row-menu.component.spec.ts │ │ │ │ └── table-row-menu.component.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-diagnostics │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── home │ │ │ │ │ ├── diagnostics-home.component.html │ │ │ │ │ ├── diagnostics-home.component.scss │ │ │ │ │ ├── diagnostics-home.component.spec.ts │ │ │ │ │ ├── diagnostics-home.component.ts │ │ │ │ │ └── page │ │ │ │ │ │ ├── diagnostics-home-page.component.html │ │ │ │ │ │ ├── diagnostics-home-page.component.scss │ │ │ │ │ │ ├── diagnostics-home-page.component.spec.ts │ │ │ │ │ │ └── diagnostics-home-page.component.ts │ │ │ │ ├── index │ │ │ │ │ ├── diagnostics-index.component.html │ │ │ │ │ ├── diagnostics-index.component.scss │ │ │ │ │ ├── diagnostics-index.component.spec.ts │ │ │ │ │ └── diagnostics-index.component.ts │ │ │ │ └── info │ │ │ │ │ ├── diagnostics-info.component.html │ │ │ │ │ ├── diagnostics-info.component.scss │ │ │ │ │ ├── diagnostics-info.component.spec.ts │ │ │ │ │ ├── diagnostics-info.component.ts │ │ │ │ │ └── page │ │ │ │ │ ├── diagnostics-info-page.component.html │ │ │ │ │ ├── diagnostics-info-page.component.scss │ │ │ │ │ ├── diagnostics-info-page.component.spec.ts │ │ │ │ │ └── diagnostics-info-page.component.ts │ │ │ ├── diagnostics-routing.module.ts │ │ │ └── diagnostics.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-directives │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── autoscroll │ │ │ │ ├── autoscroll.directive.spec.ts │ │ │ │ └── autoscroll.directive.ts │ │ │ ├── directives.module.ts │ │ │ └── full-screen │ │ │ │ ├── full-screen.directive.spec.ts │ │ │ │ └── full-screen.directive.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-elements │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── elements.module.ts │ │ │ └── services │ │ │ │ ├── elements.service.spec.ts │ │ │ │ └── elements.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-gql │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── generated │ │ │ │ ├── .gitkeep │ │ │ │ ├── gql.interface.ts │ │ │ │ └── index.ts │ │ │ ├── gql.module.ts │ │ │ ├── graphql │ │ │ │ ├── index.ts │ │ │ │ └── matcomp │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── matcomp.mutations.ts │ │ │ │ │ └── matcomp.queries.ts │ │ │ └── services │ │ │ │ └── gql │ │ │ │ ├── gql.service.spec.ts │ │ │ │ └── gql.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-guided-tour │ ├── LICENSE │ ├── README.md │ ├── eslint.config.mjs │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── guided-tour-example │ │ │ │ │ ├── guided-tour-example.component.html │ │ │ │ │ ├── guided-tour-example.component.scss │ │ │ │ │ ├── guided-tour-example.component.spec.ts │ │ │ │ │ └── guided-tour-example.component.ts │ │ │ │ ├── guided-tour │ │ │ │ │ ├── guided-tour.component.html │ │ │ │ │ ├── guided-tour.component.scss │ │ │ │ │ ├── guided-tour.component.spec.ts │ │ │ │ │ ├── guided-tour.component.ts │ │ │ │ │ ├── guided-tour.directive.ts │ │ │ │ │ └── guided-tour.interface.ts │ │ │ │ └── index.ts │ │ │ ├── guided-tour-example-routing.module.ts │ │ │ ├── guided-tour-example.module.ts │ │ │ ├── guided-tour.module.ts │ │ │ ├── providers │ │ │ │ └── overlay.provider.ts │ │ │ └── services │ │ │ │ ├── guided-tour │ │ │ │ └── guided-tour.service.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-material │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── configs │ │ │ │ ├── mat-date │ │ │ │ │ ├── mat-date.config.spec.ts │ │ │ │ │ └── mat-date.config.ts │ │ │ │ └── mat-tooltip │ │ │ │ │ ├── mat-tooltip.config.spec.ts │ │ │ │ │ └── mat-tooltip.config.ts │ │ │ ├── material.module.ts │ │ │ └── providers │ │ │ │ ├── material-module.providers.spec.ts │ │ │ │ └── material-module.providers.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-pwa-offline │ ├── LICENSE │ ├── README.md │ ├── eslint.config.mjs │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ └── pwa-offline │ │ │ │ │ ├── pwa-offline.component.html │ │ │ │ │ ├── pwa-offline.component.scss │ │ │ │ │ ├── pwa-offline.component.spec.ts │ │ │ │ │ └── pwa-offline.component.ts │ │ │ ├── interceptors │ │ │ │ ├── pwa-offline.interceptor.spec.ts │ │ │ │ └── pwa-offline.interceptor.ts │ │ │ ├── providers │ │ │ │ ├── navigator.provider.spec.ts │ │ │ │ └── navigator.provider.ts │ │ │ ├── pwa-offline-routing.module.ts │ │ │ └── pwa-offline.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-service-worker │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── services │ │ │ │ ├── service-worker.service.spec.ts │ │ │ │ └── service-worker.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-sidebar │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ └── sidebar-root │ │ │ │ │ ├── sidebar-root.component.html │ │ │ │ │ ├── sidebar-root.component.scss │ │ │ │ │ ├── sidebar-root.component.spec.ts │ │ │ │ │ └── sidebar-root.component.ts │ │ │ ├── sidebar-routing.module.ts │ │ │ └── sidebar.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-chatbot │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── chatbot.actions.ts │ │ │ ├── chatbot.effects.spec.ts │ │ │ ├── chatbot.effects.ts │ │ │ ├── chatbot.interface.ts │ │ │ ├── chatbot.module.ts │ │ │ ├── chatbot.reducer.spec.ts │ │ │ ├── chatbot.reducer.ts │ │ │ └── chatbot.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-diagnostics │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── diagnostics.actions.ts │ │ │ ├── diagnostics.effects.spec.ts │ │ │ ├── diagnostics.effects.ts │ │ │ ├── diagnostics.interface.ts │ │ │ ├── diagnostics.module.ts │ │ │ ├── diagnostics.reducer.spec.ts │ │ │ ├── diagnostics.reducer.ts │ │ │ ├── diagnostics.selectors.ts │ │ │ └── services │ │ │ │ ├── static-data │ │ │ │ ├── static-data-api.service.spec.ts │ │ │ │ └── static-data-api.service.ts │ │ │ │ └── websocket │ │ │ │ ├── websocket-api.service.spec.ts │ │ │ │ └── websocket-api.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-feature-access │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── feature-access-directives.module.ts │ │ │ │ └── feature-flag │ │ │ │ │ ├── feature-flag.directive.spec.ts │ │ │ │ │ └── feature-flag.directive.ts │ │ │ ├── feature-access.actions.ts │ │ │ ├── feature-access.effects.spec.ts │ │ │ ├── feature-access.effects.ts │ │ │ ├── feature-access.interface.ts │ │ │ ├── feature-access.module.ts │ │ │ ├── feature-access.reducer.spec.ts │ │ │ ├── feature-access.reducer.ts │ │ │ ├── feature-access.selectors.ts │ │ │ └── guards │ │ │ │ ├── feature-access-init │ │ │ │ ├── feature-access-init.guard.spec.ts │ │ │ │ └── feature-access-init.guard.ts │ │ │ │ ├── feature-access │ │ │ │ ├── feature-access.guard.spec.ts │ │ │ │ └── feature-access.guard.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-http-api │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── http-api.actions.ts │ │ │ ├── http-api.effects.spec.ts │ │ │ ├── http-api.effects.ts │ │ │ ├── http-api.interface.ts │ │ │ ├── http-api.module.ts │ │ │ ├── http-api.reducer.spec.ts │ │ │ ├── http-api.reducer.ts │ │ │ ├── http-api.selectors.ts │ │ │ └── services │ │ │ │ ├── .gitkeep │ │ │ │ └── http-api │ │ │ │ ├── http-api.service.spec.ts │ │ │ │ └── http-api.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-http-progress │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ └── global-progress-bar │ │ │ │ │ ├── global-progress-bar.component.html │ │ │ │ │ ├── global-progress-bar.component.scss │ │ │ │ │ ├── global-progress-bar.component.spec.ts │ │ │ │ │ └── global-progress-bar.component.ts │ │ │ ├── http-progress.actions.ts │ │ │ ├── http-progress.effects.spec.ts │ │ │ ├── http-progress.effects.ts │ │ │ ├── http-progress.interface.ts │ │ │ ├── http-progress.module.ts │ │ │ ├── http-progress.reducer.spec.ts │ │ │ ├── http-progress.reducer.ts │ │ │ ├── http-progress.selectors.ts │ │ │ └── services │ │ │ │ ├── http-handlers │ │ │ │ ├── http-handlers.service.spec.ts │ │ │ │ └── http-handlers.service.ts │ │ │ │ ├── http-progress │ │ │ │ ├── http-progress.service.spec.ts │ │ │ │ └── http-progress.service.ts │ │ │ │ ├── index.ts │ │ │ │ └── toaster │ │ │ │ ├── toaster.service.spec.ts │ │ │ │ └── toaster.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-router │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── route.serializer.spec.ts │ │ │ ├── route.serializer.ts │ │ │ ├── router.actions.ts │ │ │ ├── router.effects.spec.ts │ │ │ ├── router.effects.ts │ │ │ ├── router.interface.ts │ │ │ ├── router.module.ts │ │ │ ├── router.selectors.spec.ts │ │ │ └── router.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-sidebar │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── sidebar.actions.ts │ │ │ ├── sidebar.effects.spec.ts │ │ │ ├── sidebar.effects.ts │ │ │ ├── sidebar.interface.ts │ │ │ ├── sidebar.module.ts │ │ │ ├── sidebar.reducer.spec.ts │ │ │ ├── sidebar.reducer.ts │ │ │ └── sidebar.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-theme │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── theme.actions.ts │ │ │ ├── theme.effects.spec.ts │ │ │ ├── theme.effects.ts │ │ │ ├── theme.interface.ts │ │ │ ├── theme.module.ts │ │ │ ├── theme.reducer.spec.ts │ │ │ ├── theme.reducer.ts │ │ │ └── theme.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store-user │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── user.actions.ts │ │ │ ├── user.effects.spec.ts │ │ │ ├── user.effects.ts │ │ │ ├── user.interface.ts │ │ │ ├── user.module.ts │ │ │ ├── user.reducer.spec.ts │ │ │ ├── user.reducer.ts │ │ │ └── user.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-store │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── store.module.spec.ts │ │ │ └── store.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-testing-e2e │ ├── .babelrc │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── support │ │ │ ├── commands.ts │ │ │ ├── commands │ │ │ ├── get-app-index.command.ts │ │ │ ├── get-app-root.command.ts │ │ │ ├── get-iframe.command.ts │ │ │ ├── get-sidnav.command.ts │ │ │ ├── get-testing-credentials.command.ts │ │ │ ├── get-toolbars.command.ts │ │ │ ├── get-viewport-sizes.command.ts │ │ │ └── set-viewport-size.command.ts │ │ │ ├── config │ │ │ ├── commands.config.ts │ │ │ └── viewport.config.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ ├── testing-credentials.interface.ts │ │ │ └── viewport-config.interface.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── tsconfig.lib.json ├── client-testing-unit │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── apollo │ │ │ │ ├── apollo.mock.ts │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── index.ts │ │ │ │ └── testing │ │ │ │ │ └── testing.component.mock.ts │ │ │ ├── http-controller │ │ │ │ ├── http-controller.mock.spec.ts │ │ │ │ └── http-controller.mock.ts │ │ │ ├── jsdom │ │ │ │ ├── document │ │ │ │ │ ├── document.mock.spec.ts │ │ │ │ │ └── document.mock.ts │ │ │ │ ├── external │ │ │ │ │ ├── apollo.mock.spec.ts │ │ │ │ │ ├── apollo.mock.ts │ │ │ │ │ ├── d3.mock.spec.ts │ │ │ │ │ ├── d3.mock.ts │ │ │ │ │ └── external.mock.ts │ │ │ │ ├── globals │ │ │ │ │ ├── globals.mock.spec.ts │ │ │ │ │ └── globals.mock.ts │ │ │ │ ├── index.ts │ │ │ │ ├── patch │ │ │ │ │ ├── jsdom-globals.patch.spec.ts │ │ │ │ │ └── jsdom-globals.patch.ts │ │ │ │ └── window │ │ │ │ │ ├── window.mock.spec.ts │ │ │ │ │ └── window.mock.ts │ │ │ ├── local-storage │ │ │ │ ├── local-storage.mock.spec.ts │ │ │ │ └── local-storage.mock.ts │ │ │ ├── refs │ │ │ │ ├── dialog-ref.mock.spec.ts │ │ │ │ ├── dialog-ref.mock.ts │ │ │ │ ├── index.ts │ │ │ │ ├── overlay-ref.mock.spec.ts │ │ │ │ ├── overlay-ref.mock.ts │ │ │ │ ├── snackbar-ref.mock.spec.ts │ │ │ │ └── snackbar-ref.mock.ts │ │ │ ├── test-bed │ │ │ │ ├── test-bed-config.mock.spec.ts │ │ │ │ └── test-bed-config.mock.ts │ │ │ ├── testing-unit.module.spec.ts │ │ │ └── testing-unit.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-translate │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── dictionaries │ │ │ │ ├── en.spec.ts │ │ │ │ ├── en.ts │ │ │ │ ├── ru.spec.ts │ │ │ │ └── ru.ts │ │ │ ├── interfaces │ │ │ │ ├── index.ts │ │ │ │ ├── ui-dictionary.interface.ts │ │ │ │ ├── ui-languages.interface.ts │ │ │ │ └── ui-translations.interface.ts │ │ │ ├── providers │ │ │ │ └── translate-module.providers.ts │ │ │ ├── services │ │ │ │ ├── app-translation-utils.service.spec.ts │ │ │ │ └── app-translation-utils.service.ts │ │ │ └── translate.module.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util-decorators │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── decorators │ │ │ │ ├── index.ts │ │ │ │ ├── log-method │ │ │ │ │ ├── log-method.decorator.spec.ts │ │ │ │ │ └── log-method.decorator.ts │ │ │ │ └── track-changes │ │ │ │ │ ├── track-changes.decorator.spec.ts │ │ │ │ │ └── track-changes.decorator.ts │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util-eliza │ ├── LICENSE │ ├── README.md │ ├── eslint.config.mjs │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── config │ │ │ │ ├── data.config.spec.ts │ │ │ │ ├── data.config.ts │ │ │ │ ├── eliza.config.spec.ts │ │ │ │ ├── eliza.config.ts │ │ │ │ ├── finals.config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── initials.config.ts │ │ │ │ ├── keywords.config.ts │ │ │ │ ├── post-transforms.config.ts │ │ │ │ ├── posts.config.ts │ │ │ │ ├── pres.config.ts │ │ │ │ ├── quits.config.ts │ │ │ │ └── synonyms.config.ts │ │ │ ├── eliza.module.ts │ │ │ ├── interfaces │ │ │ │ ├── chat.interface.ts │ │ │ │ ├── eliza.interface.ts │ │ │ │ └── index.ts │ │ │ └── services │ │ │ │ ├── eliza │ │ │ │ ├── eliza.service.spec.ts │ │ │ │ └── eliza.service.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util-ngrx │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── actions │ │ │ │ ├── action-type.util.spec.ts │ │ │ │ ├── action-type.util.ts │ │ │ │ └── index.ts │ │ │ ├── meta │ │ │ │ ├── index.ts │ │ │ │ ├── logger.reducer.spec.ts │ │ │ │ ├── logger.reducer.ts │ │ │ │ ├── meta.reducers.spec.ts │ │ │ │ └── meta.reducers.ts │ │ │ └── reducers │ │ │ │ ├── index.ts │ │ │ │ └── reducer.util.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util-security │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── security │ │ │ │ ├── bootstrap-environment-check.spec.ts │ │ │ │ ├── bootstrap-environment-check.ts │ │ │ │ └── index.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util-sentry │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── services │ │ │ │ └── sentry │ │ │ │ ├── sentry.service.spec.ts │ │ │ │ └── sentry.service.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── client-util │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── interfaces │ │ │ │ ├── button.interface.spec.ts │ │ │ │ ├── button.interface.ts │ │ │ │ ├── environment.interface.ts │ │ │ │ ├── http-status.interface.spec.ts │ │ │ │ ├── http-status.interface.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sentry.interface.ts │ │ │ │ ├── toaster.interface.spec.ts │ │ │ │ └── toaster.interface.ts │ │ │ └── providers │ │ │ │ ├── app-base-href.provider.spec.ts │ │ │ │ ├── app-base-href.provider.ts │ │ │ │ ├── document.provider.spec.ts │ │ │ │ ├── document.provider.ts │ │ │ │ ├── environment.provider.spec.ts │ │ │ │ ├── environment.provider.ts │ │ │ │ ├── index.ts │ │ │ │ ├── location-strategy.provider.spec.ts │ │ │ │ ├── location-strategy.provider.ts │ │ │ │ ├── window.provider.spec.ts │ │ │ │ └── window.provider.ts │ │ └── test-setup.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts └── proto │ ├── README.md │ ├── eslint.config.mjs │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── grpc │ │ ├── common_pb.d.ts │ │ ├── common_pb.js │ │ ├── index.ts │ │ ├── root_grpc_web_pb.d.ts │ │ ├── root_grpc_web_pb.js │ │ ├── root_pb.d.ts │ │ └── root_pb.js │ │ └── ts │ │ ├── index.ts │ │ ├── nx-ng-starter_proto.d.ts │ │ └── nx-ng-starter_proto.js │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── tsconfig.lib.json ├── nx.json ├── package.json ├── tools ├── README.md ├── diagrams │ ├── branching.mmd │ ├── pr-validation-pipeline.mmd │ └── trunk-on-push-pipeline.mmd ├── eslint.config.mjs ├── executors │ ├── client-env │ │ ├── configure.spec.ts │ │ ├── configure.ts │ │ ├── env-base.spec.ts │ │ ├── env-base.ts │ │ ├── env-client.spec.ts │ │ ├── env-client.ts │ │ ├── executor.json │ │ ├── package.json │ │ ├── schema.d.ts │ │ └── schema.json │ ├── prettier │ │ ├── check.spec.ts │ │ ├── check.ts │ │ ├── configure.spec.ts │ │ ├── configure.ts │ │ ├── executor.json │ │ ├── package.json │ │ ├── schema.d.ts │ │ ├── schema.json │ │ └── utils │ │ │ ├── find-html-files.util.spec.ts │ │ │ └── find-html-files.util.ts │ ├── stylelint │ │ ├── check.spec.ts │ │ ├── check.ts │ │ ├── configure.spec.ts │ │ ├── configure.ts │ │ ├── executor.json │ │ ├── package.json │ │ ├── schema.d.ts │ │ ├── schema.json │ │ └── utils │ │ │ ├── find-scss-files.util.spec.ts │ │ │ └── find-scss-files.util.ts │ ├── tsc │ │ ├── check.spec.ts │ │ ├── check.ts │ │ ├── configure.spec.ts │ │ ├── configure.ts │ │ ├── executor.json │ │ ├── package.json │ │ ├── schema.d.ts │ │ └── schema.json │ ├── tsconfig.executors.json │ └── workspace │ │ ├── commands.ts │ │ ├── executor.json │ │ ├── package.json │ │ ├── schema.d.ts │ │ └── schema.json ├── js │ └── trusted-types.policy.js ├── project.json ├── proto │ ├── common.proto │ └── root.proto ├── shell │ ├── README.md │ ├── build-android.sh │ ├── build-docs.sh │ ├── build-mobile.sh │ ├── build-utils.sh │ ├── changelog.sh │ ├── diagrams.sh │ ├── docker │ │ ├── build.sh │ │ ├── push.sh │ │ ├── run.sh │ │ └── task.sh │ ├── e2e.sh │ ├── firebase-deploy.sh │ ├── generate-e2e-test-report-index.sh │ ├── generate-proto.sh │ ├── generate-unit-test-coverage-index.sh │ ├── git-extension.sh │ ├── install.sh │ ├── semver-tag.sh │ ├── set-documentation-env.sh │ ├── test.sh │ ├── utils │ │ ├── colors.sh │ │ ├── config.sh │ │ ├── module-aliases.sh │ │ └── print-utils.sh │ └── yarn-extension.sh ├── ts │ ├── actions │ │ ├── changes │ │ │ ├── changes.config.spec.ts │ │ │ ├── changes.config.ts │ │ │ └── changes.ts │ │ ├── codeowners │ │ │ └── codeowners.ts │ │ ├── contribution-size │ │ │ ├── contribution-size.config.spec.ts │ │ │ ├── contribution-size.config.ts │ │ │ ├── contribution-size.interface.ts │ │ │ └── contribution-size.ts │ │ └── projects │ │ │ └── projects.ts │ ├── utils │ │ ├── colors.spec.ts │ │ ├── colors.ts │ │ ├── find-files.util.spec.ts │ │ ├── find-files.util.ts │ │ ├── logger.spec.ts │ │ └── logger.ts │ ├── vitest.shared.ts │ └── workspace │ │ └── coverage-stats.ts ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.spec.json ├── tsconfig.tools.json ├── tsconfig.ts-tools.json ├── vite.config.mts ├── vitest.config.mts └── workspace-plugin │ ├── eslint.config.mjs │ ├── generators.json │ ├── package.json │ ├── project.json │ ├── src │ ├── generators │ │ ├── client-feature │ │ │ ├── client-feature.generator.spec.ts │ │ │ ├── client-feature.generator.ts │ │ │ ├── files │ │ │ │ ├── README.md__tmpl__ │ │ │ │ ├── eslint.config.mjs__tmpl__ │ │ │ │ ├── src │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __kebabCaseName__-routing.module.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.module.ts__tmpl__ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── __kebabCaseName__ │ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.html__tmpl__ │ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.scss__tmpl__ │ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.spec.ts__tmpl__ │ │ │ │ │ │ │ │ └── __kebabCaseName__.component.ts__tmpl__ │ │ │ │ │ │ ├── guards │ │ │ │ │ │ │ ├── __kebabCaseName__.guard.spec.ts__tmpl__ │ │ │ │ │ │ │ └── __kebabCaseName__.guard.ts__tmpl__ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── __kebabCaseName__.service.spec.ts__tmpl__ │ │ │ │ │ │ │ └── __kebabCaseName__.service.ts__tmpl__ │ │ │ │ │ └── test-setup.ts__tmpl__ │ │ │ │ ├── tsconfig.eslint.json__tmpl__ │ │ │ │ ├── tsconfig.json__tmpl__ │ │ │ │ ├── tsconfig.lib.json__tmpl__ │ │ │ │ ├── tsconfig.spec.json__tmpl__ │ │ │ │ ├── vite.config.mts__tmpl__ │ │ │ │ └── vitest.config.mts__tmpl__ │ │ │ ├── index.ts │ │ │ ├── schema.interface.ts │ │ │ └── schema.json │ │ ├── client-store │ │ │ ├── client-store.generator.spec.ts │ │ │ ├── client-store.generator.ts │ │ │ ├── files │ │ │ │ ├── README.md__tmpl__ │ │ │ │ ├── eslint.config.mjs__tmpl__ │ │ │ │ ├── src │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __kebabCaseName__.actions.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.effects.spec.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.effects.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.interface.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.module.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.reducer.spec.ts__tmpl__ │ │ │ │ │ │ ├── __kebabCaseName__.reducer.ts__tmpl__ │ │ │ │ │ │ └── __kebabCaseName__.selectors.ts__tmpl__ │ │ │ │ │ └── test-setup.ts__tmpl__ │ │ │ │ ├── tsconfig.eslint.json__tmpl__ │ │ │ │ ├── tsconfig.json__tmpl__ │ │ │ │ ├── tsconfig.lib.json__tmpl__ │ │ │ │ ├── tsconfig.spec.json__tmpl__ │ │ │ │ ├── vite.config.mts__tmpl__ │ │ │ │ └── vitest.config.mts__tmpl__ │ │ │ ├── index.ts │ │ │ ├── schema.interface.ts │ │ │ └── schema.json │ │ ├── client-ui │ │ │ ├── client-ui.generator.spec.ts │ │ │ ├── client-ui.generator.ts │ │ │ ├── files │ │ │ │ ├── README.md__tmpl__ │ │ │ │ ├── eslint.config.mjs__tmpl__ │ │ │ │ ├── src │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __kebabCaseName__.module.ts__tmpl__ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── __kebabCaseName__ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.html__tmpl__ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.scss__tmpl__ │ │ │ │ │ │ │ ├── __kebabCaseName__.component.spec.ts__tmpl__ │ │ │ │ │ │ │ └── __kebabCaseName__.component.ts__tmpl__ │ │ │ │ │ └── test-setup.ts__tmpl__ │ │ │ │ ├── tsconfig.eslint.json__tmpl__ │ │ │ │ ├── tsconfig.json__tmpl__ │ │ │ │ ├── tsconfig.lib.json__tmpl__ │ │ │ │ ├── tsconfig.spec.json__tmpl__ │ │ │ │ ├── vite.config.mts__tmpl__ │ │ │ │ └── vitest.config.mts__tmpl__ │ │ │ ├── index.ts │ │ │ ├── schema.interface.ts │ │ │ └── schema.json │ │ ├── client-util │ │ │ ├── client-util.generator.spec.ts │ │ │ ├── client-util.generator.ts │ │ │ ├── files │ │ │ │ ├── README.md__tmpl__ │ │ │ │ ├── eslint.config.mjs__tmpl__ │ │ │ │ ├── src │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── __kebabCaseName__.module.ts__tmpl__ │ │ │ │ │ └── test-setup.ts__tmpl__ │ │ │ │ ├── tsconfig.eslint.json__tmpl__ │ │ │ │ ├── tsconfig.json__tmpl__ │ │ │ │ ├── tsconfig.lib.json__tmpl__ │ │ │ │ ├── tsconfig.spec.json__tmpl__ │ │ │ │ ├── vite.config.mts__tmpl__ │ │ │ │ └── vitest.config.mts__tmpl__ │ │ │ ├── index.ts │ │ │ ├── schema.interface.ts │ │ │ └── schema.json │ │ └── module-boundaries │ │ │ ├── index.ts │ │ │ ├── module-boundaries.generator.spec.ts │ │ │ ├── module-boundaries.generator.ts │ │ │ ├── schema.interface.ts │ │ │ ├── schema.json │ │ │ └── utils │ │ │ ├── find-files.util.spec.ts │ │ │ └── find-files.util.ts │ ├── index.ts │ ├── testing │ │ ├── file-assertion.util.ts │ │ └── test-setup-assertion.util.ts │ └── utils │ │ ├── cleanup.util.spec.ts │ │ ├── cleanup.util.ts │ │ ├── colors.spec.ts │ │ ├── colors.ts │ │ ├── finalizer.util.spec.ts │ │ ├── finalizer.util.ts │ │ ├── generate-files.config.ts │ │ ├── logger.spec.ts │ │ ├── logger.ts │ │ ├── project-configuration.util.spec.ts │ │ └── project-configuration.util.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ ├── vite.config.mts │ └── vitest.config.mts ├── tsconfig.base.json ├── tsconfig.compodoc.json ├── vitest.shared.ts ├── vitest.workspace.ts └── yarn.lock /.docker/api.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/api.Dockerfile -------------------------------------------------------------------------------- /.docker/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/base.Dockerfile -------------------------------------------------------------------------------- /.docker/client.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/client.Dockerfile -------------------------------------------------------------------------------- /.docker/documentation.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/documentation.Dockerfile -------------------------------------------------------------------------------- /.docker/elements.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/elements.Dockerfile -------------------------------------------------------------------------------- /.docker/envoy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/envoy.Dockerfile -------------------------------------------------------------------------------- /.docker/runner-ci-slim.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/runner-ci-slim.Dockerfile -------------------------------------------------------------------------------- /.docker/runner-ci.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.docker/runner-ci.Dockerfile -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.electron/electron-builder.client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.electron/electron-builder.client.yml -------------------------------------------------------------------------------- /.electron/electron.preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.electron/electron.preload.js -------------------------------------------------------------------------------- /.electron/electron.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.electron/electron.server.js -------------------------------------------------------------------------------- /.electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.electron/index.js -------------------------------------------------------------------------------- /.envoy/envoy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.envoy/envoy.yml -------------------------------------------------------------------------------- /.eslint/.eslintrc.module-boundaries.backend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.eslint/.eslintrc.module-boundaries.backend.mjs -------------------------------------------------------------------------------- /.eslint/.eslintrc.module-boundaries.client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.eslint/.eslintrc.module-boundaries.client.mjs -------------------------------------------------------------------------------- /.eslint/.eslintrc.module-boundaries.shared.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.eslint/.eslintrc.module-boundaries.shared.mjs -------------------------------------------------------------------------------- /.eslintrc.module-boundaries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.eslintrc.module-boundaries.mjs -------------------------------------------------------------------------------- /.eslintrc.naming-convention.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.eslintrc.naming-convention.mjs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/MAINTENANCE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/ISSUE_TEMPLATE/MAINTENANCE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/check-changes/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/check-changes/action.yml -------------------------------------------------------------------------------- /.github/actions/check-origin/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/check-origin/action.yml -------------------------------------------------------------------------------- /.github/actions/check-projects/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/check-projects/action.yml -------------------------------------------------------------------------------- /.github/actions/configure-kernel/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/configure-kernel/action.yml -------------------------------------------------------------------------------- /.github/actions/configure-yarn/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/configure-yarn/action.yml -------------------------------------------------------------------------------- /.github/actions/dist-artifact-upload/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/dist-artifact-upload/action.yml -------------------------------------------------------------------------------- /.github/actions/npm-publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/npm-publish/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-environment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/setup-environment/action.yml -------------------------------------------------------------------------------- /.github/actions/validate-codeowner/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/validate-codeowner/action.yml -------------------------------------------------------------------------------- /.github/actions/workspace-cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/actions/workspace-cache/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/deploy-apps.yml -------------------------------------------------------------------------------- /.github/workflows/publish-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/publish-packages.yml -------------------------------------------------------------------------------- /.github/workflows/test-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/test-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/trunk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/trunk.yml -------------------------------------------------------------------------------- /.github/workflows/validate-codeowners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/validate-codeowners.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.github/workflows/validate-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx --no-install commitlint --edit "$1" 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.ncurc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | puppeteer_skip_chromium_download=true 2 | -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- 1 | /libs/backend-gql/schema.gql 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.protolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.protolint.yaml -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/recommended-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.vscode/recommended-settings.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /UNIT_COVERAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/UNIT_COVERAGE.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/android/variables.gradle -------------------------------------------------------------------------------- /apps/api/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/.firebaserc -------------------------------------------------------------------------------- /apps/api/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/eslint.config.mjs -------------------------------------------------------------------------------- /apps/api/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/firebase.json -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/project.json -------------------------------------------------------------------------------- /apps/api/src/app/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/src/app/api.module.ts -------------------------------------------------------------------------------- /apps/api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/api/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/tsconfig.app.json -------------------------------------------------------------------------------- /apps/api/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/vite.config.mts -------------------------------------------------------------------------------- /apps/api/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/vitest.config.mts -------------------------------------------------------------------------------- /apps/api/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/api/webpack.config.js -------------------------------------------------------------------------------- /apps/client-e2e/cypress-reporter-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/cypress-reporter-options.json -------------------------------------------------------------------------------- /apps/client-e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/cypress.config.js -------------------------------------------------------------------------------- /apps/client-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/client-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/project.json -------------------------------------------------------------------------------- /apps/client-e2e/src/integration/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/src/integration/app.cy.ts -------------------------------------------------------------------------------- /apps/client-e2e/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/src/plugins/index.ts -------------------------------------------------------------------------------- /apps/client-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/client-e2e/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/client-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/client/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/.firebaserc -------------------------------------------------------------------------------- /apps/client/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/eslint.config.mjs -------------------------------------------------------------------------------- /apps/client/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/firebase.json -------------------------------------------------------------------------------- /apps/client/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/ngsw-config.json -------------------------------------------------------------------------------- /apps/client/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/project.json -------------------------------------------------------------------------------- /apps/client/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/proxy.conf.json -------------------------------------------------------------------------------- /apps/client/src/app/client-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/app/client-routing.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/client.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/app/client.module.ts -------------------------------------------------------------------------------- /apps/client/src/app/components/root.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/app/components/root.component.ts -------------------------------------------------------------------------------- /apps/client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/client/src/environments/sentry.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/environments/sentry.config.ts -------------------------------------------------------------------------------- /apps/client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/favicon.ico -------------------------------------------------------------------------------- /apps/client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/index.html -------------------------------------------------------------------------------- /apps/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/main.ts -------------------------------------------------------------------------------- /apps/client/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/manifest.webmanifest -------------------------------------------------------------------------------- /apps/client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/polyfills.ts -------------------------------------------------------------------------------- /apps/client/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/styles.scss -------------------------------------------------------------------------------- /apps/client/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/src/test-setup.ts -------------------------------------------------------------------------------- /apps/client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/tsconfig.app.json -------------------------------------------------------------------------------- /apps/client/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/tsconfig.json -------------------------------------------------------------------------------- /apps/client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/client/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/vite.config.mts -------------------------------------------------------------------------------- /apps/client/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/client/vitest.config.mts -------------------------------------------------------------------------------- /apps/documentation-e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/cypress.config.js -------------------------------------------------------------------------------- /apps/documentation-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/documentation-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/project.json -------------------------------------------------------------------------------- /apps/documentation-e2e/src/integration/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/src/integration/app.cy.ts -------------------------------------------------------------------------------- /apps/documentation-e2e/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/src/plugins/index.ts -------------------------------------------------------------------------------- /apps/documentation-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/documentation-e2e/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/documentation-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/documentation/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/.firebaserc -------------------------------------------------------------------------------- /apps/documentation/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/eslint.config.mjs -------------------------------------------------------------------------------- /apps/documentation/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/firebase.json -------------------------------------------------------------------------------- /apps/documentation/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/ngsw-config.json -------------------------------------------------------------------------------- /apps/documentation/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/project.json -------------------------------------------------------------------------------- /apps/documentation/src/app/doc-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/app/doc-routing.module.ts -------------------------------------------------------------------------------- /apps/documentation/src/app/doc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/app/doc.module.ts -------------------------------------------------------------------------------- /apps/documentation/src/app/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/documentation/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/documentation/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/favicon.ico -------------------------------------------------------------------------------- /apps/documentation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/index.html -------------------------------------------------------------------------------- /apps/documentation/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/main.ts -------------------------------------------------------------------------------- /apps/documentation/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/manifest.webmanifest -------------------------------------------------------------------------------- /apps/documentation/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/polyfills.ts -------------------------------------------------------------------------------- /apps/documentation/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/styles.scss -------------------------------------------------------------------------------- /apps/documentation/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/src/test-setup.ts -------------------------------------------------------------------------------- /apps/documentation/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/tsconfig.app.json -------------------------------------------------------------------------------- /apps/documentation/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/tsconfig.json -------------------------------------------------------------------------------- /apps/documentation/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/documentation/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/vite.config.mts -------------------------------------------------------------------------------- /apps/documentation/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/documentation/vitest.config.mts -------------------------------------------------------------------------------- /apps/elements-e2e/cypress-reporter-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/cypress-reporter-options.json -------------------------------------------------------------------------------- /apps/elements-e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/cypress.config.js -------------------------------------------------------------------------------- /apps/elements-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /apps/elements-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/project.json -------------------------------------------------------------------------------- /apps/elements-e2e/src/integration/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/src/integration/app.cy.ts -------------------------------------------------------------------------------- /apps/elements-e2e/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/src/plugins/index.ts -------------------------------------------------------------------------------- /apps/elements-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/elements-e2e/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/elements-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/elements/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/.firebaserc -------------------------------------------------------------------------------- /apps/elements/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/eslint.config.mjs -------------------------------------------------------------------------------- /apps/elements/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/firebase.json -------------------------------------------------------------------------------- /apps/elements/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/project.json -------------------------------------------------------------------------------- /apps/elements/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/proxy.conf.json -------------------------------------------------------------------------------- /apps/elements/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/elements/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/elements/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/elements/src/environments/sentry.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/environments/sentry.config.ts -------------------------------------------------------------------------------- /apps/elements/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/favicon.ico -------------------------------------------------------------------------------- /apps/elements/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/index.html -------------------------------------------------------------------------------- /apps/elements/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/main.ts -------------------------------------------------------------------------------- /apps/elements/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/polyfills.ts -------------------------------------------------------------------------------- /apps/elements/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/styles.scss -------------------------------------------------------------------------------- /apps/elements/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/src/test-setup.ts -------------------------------------------------------------------------------- /apps/elements/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/tsconfig.app.json -------------------------------------------------------------------------------- /apps/elements/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/elements/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/tsconfig.json -------------------------------------------------------------------------------- /apps/elements/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/elements/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/vite.config.mts -------------------------------------------------------------------------------- /apps/elements/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/elements/vitest.config.mts -------------------------------------------------------------------------------- /apps/server-prod/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/eslint.config.mjs -------------------------------------------------------------------------------- /apps/server-prod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/package.json -------------------------------------------------------------------------------- /apps/server-prod/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/project.json -------------------------------------------------------------------------------- /apps/server-prod/src/app/server-prod.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/src/app/server-prod.module.ts -------------------------------------------------------------------------------- /apps/server-prod/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server-prod/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/server-prod/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/server-prod/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/src/main.ts -------------------------------------------------------------------------------- /apps/server-prod/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/tsconfig.app.json -------------------------------------------------------------------------------- /apps/server-prod/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/tsconfig.eslint.json -------------------------------------------------------------------------------- /apps/server-prod/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/tsconfig.json -------------------------------------------------------------------------------- /apps/server-prod/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/server-prod/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/vite.config.mts -------------------------------------------------------------------------------- /apps/server-prod/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/vitest.config.mts -------------------------------------------------------------------------------- /apps/server-prod/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/apps/server-prod/webpack.config.js -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/babel.config.json -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /commitlint.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/commitlint.plugin.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/functions/package.json -------------------------------------------------------------------------------- /libs/backend-auth/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /libs/backend-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/README.md -------------------------------------------------------------------------------- /libs/backend-auth/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/project.json -------------------------------------------------------------------------------- /libs/backend-auth/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/backend-auth.module'; 2 | -------------------------------------------------------------------------------- /libs/backend-auth/src/lib/backend-auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/src/lib/backend-auth.module.ts -------------------------------------------------------------------------------- /libs/backend-auth/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-auth/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-auth/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-auth/vitest.config.mts -------------------------------------------------------------------------------- /libs/backend-diagnostics/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /libs/backend-diagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/LICENSE -------------------------------------------------------------------------------- /libs/backend-diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/README.md -------------------------------------------------------------------------------- /libs/backend-diagnostics/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-diagnostics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/package.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/project.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/src/index.ts -------------------------------------------------------------------------------- /libs/backend-diagnostics/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-diagnostics/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-diagnostics/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-diagnostics/vitest.config.mts -------------------------------------------------------------------------------- /libs/backend-gql/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /libs/backend-gql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/README.md -------------------------------------------------------------------------------- /libs/backend-gql/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-gql/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/project.json -------------------------------------------------------------------------------- /libs/backend-gql/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/schema.gql -------------------------------------------------------------------------------- /libs/backend-gql/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/backend-gql.module'; 2 | -------------------------------------------------------------------------------- /libs/backend-gql/src/lib/backend-gql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/src/lib/backend-gql.module.ts -------------------------------------------------------------------------------- /libs/backend-gql/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-gql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-gql/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-gql/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-gql/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-gql/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-gql/vitest.config.mts -------------------------------------------------------------------------------- /libs/backend-grpc/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /libs/backend-grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/README.md -------------------------------------------------------------------------------- /libs/backend-grpc/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-grpc/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/project.json -------------------------------------------------------------------------------- /libs/backend-grpc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/src/index.ts -------------------------------------------------------------------------------- /libs/backend-grpc/src/lib/backend-grpc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/src/lib/backend-grpc.module.ts -------------------------------------------------------------------------------- /libs/backend-grpc/src/lib/grpc-client.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/src/lib/grpc-client.options.ts -------------------------------------------------------------------------------- /libs/backend-grpc/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-grpc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-grpc/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-grpc/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-grpc/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-grpc/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-grpc/vitest.config.mts -------------------------------------------------------------------------------- /libs/backend-interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/README.md -------------------------------------------------------------------------------- /libs/backend-interfaces/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/codegen.yml -------------------------------------------------------------------------------- /libs/backend-interfaces/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-interfaces/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/project.json -------------------------------------------------------------------------------- /libs/backend-interfaces/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/index'; 2 | -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/src/lib/auth/index.ts -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/auth/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/src/lib/auth/user.ts -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/diagnostics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './message'; 2 | -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/environment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './api-environment'; 2 | -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/src/lib/graphql/index.ts -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/graphql/upload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto/file-upload-input.dto'; 2 | -------------------------------------------------------------------------------- /libs/backend-interfaces/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/src/lib/index.ts -------------------------------------------------------------------------------- /libs/backend-interfaces/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-interfaces/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-interfaces/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-interfaces/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-interfaces/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-interfaces/vitest.config.mts -------------------------------------------------------------------------------- /libs/backend-logger/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /libs/backend-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/README.md -------------------------------------------------------------------------------- /libs/backend-logger/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/eslint.config.mjs -------------------------------------------------------------------------------- /libs/backend-logger/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/project.json -------------------------------------------------------------------------------- /libs/backend-logger/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/backend-logger.module'; 2 | -------------------------------------------------------------------------------- /libs/backend-logger/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/backend-logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/tsconfig.json -------------------------------------------------------------------------------- /libs/backend-logger/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/backend-logger/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/backend-logger/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/vite.config.mts -------------------------------------------------------------------------------- /libs/backend-logger/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/backend-logger/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/README.md -------------------------------------------------------------------------------- /libs/client-chatbot/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-chatbot/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/project.json -------------------------------------------------------------------------------- /libs/client-chatbot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/src/index.ts -------------------------------------------------------------------------------- /libs/client-chatbot/src/lib/chatbot.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/src/lib/chatbot.module.ts -------------------------------------------------------------------------------- /libs/client-chatbot/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-chatbot/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/tsconfig.json -------------------------------------------------------------------------------- /libs/client-chatbot/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-chatbot/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-chatbot/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/vite.config.mts -------------------------------------------------------------------------------- /libs/client-chatbot/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-chatbot/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-core-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/README.md -------------------------------------------------------------------------------- /libs/client-core-components/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-core-components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/project.json -------------------------------------------------------------------------------- /libs/client-core-components/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/core-components.module'; 2 | -------------------------------------------------------------------------------- /libs/client-core-components/src/lib/components/search/search.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/client-core-components/src/lib/components/theme-toggle/theme-toggle.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/client-core-components/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-core-components/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-core-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/tsconfig.json -------------------------------------------------------------------------------- /libs/client-core-components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-core-components/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-core-components/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/vite.config.mts -------------------------------------------------------------------------------- /libs/client-core-components/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core-components/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/README.md -------------------------------------------------------------------------------- /libs/client-core/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/project.json -------------------------------------------------------------------------------- /libs/client-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/index.ts -------------------------------------------------------------------------------- /libs/client-core/src/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/client-core/src/lib/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/lib/assets/svg/logo.svg -------------------------------------------------------------------------------- /libs/client-core/src/lib/core.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/lib/core.module.spec.ts -------------------------------------------------------------------------------- /libs/client-core/src/lib/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/lib/core.module.ts -------------------------------------------------------------------------------- /libs/client-core/src/lib/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/lib/styles/styles.scss -------------------------------------------------------------------------------- /libs/client-core/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-core/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/tsconfig.json -------------------------------------------------------------------------------- /libs/client-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-core/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/vite.config.mts -------------------------------------------------------------------------------- /libs/client-core/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-core/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-d3-charts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/LICENSE -------------------------------------------------------------------------------- /libs/client-d3-charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/README.md -------------------------------------------------------------------------------- /libs/client-d3-charts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-d3-charts/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/ng-package.json -------------------------------------------------------------------------------- /libs/client-d3-charts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/package.json -------------------------------------------------------------------------------- /libs/client-d3-charts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/project.json -------------------------------------------------------------------------------- /libs/client-d3-charts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/src/index.ts -------------------------------------------------------------------------------- /libs/client-d3-charts/src/lib/testing/d3.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/src/lib/testing/d3.mock.ts -------------------------------------------------------------------------------- /libs/client-d3-charts/src/lib/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/src/lib/util/index.ts -------------------------------------------------------------------------------- /libs/client-d3-charts/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-d3-charts/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-d3-charts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/tsconfig.json -------------------------------------------------------------------------------- /libs/client-d3-charts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-d3-charts/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/client-d3-charts/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-d3-charts/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/vite.config.mts -------------------------------------------------------------------------------- /libs/client-d3-charts/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-d3-charts/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-dashboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/README.md -------------------------------------------------------------------------------- /libs/client-dashboards/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-dashboards/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/project.json -------------------------------------------------------------------------------- /libs/client-dashboards/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/src/index.ts -------------------------------------------------------------------------------- /libs/client-dashboards/src/lib/components/_base/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/client-dashboards/src/lib/components/dashboards/dashboards.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/client-dashboards/src/lib/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/src/lib/modules/index.ts -------------------------------------------------------------------------------- /libs/client-dashboards/src/lib/modules/table-controls/table-column-settings/table-column-settings.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/client-dashboards/src/lib/modules/table-controls/table-row-menu/table-row-menu.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /libs/client-dashboards/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-dashboards/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-dashboards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/tsconfig.json -------------------------------------------------------------------------------- /libs/client-dashboards/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-dashboards/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-dashboards/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/vite.config.mts -------------------------------------------------------------------------------- /libs/client-dashboards/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-dashboards/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/README.md -------------------------------------------------------------------------------- /libs/client-diagnostics/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-diagnostics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/project.json -------------------------------------------------------------------------------- /libs/client-diagnostics/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/diagnostics.module'; 2 | -------------------------------------------------------------------------------- /libs/client-diagnostics/src/lib/components/info/diagnostics-info.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /libs/client-diagnostics/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-diagnostics/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-diagnostics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/tsconfig.json -------------------------------------------------------------------------------- /libs/client-diagnostics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-diagnostics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-diagnostics/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/vite.config.mts -------------------------------------------------------------------------------- /libs/client-diagnostics/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-diagnostics/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-directives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/README.md -------------------------------------------------------------------------------- /libs/client-directives/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-directives/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/project.json -------------------------------------------------------------------------------- /libs/client-directives/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/src/index.ts -------------------------------------------------------------------------------- /libs/client-directives/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-directives/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-directives/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/tsconfig.json -------------------------------------------------------------------------------- /libs/client-directives/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-directives/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-directives/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/vite.config.mts -------------------------------------------------------------------------------- /libs/client-directives/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-directives/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/README.md -------------------------------------------------------------------------------- /libs/client-elements/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-elements/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/project.json -------------------------------------------------------------------------------- /libs/client-elements/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/src/index.ts -------------------------------------------------------------------------------- /libs/client-elements/src/lib/elements.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/src/lib/elements.module.ts -------------------------------------------------------------------------------- /libs/client-elements/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-elements/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-elements/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/tsconfig.json -------------------------------------------------------------------------------- /libs/client-elements/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-elements/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-elements/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/vite.config.mts -------------------------------------------------------------------------------- /libs/client-elements/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-elements/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-gql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/README.md -------------------------------------------------------------------------------- /libs/client-gql/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-gql/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/project.json -------------------------------------------------------------------------------- /libs/client-gql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/src/index.ts -------------------------------------------------------------------------------- /libs/client-gql/src/lib/generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/client-gql/src/lib/generated/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql.interface'; 2 | -------------------------------------------------------------------------------- /libs/client-gql/src/lib/gql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/src/lib/gql.module.ts -------------------------------------------------------------------------------- /libs/client-gql/src/lib/graphql/index.ts: -------------------------------------------------------------------------------- 1 | export * from './matcomp'; 2 | -------------------------------------------------------------------------------- /libs/client-gql/src/lib/graphql/matcomp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/src/lib/graphql/matcomp/index.ts -------------------------------------------------------------------------------- /libs/client-gql/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-gql/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-gql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/tsconfig.json -------------------------------------------------------------------------------- /libs/client-gql/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-gql/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-gql/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/vite.config.mts -------------------------------------------------------------------------------- /libs/client-gql/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-gql/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-guided-tour/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/LICENSE -------------------------------------------------------------------------------- /libs/client-guided-tour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/README.md -------------------------------------------------------------------------------- /libs/client-guided-tour/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-guided-tour/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/ng-package.json -------------------------------------------------------------------------------- /libs/client-guided-tour/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/package.json -------------------------------------------------------------------------------- /libs/client-guided-tour/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/project.json -------------------------------------------------------------------------------- /libs/client-guided-tour/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/src/index.ts -------------------------------------------------------------------------------- /libs/client-guided-tour/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-guided-tour/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-guided-tour/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/tsconfig.json -------------------------------------------------------------------------------- /libs/client-guided-tour/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-guided-tour/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/client-guided-tour/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-guided-tour/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/vite.config.mts -------------------------------------------------------------------------------- /libs/client-guided-tour/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-guided-tour/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/README.md -------------------------------------------------------------------------------- /libs/client-material/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-material/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/project.json -------------------------------------------------------------------------------- /libs/client-material/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/src/index.ts -------------------------------------------------------------------------------- /libs/client-material/src/lib/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/src/lib/material.module.ts -------------------------------------------------------------------------------- /libs/client-material/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-material/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-material/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/tsconfig.json -------------------------------------------------------------------------------- /libs/client-material/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-material/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-material/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/vite.config.mts -------------------------------------------------------------------------------- /libs/client-material/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-material/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-pwa-offline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/LICENSE -------------------------------------------------------------------------------- /libs/client-pwa-offline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/README.md -------------------------------------------------------------------------------- /libs/client-pwa-offline/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-pwa-offline/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/ng-package.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/package.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/project.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/pwa-offline.module'; 2 | -------------------------------------------------------------------------------- /libs/client-pwa-offline/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-pwa-offline/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/tsconfig.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-pwa-offline/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/vite.config.mts -------------------------------------------------------------------------------- /libs/client-pwa-offline/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-pwa-offline/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-service-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/README.md -------------------------------------------------------------------------------- /libs/client-service-worker/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-service-worker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/project.json -------------------------------------------------------------------------------- /libs/client-service-worker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/src/index.ts -------------------------------------------------------------------------------- /libs/client-service-worker/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-service-worker/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-service-worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/tsconfig.json -------------------------------------------------------------------------------- /libs/client-service-worker/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-service-worker/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-service-worker/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/vite.config.mts -------------------------------------------------------------------------------- /libs/client-service-worker/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-service-worker/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/README.md -------------------------------------------------------------------------------- /libs/client-sidebar/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-sidebar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/project.json -------------------------------------------------------------------------------- /libs/client-sidebar/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/sidebar.module'; 2 | -------------------------------------------------------------------------------- /libs/client-sidebar/src/lib/sidebar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/src/lib/sidebar.module.ts -------------------------------------------------------------------------------- /libs/client-sidebar/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-sidebar/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-sidebar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/tsconfig.json -------------------------------------------------------------------------------- /libs/client-sidebar/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-sidebar/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-sidebar/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/vite.config.mts -------------------------------------------------------------------------------- /libs/client-sidebar/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-sidebar/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/README.md -------------------------------------------------------------------------------- /libs/client-store-chatbot/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-chatbot/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/project.json -------------------------------------------------------------------------------- /libs/client-store-chatbot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-chatbot/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-chatbot/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-chatbot/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-chatbot/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-chatbot/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-chatbot/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-chatbot/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/README.md -------------------------------------------------------------------------------- /libs/client-store-diagnostics/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-diagnostics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/project.json -------------------------------------------------------------------------------- /libs/client-store-diagnostics/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-diagnostics/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-diagnostics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-diagnostics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-diagnostics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-diagnostics/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-diagnostics/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-diagnostics/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-feature-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-feature-access/README.md -------------------------------------------------------------------------------- /libs/client-store-feature-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-feature-access/project.json -------------------------------------------------------------------------------- /libs/client-store-feature-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-feature-access/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-feature-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-feature-access/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-feature-access/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-feature-access/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-http-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/README.md -------------------------------------------------------------------------------- /libs/client-store-http-api/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-http-api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/project.json -------------------------------------------------------------------------------- /libs/client-store-http-api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-http-api/src/lib/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/client-store-http-api/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-http-api/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-http-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-http-api/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-http-api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-http-api/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-http-api/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-api/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-http-progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-progress/README.md -------------------------------------------------------------------------------- /libs/client-store-http-progress/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-progress/project.json -------------------------------------------------------------------------------- /libs/client-store-http-progress/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-progress/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-http-progress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-progress/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-http-progress/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-http-progress/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/README.md -------------------------------------------------------------------------------- /libs/client-store-router/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-router/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/project.json -------------------------------------------------------------------------------- /libs/client-store-router/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-router/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-router/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-router/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-router/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-router/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-router/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-router/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/README.md -------------------------------------------------------------------------------- /libs/client-store-sidebar/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-sidebar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/project.json -------------------------------------------------------------------------------- /libs/client-store-sidebar/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-sidebar/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-sidebar/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-sidebar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-sidebar/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-sidebar/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-sidebar/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-sidebar/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-sidebar/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/README.md -------------------------------------------------------------------------------- /libs/client-store-theme/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-theme/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/project.json -------------------------------------------------------------------------------- /libs/client-store-theme/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-theme/src/lib/theme.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/src/lib/theme.actions.ts -------------------------------------------------------------------------------- /libs/client-store-theme/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-theme/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-theme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-theme/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-theme/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-theme/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-theme/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-theme/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/README.md -------------------------------------------------------------------------------- /libs/client-store-user/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store-user/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/project.json -------------------------------------------------------------------------------- /libs/client-store-user/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/index.ts -------------------------------------------------------------------------------- /libs/client-store-user/src/lib/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/lib/user.actions.ts -------------------------------------------------------------------------------- /libs/client-store-user/src/lib/user.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/lib/user.effects.ts -------------------------------------------------------------------------------- /libs/client-store-user/src/lib/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/lib/user.module.ts -------------------------------------------------------------------------------- /libs/client-store-user/src/lib/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/lib/user.reducer.ts -------------------------------------------------------------------------------- /libs/client-store-user/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store-user/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store-user/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store-user/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store-user/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store-user/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store-user/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store-user/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/README.md -------------------------------------------------------------------------------- /libs/client-store/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-store/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/project.json -------------------------------------------------------------------------------- /libs/client-store/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/store.module'; 2 | -------------------------------------------------------------------------------- /libs/client-store/src/lib/store.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/src/lib/store.module.spec.ts -------------------------------------------------------------------------------- /libs/client-store/src/lib/store.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/src/lib/store.module.ts -------------------------------------------------------------------------------- /libs/client-store/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-store/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-store/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/tsconfig.json -------------------------------------------------------------------------------- /libs/client-store/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-store/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-store/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/vite.config.mts -------------------------------------------------------------------------------- /libs/client-store/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-store/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-testing-e2e/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/.babelrc -------------------------------------------------------------------------------- /libs/client-testing-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/README.md -------------------------------------------------------------------------------- /libs/client-testing-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-testing-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/project.json -------------------------------------------------------------------------------- /libs/client-testing-e2e/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/src/index.ts -------------------------------------------------------------------------------- /libs/client-testing-e2e/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-testing-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/tsconfig.json -------------------------------------------------------------------------------- /libs/client-testing-e2e/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-e2e/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-testing-unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/README.md -------------------------------------------------------------------------------- /libs/client-testing-unit/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-testing-unit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/project.json -------------------------------------------------------------------------------- /libs/client-testing-unit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/src/index.ts -------------------------------------------------------------------------------- /libs/client-testing-unit/src/lib/apollo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './apollo.mock'; 2 | -------------------------------------------------------------------------------- /libs/client-testing-unit/src/lib/refs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/src/lib/refs/index.ts -------------------------------------------------------------------------------- /libs/client-testing-unit/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-testing-unit/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-testing-unit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/tsconfig.json -------------------------------------------------------------------------------- /libs/client-testing-unit/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-testing-unit/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-testing-unit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/vite.config.mts -------------------------------------------------------------------------------- /libs/client-testing-unit/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-testing-unit/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/README.md -------------------------------------------------------------------------------- /libs/client-translate/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-translate/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/project.json -------------------------------------------------------------------------------- /libs/client-translate/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/src/index.ts -------------------------------------------------------------------------------- /libs/client-translate/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-translate/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-translate/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/tsconfig.json -------------------------------------------------------------------------------- /libs/client-translate/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-translate/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-translate/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/vite.config.mts -------------------------------------------------------------------------------- /libs/client-translate/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-translate/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util-decorators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/README.md -------------------------------------------------------------------------------- /libs/client-util-decorators/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util-decorators/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/project.json -------------------------------------------------------------------------------- /libs/client-util-decorators/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /libs/client-util-decorators/src/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './decorators'; 2 | -------------------------------------------------------------------------------- /libs/client-util-decorators/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util-decorators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util-decorators/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util-decorators/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util-decorators/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util-decorators/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-decorators/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util-eliza/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/LICENSE -------------------------------------------------------------------------------- /libs/client-util-eliza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/README.md -------------------------------------------------------------------------------- /libs/client-util-eliza/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util-eliza/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/ng-package.json -------------------------------------------------------------------------------- /libs/client-util-eliza/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/package.json -------------------------------------------------------------------------------- /libs/client-util-eliza/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/project.json -------------------------------------------------------------------------------- /libs/client-util-eliza/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/src/index.ts -------------------------------------------------------------------------------- /libs/client-util-eliza/src/lib/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './data.config'; 2 | -------------------------------------------------------------------------------- /libs/client-util-eliza/src/lib/eliza.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/src/lib/eliza.module.ts -------------------------------------------------------------------------------- /libs/client-util-eliza/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util-eliza/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-util-eliza/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util-eliza/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util-eliza/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/client-util-eliza/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util-eliza/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util-eliza/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-eliza/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util-ngrx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/README.md -------------------------------------------------------------------------------- /libs/client-util-ngrx/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util-ngrx/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/project.json -------------------------------------------------------------------------------- /libs/client-util-ngrx/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/src/index.ts -------------------------------------------------------------------------------- /libs/client-util-ngrx/src/lib/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action-type.util'; 2 | -------------------------------------------------------------------------------- /libs/client-util-ngrx/src/lib/meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/src/lib/meta/index.ts -------------------------------------------------------------------------------- /libs/client-util-ngrx/src/lib/reducers/index.ts: -------------------------------------------------------------------------------- 1 | export type * from './reducer.util'; 2 | -------------------------------------------------------------------------------- /libs/client-util-ngrx/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util-ngrx/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-util-ngrx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util-ngrx/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util-ngrx/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util-ngrx/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util-ngrx/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-ngrx/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/README.md -------------------------------------------------------------------------------- /libs/client-util-security/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util-security/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/project.json -------------------------------------------------------------------------------- /libs/client-util-security/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/security'; 2 | -------------------------------------------------------------------------------- /libs/client-util-security/src/lib/security/index.ts: -------------------------------------------------------------------------------- 1 | export * from './bootstrap-environment-check'; 2 | -------------------------------------------------------------------------------- /libs/client-util-security/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util-security/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-util-security/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util-security/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util-security/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util-security/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util-security/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-security/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util-sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/README.md -------------------------------------------------------------------------------- /libs/client-util-sentry/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util-sentry/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/project.json -------------------------------------------------------------------------------- /libs/client-util-sentry/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/src/index.ts -------------------------------------------------------------------------------- /libs/client-util-sentry/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util-sentry/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-util-sentry/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util-sentry/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util-sentry/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util-sentry/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util-sentry/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util-sentry/vitest.config.mts -------------------------------------------------------------------------------- /libs/client-util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/README.md -------------------------------------------------------------------------------- /libs/client-util/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/eslint.config.mjs -------------------------------------------------------------------------------- /libs/client-util/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/project.json -------------------------------------------------------------------------------- /libs/client-util/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/src/index.ts -------------------------------------------------------------------------------- /libs/client-util/src/lib/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/src/lib/interfaces/index.ts -------------------------------------------------------------------------------- /libs/client-util/src/lib/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/src/lib/providers/index.ts -------------------------------------------------------------------------------- /libs/client-util/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/src/test-setup.ts -------------------------------------------------------------------------------- /libs/client-util/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/client-util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/tsconfig.json -------------------------------------------------------------------------------- /libs/client-util/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/client-util/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/client-util/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/vite.config.mts -------------------------------------------------------------------------------- /libs/client-util/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/client-util/vitest.config.mts -------------------------------------------------------------------------------- /libs/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/README.md -------------------------------------------------------------------------------- /libs/proto/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/eslint.config.mjs -------------------------------------------------------------------------------- /libs/proto/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/project.json -------------------------------------------------------------------------------- /libs/proto/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/index.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/common_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/common_pb.d.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/common_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/common_pb.js -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/index.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/root_grpc_web_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/root_grpc_web_pb.d.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/root_grpc_web_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/root_grpc_web_pb.js -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/root_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/root_pb.d.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/grpc/root_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/grpc/root_pb.js -------------------------------------------------------------------------------- /libs/proto/src/lib/ts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './nx-ng-starter_proto'; 2 | -------------------------------------------------------------------------------- /libs/proto/src/lib/ts/nx-ng-starter_proto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/ts/nx-ng-starter_proto.d.ts -------------------------------------------------------------------------------- /libs/proto/src/lib/ts/nx-ng-starter_proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/src/lib/ts/nx-ng-starter_proto.js -------------------------------------------------------------------------------- /libs/proto/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/tsconfig.eslint.json -------------------------------------------------------------------------------- /libs/proto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/tsconfig.json -------------------------------------------------------------------------------- /libs/proto/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/libs/proto/tsconfig.lib.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/package.json -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/diagrams/branching.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/diagrams/branching.mmd -------------------------------------------------------------------------------- /tools/diagrams/pr-validation-pipeline.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/diagrams/pr-validation-pipeline.mmd -------------------------------------------------------------------------------- /tools/diagrams/trunk-on-push-pipeline.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/diagrams/trunk-on-push-pipeline.mmd -------------------------------------------------------------------------------- /tools/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/eslint.config.mjs -------------------------------------------------------------------------------- /tools/executors/client-env/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/configure.spec.ts -------------------------------------------------------------------------------- /tools/executors/client-env/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/configure.ts -------------------------------------------------------------------------------- /tools/executors/client-env/env-base.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/env-base.spec.ts -------------------------------------------------------------------------------- /tools/executors/client-env/env-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/env-base.ts -------------------------------------------------------------------------------- /tools/executors/client-env/env-client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/env-client.spec.ts -------------------------------------------------------------------------------- /tools/executors/client-env/env-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/env-client.ts -------------------------------------------------------------------------------- /tools/executors/client-env/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/executor.json -------------------------------------------------------------------------------- /tools/executors/client-env/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/package.json -------------------------------------------------------------------------------- /tools/executors/client-env/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/schema.d.ts -------------------------------------------------------------------------------- /tools/executors/client-env/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/client-env/schema.json -------------------------------------------------------------------------------- /tools/executors/prettier/check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/check.spec.ts -------------------------------------------------------------------------------- /tools/executors/prettier/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/check.ts -------------------------------------------------------------------------------- /tools/executors/prettier/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/configure.spec.ts -------------------------------------------------------------------------------- /tools/executors/prettier/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/configure.ts -------------------------------------------------------------------------------- /tools/executors/prettier/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/executor.json -------------------------------------------------------------------------------- /tools/executors/prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/package.json -------------------------------------------------------------------------------- /tools/executors/prettier/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/schema.d.ts -------------------------------------------------------------------------------- /tools/executors/prettier/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/prettier/schema.json -------------------------------------------------------------------------------- /tools/executors/stylelint/check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/check.spec.ts -------------------------------------------------------------------------------- /tools/executors/stylelint/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/check.ts -------------------------------------------------------------------------------- /tools/executors/stylelint/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/configure.spec.ts -------------------------------------------------------------------------------- /tools/executors/stylelint/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/configure.ts -------------------------------------------------------------------------------- /tools/executors/stylelint/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/executor.json -------------------------------------------------------------------------------- /tools/executors/stylelint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/package.json -------------------------------------------------------------------------------- /tools/executors/stylelint/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/schema.d.ts -------------------------------------------------------------------------------- /tools/executors/stylelint/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/stylelint/schema.json -------------------------------------------------------------------------------- /tools/executors/tsc/check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/check.spec.ts -------------------------------------------------------------------------------- /tools/executors/tsc/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/check.ts -------------------------------------------------------------------------------- /tools/executors/tsc/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/configure.spec.ts -------------------------------------------------------------------------------- /tools/executors/tsc/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/configure.ts -------------------------------------------------------------------------------- /tools/executors/tsc/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/executor.json -------------------------------------------------------------------------------- /tools/executors/tsc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/package.json -------------------------------------------------------------------------------- /tools/executors/tsc/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/schema.d.ts -------------------------------------------------------------------------------- /tools/executors/tsc/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsc/schema.json -------------------------------------------------------------------------------- /tools/executors/tsconfig.executors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/tsconfig.executors.json -------------------------------------------------------------------------------- /tools/executors/workspace/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/workspace/commands.ts -------------------------------------------------------------------------------- /tools/executors/workspace/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/workspace/executor.json -------------------------------------------------------------------------------- /tools/executors/workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/workspace/package.json -------------------------------------------------------------------------------- /tools/executors/workspace/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface IExecutorOptions { 2 | search?: string; 3 | } 4 | -------------------------------------------------------------------------------- /tools/executors/workspace/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/executors/workspace/schema.json -------------------------------------------------------------------------------- /tools/js/trusted-types.policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/js/trusted-types.policy.js -------------------------------------------------------------------------------- /tools/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/project.json -------------------------------------------------------------------------------- /tools/proto/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/proto/common.proto -------------------------------------------------------------------------------- /tools/proto/root.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/proto/root.proto -------------------------------------------------------------------------------- /tools/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/README.md -------------------------------------------------------------------------------- /tools/shell/build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/build-android.sh -------------------------------------------------------------------------------- /tools/shell/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/build-docs.sh -------------------------------------------------------------------------------- /tools/shell/build-mobile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/build-mobile.sh -------------------------------------------------------------------------------- /tools/shell/build-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/build-utils.sh -------------------------------------------------------------------------------- /tools/shell/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/changelog.sh -------------------------------------------------------------------------------- /tools/shell/diagrams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/diagrams.sh -------------------------------------------------------------------------------- /tools/shell/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/docker/build.sh -------------------------------------------------------------------------------- /tools/shell/docker/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/docker/push.sh -------------------------------------------------------------------------------- /tools/shell/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/docker/run.sh -------------------------------------------------------------------------------- /tools/shell/docker/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/docker/task.sh -------------------------------------------------------------------------------- /tools/shell/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/e2e.sh -------------------------------------------------------------------------------- /tools/shell/firebase-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/firebase-deploy.sh -------------------------------------------------------------------------------- /tools/shell/generate-e2e-test-report-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/generate-e2e-test-report-index.sh -------------------------------------------------------------------------------- /tools/shell/generate-proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/generate-proto.sh -------------------------------------------------------------------------------- /tools/shell/git-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/git-extension.sh -------------------------------------------------------------------------------- /tools/shell/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/install.sh -------------------------------------------------------------------------------- /tools/shell/semver-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/semver-tag.sh -------------------------------------------------------------------------------- /tools/shell/set-documentation-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/set-documentation-env.sh -------------------------------------------------------------------------------- /tools/shell/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/test.sh -------------------------------------------------------------------------------- /tools/shell/utils/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/utils/colors.sh -------------------------------------------------------------------------------- /tools/shell/utils/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/utils/config.sh -------------------------------------------------------------------------------- /tools/shell/utils/module-aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/utils/module-aliases.sh -------------------------------------------------------------------------------- /tools/shell/utils/print-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/utils/print-utils.sh -------------------------------------------------------------------------------- /tools/shell/yarn-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/shell/yarn-extension.sh -------------------------------------------------------------------------------- /tools/ts/actions/changes/changes.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/actions/changes/changes.config.ts -------------------------------------------------------------------------------- /tools/ts/actions/changes/changes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/actions/changes/changes.ts -------------------------------------------------------------------------------- /tools/ts/actions/codeowners/codeowners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/actions/codeowners/codeowners.ts -------------------------------------------------------------------------------- /tools/ts/actions/projects/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/actions/projects/projects.ts -------------------------------------------------------------------------------- /tools/ts/utils/colors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/colors.spec.ts -------------------------------------------------------------------------------- /tools/ts/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/colors.ts -------------------------------------------------------------------------------- /tools/ts/utils/find-files.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/find-files.util.spec.ts -------------------------------------------------------------------------------- /tools/ts/utils/find-files.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/find-files.util.ts -------------------------------------------------------------------------------- /tools/ts/utils/logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/logger.spec.ts -------------------------------------------------------------------------------- /tools/ts/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/utils/logger.ts -------------------------------------------------------------------------------- /tools/ts/vitest.shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/vitest.shared.ts -------------------------------------------------------------------------------- /tools/ts/workspace/coverage-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/ts/workspace/coverage-stats.ts -------------------------------------------------------------------------------- /tools/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/tsconfig.eslint.json -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /tools/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/tsconfig.spec.json -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tools/tsconfig.ts-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/tsconfig.ts-tools.json -------------------------------------------------------------------------------- /tools/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/vite.config.mts -------------------------------------------------------------------------------- /tools/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/vitest.config.mts -------------------------------------------------------------------------------- /tools/workspace-plugin/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/eslint.config.mjs -------------------------------------------------------------------------------- /tools/workspace-plugin/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/generators.json -------------------------------------------------------------------------------- /tools/workspace-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/package.json -------------------------------------------------------------------------------- /tools/workspace-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/project.json -------------------------------------------------------------------------------- /tools/workspace-plugin/src/generators/client-feature/files/src/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/<%= kebabCaseName %>.module'; 2 | -------------------------------------------------------------------------------- /tools/workspace-plugin/src/generators/client-ui/files/src/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/<%= kebabCaseName %>.module'; 2 | -------------------------------------------------------------------------------- /tools/workspace-plugin/src/generators/client-util/files/src/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/<%= kebabCaseName %>.module'; 2 | -------------------------------------------------------------------------------- /tools/workspace-plugin/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/workspace-plugin/src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/src/utils/colors.ts -------------------------------------------------------------------------------- /tools/workspace-plugin/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/src/utils/logger.ts -------------------------------------------------------------------------------- /tools/workspace-plugin/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/tsconfig.eslint.json -------------------------------------------------------------------------------- /tools/workspace-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/tsconfig.json -------------------------------------------------------------------------------- /tools/workspace-plugin/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/tsconfig.lib.json -------------------------------------------------------------------------------- /tools/workspace-plugin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/tsconfig.spec.json -------------------------------------------------------------------------------- /tools/workspace-plugin/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/vite.config.mts -------------------------------------------------------------------------------- /tools/workspace-plugin/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tools/workspace-plugin/vitest.config.mts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.compodoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/tsconfig.compodoc.json -------------------------------------------------------------------------------- /vitest.shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/vitest.shared.ts -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- 1 | export default ['**/*/vite.config.{ts,mts}']; 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfprod/nx-ng-starter/HEAD/yarn.lock --------------------------------------------------------------------------------