├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── angular.json ├── apps ├── .gitkeep ├── tiny-app-e2e │ ├── cypress.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ ├── tsconfig.json │ └── tslint.json └── tiny-app │ ├── browserslist │ ├── jest.config.js │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── core.module.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── jest.config.js ├── libs ├── .gitkeep └── shared │ ├── assets │ ├── README.md │ └── src │ │ ├── assets │ │ ├── fonts │ │ │ └── .gitkeep │ │ ├── icons │ │ │ └── .gitkeep │ │ └── images │ │ │ ├── .gitkeep │ │ │ └── nx-logo-white.svg │ │ └── favicon.ico │ ├── data-access │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── reducers │ │ │ │ ├── debug.ts │ │ │ │ └── index.ts │ │ │ ├── shared-data-access.module.spec.ts │ │ │ └── shared-data-access.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json │ ├── environments │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── styles │ ├── README.md │ └── src │ ├── index.scss │ └── lib │ └── _global.scss ├── nx.json ├── package.json ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: LayZeeDK 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/angular.json -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/tiny-app-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/cypress.json -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/tiny-app-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/tiny-app-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/tiny-app-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/tiny-app-e2e/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app-e2e/tslint.json -------------------------------------------------------------------------------- /apps/tiny-app/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/browserslist -------------------------------------------------------------------------------- /apps/tiny-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/jest.config.js -------------------------------------------------------------------------------- /apps/tiny-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/app.component.html -------------------------------------------------------------------------------- /apps/tiny-app/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/tiny-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/app/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/app/core.module.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/index.html -------------------------------------------------------------------------------- /apps/tiny-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/main.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/src/polyfills.ts -------------------------------------------------------------------------------- /apps/tiny-app/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /apps/tiny-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/tiny-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/tsconfig.json -------------------------------------------------------------------------------- /apps/tiny-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/tiny-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/apps/tiny-app/tslint.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/assets/README.md: -------------------------------------------------------------------------------- 1 | # shared-assets 2 | -------------------------------------------------------------------------------- /libs/shared/assets/src/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/shared/assets/src/assets/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/shared/assets/src/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/shared/assets/src/assets/images/nx-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/assets/src/assets/images/nx-logo-white.svg -------------------------------------------------------------------------------- /libs/shared/assets/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/assets/src/favicon.ico -------------------------------------------------------------------------------- /libs/shared/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/README.md -------------------------------------------------------------------------------- /libs/shared/data-access/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/jest.config.js -------------------------------------------------------------------------------- /libs/shared/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-data-access.module'; 2 | -------------------------------------------------------------------------------- /libs/shared/data-access/src/lib/reducers/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/src/lib/reducers/debug.ts -------------------------------------------------------------------------------- /libs/shared/data-access/src/lib/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/src/lib/reducers/index.ts -------------------------------------------------------------------------------- /libs/shared/data-access/src/lib/shared-data-access.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/src/lib/shared-data-access.module.spec.ts -------------------------------------------------------------------------------- /libs/shared/data-access/src/lib/shared-data-access.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/src/lib/shared-data-access.module.ts -------------------------------------------------------------------------------- /libs/shared/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/shared/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/data-access/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/shared/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/data-access/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/data-access/tslint.json -------------------------------------------------------------------------------- /libs/shared/environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/README.md -------------------------------------------------------------------------------- /libs/shared/environments/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/jest.config.js -------------------------------------------------------------------------------- /libs/shared/environments/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/environment'; 2 | -------------------------------------------------------------------------------- /libs/shared/environments/src/lib/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /libs/shared/environments/src/lib/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/src/lib/environment.ts -------------------------------------------------------------------------------- /libs/shared/environments/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/shared/environments/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/environments/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/environments/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/shared/environments/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/environments/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/environments/tslint.json -------------------------------------------------------------------------------- /libs/shared/styles/README.md: -------------------------------------------------------------------------------- 1 | # shared-styles 2 | -------------------------------------------------------------------------------- /libs/shared/styles/src/index.scss: -------------------------------------------------------------------------------- 1 | @import './lib/global'; 2 | -------------------------------------------------------------------------------- /libs/shared/styles/src/lib/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/libs/shared/styles/src/lib/_global.scss -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/package.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayZeeDK/nx-tiny-app-project/HEAD/yarn.lock --------------------------------------------------------------------------------