├── .gitignore ├── README.md ├── firebase.json └── functions ├── .eslintrc.json ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules/ 3 | 4 | # misc 5 | .firebaserc 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Herohtar/netlify-cms-oauth-firebase/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Herohtar/netlify-cms-oauth-firebase/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Herohtar/netlify-cms-oauth-firebase/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Herohtar/netlify-cms-oauth-firebase/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Herohtar/netlify-cms-oauth-firebase/HEAD/functions/package.json --------------------------------------------------------------------------------