├── .babelrc ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintrc.json ├── .github ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierrc ├── Caddyfile ├── Dockerfile ├── LICENSE ├── README.md ├── config-overrides.js ├── manualLicense.json ├── package.json ├── public └── index.html ├── renovate.json ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── Error.tsx ├── assets │ └── logo.svg ├── components │ ├── Done.tsx │ └── Welcome.tsx ├── env.ts ├── hooks │ └── useOidcMfa.ts ├── index.tsx ├── react-app-env.d.ts ├── setupTests.ts └── utils │ └── logger.ts ├── thirdPartyLicenseCollector_linux_amd64 ├── tsconfig.json ├── vercel.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | 2 | . "$(dirname "$0")/_/husky.sh" 3 | yarn run format-lint 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/.prettierrc -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/config-overrides.js -------------------------------------------------------------------------------- /manualLicense.json: -------------------------------------------------------------------------------- 1 | { 2 | "babel-plugin-transform-export-extensions": "MIT" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/public/index.html -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/renovate.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/Error.tsx -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/Done.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/components/Done.tsx -------------------------------------------------------------------------------- /src/components/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/components/Welcome.tsx -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/hooks/useOidcMfa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/hooks/useOidcMfa.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /thirdPartyLicenseCollector_linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/thirdPartyLicenseCollector_linux_amd64 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/auth-hosting/HEAD/yarn.lock --------------------------------------------------------------------------------