├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── app ├── entry.client.tsx ├── entry.server.tsx ├── root.tsx ├── routes │ └── index.tsx └── utils │ └── data.ts ├── images └── screenshot-types.png ├── package.json ├── patches └── @remix-run+dev+1.6.5.patch ├── public └── favicon.ico ├── remix.config.js ├── remix.env.d.ts └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/README.md -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/app/utils/data.ts -------------------------------------------------------------------------------- /images/screenshot-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/images/screenshot-types.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/package.json -------------------------------------------------------------------------------- /patches/@remix-run+dev+1.6.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/patches/@remix-run+dev+1.6.5.patch -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiliman/remix-superjson/HEAD/tsconfig.json --------------------------------------------------------------------------------