├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── public ├── favicon.png ├── global.css ├── google.png └── index.html ├── rollup.config.js └── src ├── App.svelte ├── Components ├── Auth │ ├── Login.svelte │ └── Register.svelte └── Dashboard.svelte ├── firebase.js ├── main.js └── store.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | public/bundle.* 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/public/global.css -------------------------------------------------------------------------------- /public/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/public/google.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Components/Auth/Login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/Components/Auth/Login.svelte -------------------------------------------------------------------------------- /src/Components/Auth/Register.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/Components/Auth/Register.svelte -------------------------------------------------------------------------------- /src/Components/Dashboard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/Components/Dashboard.svelte -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/main.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricalamino/svelte-firebase-auth/HEAD/src/store.js --------------------------------------------------------------------------------