├── README.md ├── backend ├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── app.ts │ ├── db │ │ ├── db.ts │ │ └── queries.ts │ ├── index.ts │ ├── middleware │ │ └── auth.ts │ ├── routes │ │ ├── api.routes.ts │ │ ├── index.ts │ │ ├── secret.routes.ts │ │ └── user.routes.ts │ └── utils │ │ ├── authentication.ts │ │ └── env.ts └── tsconfig.json ├── frontend ├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── documents-icon.svg │ ├── favicon.ico │ ├── github-icon.svg │ └── logo.svg ├── src │ ├── app.css │ ├── app.tsx │ ├── context │ │ └── user.tsx │ ├── layouts │ │ └── layout.tsx │ ├── main.tsx │ ├── pages │ │ ├── HomePage.tsx │ │ ├── LoginPage.tsx │ │ ├── OnboardingPage.tsx │ │ ├── ProfilePage.tsx │ │ ├── SignupPage.tsx │ │ └── UserAreaPage.tsx │ ├── utils │ │ └── corbado-translations.ts │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── start.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/app.ts -------------------------------------------------------------------------------- /backend/src/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/db/db.ts -------------------------------------------------------------------------------- /backend/src/db/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/db/queries.ts -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/middleware/auth.ts -------------------------------------------------------------------------------- /backend/src/routes/api.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/routes/api.routes.ts -------------------------------------------------------------------------------- /backend/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/routes/index.ts -------------------------------------------------------------------------------- /backend/src/routes/secret.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/routes/secret.routes.ts -------------------------------------------------------------------------------- /backend/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/routes/user.routes.ts -------------------------------------------------------------------------------- /backend/src/utils/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/utils/authentication.ts -------------------------------------------------------------------------------- /backend/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/src/utils/env.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/documents-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/public/documents-icon.svg -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/public/github-icon.svg -------------------------------------------------------------------------------- /frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/public/logo.svg -------------------------------------------------------------------------------- /frontend/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/app.css -------------------------------------------------------------------------------- /frontend/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/app.tsx -------------------------------------------------------------------------------- /frontend/src/context/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/context/user.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/layouts/layout.tsx -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/LoginPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/OnboardingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/OnboardingPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/ProfilePage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SignupPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/SignupPage.tsx -------------------------------------------------------------------------------- /frontend/src/pages/UserAreaPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/pages/UserAreaPage.tsx -------------------------------------------------------------------------------- /frontend/src/utils/corbado-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/src/utils/corbado-translations.ts -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbado/passkeys-react-hono/HEAD/start.sh --------------------------------------------------------------------------------