gitextract_tc2n1gmc/ ├── .babelrc ├── .editorconfig ├── .eslintrc ├── .firebaserc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── database.rules.json ├── firebase.json ├── jsconfig.json ├── package.json ├── src/ │ ├── app/ │ │ ├── actions/ │ │ │ ├── firebase_actions.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── bundle.scss │ │ ├── components/ │ │ │ ├── app.jsx │ │ │ ├── app.scss │ │ │ ├── helpers/ │ │ │ │ └── loading.jsx │ │ │ ├── index_home.jsx │ │ │ └── user/ │ │ │ ├── change_password.jsx │ │ │ ├── login.jsx │ │ │ ├── logout.jsx │ │ │ ├── profile.jsx │ │ │ ├── register.jsx │ │ │ └── reset_password.jsx │ │ ├── config.js │ │ ├── index.jsx │ │ ├── reducers/ │ │ │ ├── firebase_user_reducer.js │ │ │ └── index.js │ │ ├── routes.jsx │ │ └── utils/ │ │ ├── authenticated.js │ │ └── firebase.js │ └── index.html ├── test/ │ ├── components/ │ │ └── app_test.js │ └── test_helper.js ├── webpack/ │ ├── webpack-dev.config.js │ ├── webpack-prod.config.js │ └── webpack.config.js └── www.js