├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .idea └── aws.xml ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── package.json ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── components │ ├── App.svelte │ ├── CollaborativeForm.svelte │ ├── Loading.svelte │ └── MadeWithLiveblocks.svelte ├── liveblocks.config.ts └── routes │ ├── +layout.svelte │ ├── +page.js │ ├── api │ ├── auth │ │ └── +server.ts │ └── webhook │ │ └── +server.ts │ └── new │ ├── +page.js │ └── [slug] │ └── +page.svelte ├── static └── favicon.png ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.idea/aws.xml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/components/App.svelte -------------------------------------------------------------------------------- /src/components/CollaborativeForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/components/CollaborativeForm.svelte -------------------------------------------------------------------------------- /src/components/Loading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/components/Loading.svelte -------------------------------------------------------------------------------- /src/components/MadeWithLiveblocks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/components/MadeWithLiveblocks.svelte -------------------------------------------------------------------------------- /src/liveblocks.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/liveblocks.config.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/+page.js -------------------------------------------------------------------------------- /src/routes/api/auth/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/api/auth/+server.ts -------------------------------------------------------------------------------- /src/routes/api/webhook/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/api/webhook/+server.ts -------------------------------------------------------------------------------- /src/routes/new/+page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/new/+page.js -------------------------------------------------------------------------------- /src/routes/new/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/src/routes/new/[slug]/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTNicholas/liveblocks-vercel-database-sync/HEAD/vite.config.ts --------------------------------------------------------------------------------