├── .eslintrc.json ├── .firebaserc ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── firebase.json ├── package.json ├── public ├── global.css └── index.html ├── rollup.config.js └── src ├── App.svelte ├── Child.svelte ├── Firebase.js ├── components ├── AddCat.svelte ├── Instructions.svelte ├── ListCatFacts.svelte └── SignIn.svelte ├── main.js └── random.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | public/bundle.* 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/package.json -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Child.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/Child.svelte -------------------------------------------------------------------------------- /src/Firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/Firebase.js -------------------------------------------------------------------------------- /src/components/AddCat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/components/AddCat.svelte -------------------------------------------------------------------------------- /src/components/Instructions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/components/Instructions.svelte -------------------------------------------------------------------------------- /src/components/ListCatFacts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/components/ListCatFacts.svelte -------------------------------------------------------------------------------- /src/components/SignIn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/components/SignIn.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/main.js -------------------------------------------------------------------------------- /src/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingCatDev/rxfire-svelte3/HEAD/src/random.js --------------------------------------------------------------------------------