├── .firebaserc ├── .gitignore ├── .npmrc.example ├── README.md ├── app ├── App.tsx ├── entry-browser.tsx ├── entry-server.tsx ├── global.css ├── routes │ ├── 404.tsx │ ├── 500.tsx │ ├── index.css │ └── index.tsx └── tsconfig.json ├── config └── shared-tsconfig.json ├── firebase.json ├── functions ├── index.ts └── tsconfig.json ├── loaders ├── global.ts ├── routes │ └── index.ts └── tsconfig.json ├── package.json ├── public ├── corner.svg └── favicon.ico ├── remix.config.js └── tsconfig.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/.npmrc.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/README.md -------------------------------------------------------------------------------- /app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/App.tsx -------------------------------------------------------------------------------- /app/entry-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/entry-browser.tsx -------------------------------------------------------------------------------- /app/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/entry-server.tsx -------------------------------------------------------------------------------- /app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/global.css -------------------------------------------------------------------------------- /app/routes/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/routes/404.tsx -------------------------------------------------------------------------------- /app/routes/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/routes/500.tsx -------------------------------------------------------------------------------- /app/routes/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/routes/index.css -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /config/shared-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/config/shared-tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/functions/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /loaders/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/loaders/global.ts -------------------------------------------------------------------------------- /loaders/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/loaders/routes/index.ts -------------------------------------------------------------------------------- /loaders/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/loaders/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/package.json -------------------------------------------------------------------------------- /public/corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/public/corner.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/remix.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/remix-starter-firebase/HEAD/tsconfig.json --------------------------------------------------------------------------------