gitextract_kgk3g63p/ ├── .babelrc ├── .gitignore ├── Dockerfile ├── Jenkinsfile ├── LICENCE ├── README.md ├── bin/ │ ├── build │ ├── build-dev │ ├── npm │ ├── watch │ └── yarn ├── doc/ │ └── full-stack/ │ └── docker-compose.yml ├── docker-compose.yml ├── nodemon.json ├── package.json ├── src/ │ ├── backend/ │ │ ├── app.js │ │ ├── index.js │ │ ├── internal/ │ │ │ └── repo.js │ │ ├── lib/ │ │ │ ├── docker-registry.js │ │ │ ├── error.js │ │ │ ├── express/ │ │ │ │ ├── cors.js │ │ │ │ └── pagination.js │ │ │ ├── helpers.js │ │ │ └── validator/ │ │ │ ├── api.js │ │ │ └── index.js │ │ ├── logger.js │ │ ├── routes/ │ │ │ ├── api/ │ │ │ │ ├── main.js │ │ │ │ └── repos.js │ │ │ └── main.js │ │ └── schema/ │ │ ├── definitions.json │ │ ├── endpoints/ │ │ │ ├── rules.json │ │ │ ├── services.json │ │ │ ├── templates.json │ │ │ ├── tokens.json │ │ │ └── users.json │ │ ├── examples.json │ │ └── index.json │ └── frontend/ │ ├── app-images/ │ │ └── favicons/ │ │ ├── browserconfig.xml │ │ └── site.webmanifest │ ├── html/ │ │ └── index.html │ ├── js/ │ │ ├── actions.js │ │ ├── components/ │ │ │ ├── app/ │ │ │ │ ├── image-tag.js │ │ │ │ └── insecure-registries.js │ │ │ └── tabler/ │ │ │ ├── big-error.js │ │ │ ├── icon-stat-card.js │ │ │ ├── modal.js │ │ │ ├── nav.js │ │ │ ├── stat-card.js │ │ │ ├── table-body.js │ │ │ ├── table-card.js │ │ │ ├── table-head.js │ │ │ └── table-row.js │ │ ├── index.js │ │ ├── lib/ │ │ │ ├── api.js │ │ │ ├── manipulators.js │ │ │ └── utils.js │ │ ├── router.js │ │ ├── routes/ │ │ │ ├── image.js │ │ │ ├── images.js │ │ │ └── instructions/ │ │ │ ├── deleting.js │ │ │ ├── pulling.js │ │ │ └── pushing.js │ │ └── state.js │ └── scss/ │ └── styles.scss └── webpack.config.js