├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── angular.json ├── apps ├── .gitkeep ├── api │ ├── jest.config.js │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.spec.ts │ │ │ └── app.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── main.ts │ │ └── widgets │ │ │ ├── dto │ │ │ ├── create-widget.dto.ts │ │ │ └── update-widget.dto.ts │ │ │ ├── entities │ │ │ └── widget.entity.ts │ │ │ ├── widgets.controller.spec.ts │ │ │ ├── widgets.controller.ts │ │ │ ├── widgets.module.ts │ │ │ ├── widgets.service.spec.ts │ │ │ └── widgets.service.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── client-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 ├── client │ ├── .browserslistrc │ ├── jest.config.js │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── logo.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── dashboard-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 └── dashboard │ ├── .browserslistrc │ ├── jest.config.js │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── routing.module.ts │ │ └── widgets │ │ │ ├── widget-details │ │ │ ├── widget-details.component.html │ │ │ ├── widget-details.component.scss │ │ │ ├── widget-details.component.spec.ts │ │ │ └── widget-details.component.ts │ │ │ ├── widgets-list │ │ │ ├── widgets-list.component.html │ │ │ ├── widgets-list.component.scss │ │ │ ├── widgets-list.component.spec.ts │ │ │ └── widgets-list.component.ts │ │ │ ├── widgets.component.html │ │ │ ├── widgets.component.scss │ │ │ ├── widgets.component.spec.ts │ │ │ └── widgets.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── logo.png │ │ └── screenshots │ │ │ ├── api.png │ │ │ └── app.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── decorate-angular-cli.js ├── jest.config.js ├── jest.preset.js ├── libs ├── .gitkeep ├── api-interfaces │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── api-interfaces.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── core-data │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── core-data.module.ts │ │ │ └── services │ │ │ │ └── widgets │ │ │ │ ├── widgets.service.spec.ts │ │ │ │ └── widgets.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── core-state │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── core-state.module.ts │ │ │ ├── index.ts │ │ │ └── widgets │ │ │ │ ├── widgets.actions.ts │ │ │ │ ├── widgets.effects.spec.ts │ │ │ │ ├── widgets.effects.ts │ │ │ │ ├── widgets.facade.spec.ts │ │ │ │ ├── widgets.facade.ts │ │ │ │ ├── widgets.models.ts │ │ │ │ ├── widgets.reducer.spec.ts │ │ │ │ ├── widgets.reducer.ts │ │ │ │ ├── widgets.selectors.spec.ts │ │ │ │ └── widgets.selectors.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── material │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── material.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json └── ui-toolbar │ ├── README.md │ ├── jest.config.js │ ├── src │ ├── index.ts │ ├── lib │ │ ├── toolbar │ │ │ └── toolbar │ │ │ │ ├── toolbar.component.html │ │ │ │ ├── toolbar.component.scss │ │ │ │ ├── toolbar.component.spec.ts │ │ │ │ └── toolbar.component.ts │ │ └── ui-toolbar.module.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── nx.json ├── package.json ├── server └── db.json ├── slides.pdf ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.base.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/angular.json -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/jest.config.js -------------------------------------------------------------------------------- /apps/api/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/api/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/api/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/api/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/api/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/api/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/dto/create-widget.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateWidgetDto {} 2 | -------------------------------------------------------------------------------- /apps/api/src/widgets/dto/update-widget.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/dto/update-widget.dto.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/entities/widget.entity.ts: -------------------------------------------------------------------------------- 1 | export class Widget {} 2 | -------------------------------------------------------------------------------- /apps/api/src/widgets/widgets.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/widgets.controller.spec.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/widgets.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/widgets.controller.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/widgets.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/widgets.module.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/widgets.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/widgets.service.spec.ts -------------------------------------------------------------------------------- /apps/api/src/widgets/widgets.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/src/widgets/widgets.service.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/tsconfig.app.json -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/api/tslint.json -------------------------------------------------------------------------------- /apps/client-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/cypress.json -------------------------------------------------------------------------------- /apps/client-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/client-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/client-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/client-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/client-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/client-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/client-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/client-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/client-e2e/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client-e2e/tslint.json -------------------------------------------------------------------------------- /apps/client/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/.browserslistrc -------------------------------------------------------------------------------- /apps/client/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/jest.config.js -------------------------------------------------------------------------------- /apps/client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/app/app.component.html -------------------------------------------------------------------------------- /apps/client/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/assets/logo.png -------------------------------------------------------------------------------- /apps/client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/favicon.ico -------------------------------------------------------------------------------- /apps/client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/index.html -------------------------------------------------------------------------------- /apps/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/main.ts -------------------------------------------------------------------------------- /apps/client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/polyfills.ts -------------------------------------------------------------------------------- /apps/client/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/src/styles.scss -------------------------------------------------------------------------------- /apps/client/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /apps/client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/tsconfig.app.json -------------------------------------------------------------------------------- /apps/client/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/tsconfig.json -------------------------------------------------------------------------------- /apps/client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/client/tslint.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/cypress.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard-e2e/tslint.json -------------------------------------------------------------------------------- /apps/dashboard/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/.browserslistrc -------------------------------------------------------------------------------- /apps/dashboard/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/jest.config.js -------------------------------------------------------------------------------- /apps/dashboard/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/proxy.conf.json -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/app.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/home/home.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/home/home.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/routing.module.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widget-details/widget-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widget-details/widget-details.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widget-details/widget-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widget-details/widget-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widget-details/widget-details.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widget-details/widget-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widget-details/widget-details.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets-list/widgets-list.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/widgets/widgets.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/app/widgets/widgets.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/assets/logo.png -------------------------------------------------------------------------------- /apps/dashboard/src/assets/screenshots/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/assets/screenshots/api.png -------------------------------------------------------------------------------- /apps/dashboard/src/assets/screenshots/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/assets/screenshots/app.png -------------------------------------------------------------------------------- /apps/dashboard/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/dashboard/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/favicon.ico -------------------------------------------------------------------------------- /apps/dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/index.html -------------------------------------------------------------------------------- /apps/dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/main.ts -------------------------------------------------------------------------------- /apps/dashboard/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/polyfills.ts -------------------------------------------------------------------------------- /apps/dashboard/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/src/styles.scss -------------------------------------------------------------------------------- /apps/dashboard/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/tsconfig.app.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/dashboard/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/apps/dashboard/tslint.json -------------------------------------------------------------------------------- /decorate-angular-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/decorate-angular-cli.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/api-interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/README.md -------------------------------------------------------------------------------- /libs/api-interfaces/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/jest.config.js -------------------------------------------------------------------------------- /libs/api-interfaces/src/index.ts: -------------------------------------------------------------------------------- 1 | export { Message, Widget } from './lib/api-interfaces'; 2 | -------------------------------------------------------------------------------- /libs/api-interfaces/src/lib/api-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/src/lib/api-interfaces.ts -------------------------------------------------------------------------------- /libs/api-interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/tsconfig.json -------------------------------------------------------------------------------- /libs/api-interfaces/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/api-interfaces/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/api-interfaces/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/api-interfaces/tslint.json -------------------------------------------------------------------------------- /libs/core-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/README.md -------------------------------------------------------------------------------- /libs/core-data/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/jest.config.js -------------------------------------------------------------------------------- /libs/core-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/src/index.ts -------------------------------------------------------------------------------- /libs/core-data/src/lib/core-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/src/lib/core-data.module.ts -------------------------------------------------------------------------------- /libs/core-data/src/lib/services/widgets/widgets.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/src/lib/services/widgets/widgets.service.spec.ts -------------------------------------------------------------------------------- /libs/core-data/src/lib/services/widgets/widgets.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/src/lib/services/widgets/widgets.service.ts -------------------------------------------------------------------------------- /libs/core-data/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/core-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/tsconfig.json -------------------------------------------------------------------------------- /libs/core-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/core-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/core-data/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-data/tslint.json -------------------------------------------------------------------------------- /libs/core-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/README.md -------------------------------------------------------------------------------- /libs/core-state/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/jest.config.js -------------------------------------------------------------------------------- /libs/core-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/index.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/core-state.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/core-state.module.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/index.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.actions.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.effects.spec.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.effects.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.facade.spec.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.facade.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.models.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.reducer.spec.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.reducer.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.selectors.spec.ts -------------------------------------------------------------------------------- /libs/core-state/src/lib/widgets/widgets.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/src/lib/widgets/widgets.selectors.ts -------------------------------------------------------------------------------- /libs/core-state/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/core-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/tsconfig.json -------------------------------------------------------------------------------- /libs/core-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/core-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/core-state/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/core-state/tslint.json -------------------------------------------------------------------------------- /libs/material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/README.md -------------------------------------------------------------------------------- /libs/material/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/jest.config.js -------------------------------------------------------------------------------- /libs/material/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/material.module'; 2 | -------------------------------------------------------------------------------- /libs/material/src/lib/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/src/lib/material.module.ts -------------------------------------------------------------------------------- /libs/material/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/material/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/tsconfig.json -------------------------------------------------------------------------------- /libs/material/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/material/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/material/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/material/tslint.json -------------------------------------------------------------------------------- /libs/ui-toolbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/README.md -------------------------------------------------------------------------------- /libs/ui-toolbar/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/jest.config.js -------------------------------------------------------------------------------- /libs/ui-toolbar/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/src/index.ts -------------------------------------------------------------------------------- /libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.html -------------------------------------------------------------------------------- /libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.spec.ts -------------------------------------------------------------------------------- /libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/src/lib/toolbar/toolbar/toolbar.component.ts -------------------------------------------------------------------------------- /libs/ui-toolbar/src/lib/ui-toolbar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/src/lib/ui-toolbar.module.ts -------------------------------------------------------------------------------- /libs/ui-toolbar/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/ui-toolbar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/tsconfig.json -------------------------------------------------------------------------------- /libs/ui-toolbar/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui-toolbar/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ui-toolbar/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/libs/ui-toolbar/tslint.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/package.json -------------------------------------------------------------------------------- /server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/server/db.json -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/slides.pdf -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/fem-production-angular/HEAD/yarn.lock --------------------------------------------------------------------------------