gitextract_obradcba/ ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nvmrc ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── Dockerfile ├── Dockerfile-dev ├── LICENSE ├── README.md ├── config/ │ ├── build-utils.js │ ├── config.common.json │ ├── config.dev.json │ ├── config.prod.json │ ├── empty.js │ ├── github-deploy/ │ │ └── index.js │ ├── head-config.common.js │ ├── helpers.js │ ├── html-elements-plugin/ │ │ └── index.js │ ├── karma.conf.js │ ├── nginx-custom.conf │ ├── protractor.conf.js │ ├── resource-override.js │ ├── spec-bundle.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.github-deploy.js │ ├── webpack.prod.js │ └── webpack.test.js ├── docker-compose.yml ├── firebase.json ├── karma.conf.js ├── netlify.toml ├── package.json ├── protractor.conf.js ├── sonar-project.properties ├── src/ │ ├── app/ │ │ ├── +barrel/ │ │ │ ├── +child-barrel/ │ │ │ │ ├── child-barrel.component.ts │ │ │ │ ├── child-barrel.module.ts │ │ │ │ ├── child-barrel.routes.ts │ │ │ │ └── index.ts │ │ │ ├── barrel.component.ts │ │ │ ├── barrel.module.ts │ │ │ ├── barrel.routes.ts │ │ │ └── index.ts │ │ ├── +detail/ │ │ │ ├── +child-detail/ │ │ │ │ ├── child-detail.component.ts │ │ │ │ ├── child-detail.module.ts │ │ │ │ ├── child-detail.routes.ts │ │ │ │ └── index.ts │ │ │ ├── detail.component.ts │ │ │ ├── detail.module.ts │ │ │ ├── detail.routes.ts │ │ │ └── index.ts │ │ ├── +dev-module/ │ │ │ ├── dev-module.component.ts │ │ │ ├── dev-module.module.ts │ │ │ ├── dev-module.routes.ts │ │ │ └── index.ts │ │ ├── about/ │ │ │ ├── about.component.spec.ts │ │ │ ├── about.component.ts │ │ │ └── index.ts │ │ ├── app.component.css │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.e2e.ts │ │ ├── app.module.ts │ │ ├── app.resolver.ts │ │ ├── app.routes.ts │ │ ├── app.service.ts │ │ ├── home/ │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ ├── home.e2e.ts │ │ │ ├── index.ts │ │ │ ├── title/ │ │ │ │ ├── index.ts │ │ │ │ ├── title.service.spec.ts │ │ │ │ └── title.service.ts │ │ │ └── x-large/ │ │ │ ├── index.ts │ │ │ ├── x-large.directive.spec.ts │ │ │ └── x-large.directive.ts │ │ ├── index.ts │ │ └── no-content/ │ │ ├── index.ts │ │ └── no-content.component.ts │ ├── assets/ │ │ ├── css/ │ │ │ └── .gitkeep │ │ ├── data.json │ │ ├── humans.txt │ │ ├── icon/ │ │ │ └── browserconfig.xml │ │ ├── manifest.json │ │ ├── mock-data/ │ │ │ └── mock-data.json │ │ ├── robots.txt │ │ └── service-worker.js │ ├── custom-typings.d.ts │ ├── environments/ │ │ ├── environment.e2e.prod.ts │ │ ├── environment.prod.ts │ │ ├── environment.ts │ │ └── model.ts │ ├── index.html │ ├── main.browser.ts │ ├── meta/ │ │ ├── humans.txt │ │ └── robots.txt │ ├── polyfills.browser.ts │ └── styles/ │ ├── _variables.scss │ ├── headings.css │ └── styles.scss ├── tsconfig.json ├── tsconfig.webpack.json ├── tslint.json ├── typedoc.json └── webpack.config.js