gitextract_a2ppqcxr/ ├── .browserslistrc ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── nodejs.yml ├── .gitignore ├── .nvmrc ├── LICENSE.md ├── Makefile ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── postcss.config.js ├── public/ │ └── index.html ├── src/ │ ├── App.vue │ ├── aws-exports.js │ ├── components/ │ │ ├── Footer.vue │ │ ├── Menu.vue │ │ └── auth/ │ │ └── Alert.vue │ ├── main.js │ ├── pages/ │ │ ├── Dashboard.vue │ │ ├── Home.vue │ │ └── auth/ │ │ ├── ChangePassword.vue │ │ ├── ConfirmPasswordReset.vue │ │ ├── ConfirmSignUp.vue │ │ ├── PasswordReset.vue │ │ ├── SignIn.vue │ │ ├── SignOut.vue │ │ └── SignUp.vue │ ├── router/ │ │ └── index.js │ └── store/ │ ├── index.js │ └── modules/ │ └── auth.js ├── tests/ │ └── unit/ │ └── footer.spec.js └── vue.config.js