gitextract_860_bhxe/ ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── LICENSE ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── quasar.conf.js ├── src/ │ ├── App.vue │ ├── boot/ │ │ ├── .gitkeep │ │ └── firebase.js │ ├── css/ │ │ ├── app.sass │ │ └── quasar.variables.sass │ ├── index.template.html │ ├── layouts/ │ │ └── MainLayout.vue │ ├── pages/ │ │ ├── Error404.vue │ │ ├── PageAbout.vue │ │ └── PageHome.vue │ └── router/ │ ├── index.js │ └── routes.js ├── src-cordova/ │ ├── .gitignore │ ├── config.xml │ ├── cordova-flag.d.ts │ └── package.json └── src-electron/ ├── electron-flag.d.ts ├── icons/ │ └── icon.icns └── main-process/ ├── electron-main.dev.js └── electron-main.js