├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .eslintrc.js ├── .github ├── actions │ ├── setup-indy-pool │ │ └── action.yml │ ├── setup-libindy │ │ └── action.yml │ └── setup-node │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── continuous-deployment.yml │ └── continuous-integration.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── client ├── .dockerignore ├── .env.example ├── Dockerfile ├── nginx.conf ├── package.json ├── postcss.config.js ├── public │ ├── apple-touch-icon.png │ ├── favicon-dark.ico │ ├── favicon-light.ico │ ├── favicon.svg │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── robots.txt │ ├── seo-logo.jpg │ └── sitemap.xml ├── src │ ├── App.tsx │ ├── FramerAnimations.tsx │ ├── api │ │ ├── BaseUrl.ts │ │ ├── CharacterApi.ts │ │ ├── ConnectionApi.ts │ │ ├── CredentialApi.ts │ │ ├── ProofApi.ts │ │ ├── UseCaseApi.ts │ │ ├── UtilApi.ts │ │ ├── WalletApi.ts │ │ └── Webhook.ts │ ├── assets │ │ ├── Line.tsx │ │ ├── dark │ │ │ ├── TriangleDark.tsx │ │ │ ├── animo-home-illustration-dark.svg │ │ │ ├── animo-logo-dark.png │ │ │ ├── animo-triangle-logo-dark.png │ │ │ ├── app-store-dark.svg │ │ │ ├── documents-rounded-dark.svg │ │ │ ├── icon-arrow-light.png │ │ │ ├── icon-balloon-dark.svg │ │ │ ├── icon-moon-dark.svg │ │ │ ├── icon-notification-dark.svg │ │ │ ├── icon-person-dark.svg │ │ │ ├── icon-qr-dark.svg │ │ │ ├── icon-wallet-dark.svg │ │ │ ├── icon-welcome-dark.svg │ │ │ ├── onboarding-choose-dark.svg │ │ │ ├── onboarding-completed-dark.svg │ │ │ ├── onboarding-connect-dark.svg │ │ │ ├── onboarding-credential-dark.svg │ │ │ ├── onboarding-secure-dark.svg │ │ │ ├── onboarding-started-dark.svg │ │ │ ├── onboarding-wallet-dark.svg │ │ │ ├── phone-dark.svg │ │ │ └── phone-rounded-dark.svg │ │ └── light │ │ │ ├── TriangleLight.tsx │ │ │ ├── animo-home-illustration-light.svg │ │ │ ├── animo-logo-light.png │ │ │ ├── animo-triangle-logo-light.png │ │ │ ├── documents-rounded-light.svg │ │ │ ├── icon-app-store.png │ │ │ ├── icon-arrow-dark.svg │ │ │ ├── icon-balloon-light.svg │ │ │ ├── icon-moon-light.svg │ │ │ ├── icon-notification-light.svg │ │ │ ├── icon-person-light.svg │ │ │ ├── icon-play-store.png │ │ │ ├── icon-qr-light.svg │ │ │ ├── icon-wallet-light.svg │ │ │ ├── icon-welcome-light.svg │ │ │ ├── onboarding-choose-light.svg │ │ │ ├── onboarding-completed-light.svg │ │ │ ├── onboarding-connect-light.svg │ │ │ ├── onboarding-credential-light.svg │ │ │ ├── onboarding-secure-light.svg │ │ │ ├── onboarding-started-light.svg │ │ │ ├── onboarding-wallet-light.svg │ │ │ ├── phone-light.svg │ │ │ └── phone-rounded-light.svg │ ├── components │ │ ├── ActionCTA.tsx │ │ ├── BackButton.tsx │ │ ├── Button.tsx │ │ ├── Checkmark.tsx │ │ ├── DarkModeContainer.tsx │ │ ├── DarkModeSwitcher.tsx │ │ ├── Loader.tsx │ │ ├── Logo.tsx │ │ ├── Modal.tsx │ │ ├── QRCode.tsx │ │ ├── SmallButton.tsx │ │ ├── SmallButtonText.tsx │ │ └── StateIndicator.tsx │ ├── hooks │ │ ├── hooks.ts │ │ ├── useAnalytics.tsx │ │ ├── useAuth.tsx │ │ ├── useDarkMode.tsx │ │ ├── useInterval.tsx │ │ └── useTitle.tsx │ ├── index.css │ ├── index.tsx │ ├── pages │ │ ├── PageNotFound.tsx │ │ ├── dashboard │ │ │ ├── DashboardPage.tsx │ │ │ └── components │ │ │ │ ├── DashboardCard.tsx │ │ │ │ ├── DemoCompletedModal.tsx │ │ │ │ ├── ProfileCard.tsx │ │ │ │ ├── StartButton.tsx │ │ │ │ ├── UseCaseContainer.tsx │ │ │ │ └── UseCaseItem.tsx │ │ ├── landing │ │ │ ├── LandingPage.tsx │ │ │ └── components │ │ │ │ ├── Footer.tsx │ │ │ │ ├── MainSection.tsx │ │ │ │ └── Navbar.tsx │ │ ├── onboarding │ │ │ ├── OnboardingContainer.tsx │ │ │ ├── OnboardingPage.tsx │ │ │ ├── components │ │ │ │ ├── CharacterContent.tsx │ │ │ │ ├── Credential.tsx │ │ │ │ ├── CredentialSkeleton.tsx │ │ │ │ ├── FailedRequestModal.tsx │ │ │ │ ├── OnboardingBottomNav.tsx │ │ │ │ ├── StarterCredentials.tsx │ │ │ │ ├── StepInformation.tsx │ │ │ │ ├── Stepper.tsx │ │ │ │ ├── StepperItem.tsx │ │ │ │ ├── WalletItem.tsx │ │ │ │ └── WalletModal.tsx │ │ │ └── steps │ │ │ │ ├── AcceptCredential.tsx │ │ │ │ ├── ChooseWallet.tsx │ │ │ │ ├── ConnectionComplete.tsx │ │ │ │ ├── PickCharacter.tsx │ │ │ │ ├── SetupCompleted.tsx │ │ │ │ ├── SetupConnection.tsx │ │ │ │ └── SetupStart.tsx │ │ └── useCase │ │ │ ├── Section.tsx │ │ │ ├── SideView.tsx │ │ │ ├── UseCasePage.tsx │ │ │ ├── components │ │ │ ├── ActionCard.tsx │ │ │ ├── ConnectionCard.tsx │ │ │ ├── EndContainer.tsx │ │ │ ├── ProofAttributesCard.tsx │ │ │ ├── ProofCard.tsx │ │ │ ├── StartContainer.tsx │ │ │ ├── StarterInfo.tsx │ │ │ ├── StepInfo.tsx │ │ │ └── StepperCard.tsx │ │ │ └── steps │ │ │ ├── StepConnection.tsx │ │ │ ├── StepCredential.tsx │ │ │ ├── StepInformation.tsx │ │ │ ├── StepProof.tsx │ │ │ └── StepProofOOB.tsx │ ├── react-app-env.d.ts │ ├── slices │ │ ├── characters │ │ │ ├── charactersSelectors.ts │ │ │ ├── charactersSlice.ts │ │ │ └── charactersThunks.ts │ │ ├── connection │ │ │ ├── connectionSelectors.ts │ │ │ ├── connectionSlice.ts │ │ │ └── connectionThunks.ts │ │ ├── credentials │ │ │ ├── credentialsSelectors.ts │ │ │ ├── credentialsSlice.ts │ │ │ └── credentialsThunks.ts │ │ ├── index.ts │ │ ├── onboarding │ │ │ ├── onboardingSelectors.ts │ │ │ └── onboardingSlice.ts │ │ ├── preferences │ │ │ ├── preferencesSelectors.ts │ │ │ ├── preferencesSlice.ts │ │ │ └── preferencesThunks.ts │ │ ├── proof │ │ │ ├── proofSelectors.ts │ │ │ ├── proofSlice.ts │ │ │ └── proofThunks.ts │ │ ├── section │ │ │ ├── sectionSelectors.ts │ │ │ └── sectionSlice.ts │ │ ├── types.ts │ │ ├── useCases │ │ │ ├── useCasesSelectors.ts │ │ │ ├── useCasesSlice.ts │ │ │ └── useCasesThunks.ts │ │ └── wallets │ │ │ ├── walletsSelectors.ts │ │ │ ├── walletsSlice.ts │ │ │ └── walletsThunks.ts │ ├── store │ │ └── configureStore.tsx │ └── utils │ │ ├── Analytics.ts │ │ ├── AuthContext.tsx │ │ ├── KBar.tsx │ │ ├── OnboardingSteps.tsx │ │ ├── OnboardingUtils.tsx │ │ ├── PrivateRoute.tsx │ │ ├── ProofUtils.tsx │ │ ├── RenderResults.tsx │ │ ├── ThemeContext.tsx │ │ └── Url.tsx ├── tailwind.config.js └── tsconfig.json ├── config └── nginx.conf ├── cypress.config.ts ├── cypress ├── config │ ├── event.ts │ └── websocket.ts ├── e2e │ ├── home_page.cy.ts │ ├── issue_credential_version_1_use_case.cy.ts │ ├── issue_credential_version_2_use_case.cy.ts │ ├── legacy_invitation_usecase_page.cy.ts │ └── oob_invitation_usecase.cy.ts ├── plugins │ └── index.js ├── support │ ├── commands.js │ └── e2e.js ├── tsconfig.json └── types │ └── event.ts ├── docker-compose.yml ├── package.json ├── server ├── .dockerignore ├── .env.example ├── Dockerfile ├── package.json ├── src │ ├── content │ │ ├── Characters.ts │ │ ├── UseCases.ts │ │ ├── businessWoman │ │ │ ├── BusinessWoman.ts │ │ │ ├── BusinesswomanUseCases.ts │ │ │ └── useCases │ │ │ │ ├── Airtravel.ts │ │ │ │ ├── Conference.ts │ │ │ │ └── Hotel.ts │ │ ├── millennial │ │ │ ├── Millennial.ts │ │ │ ├── MillennialUseCases.ts │ │ │ └── useCases │ │ │ │ ├── House.ts │ │ │ │ ├── Job.ts │ │ │ │ └── Laptop.ts │ │ ├── misc │ │ │ └── Wallets.ts │ │ ├── student │ │ │ ├── Student.ts │ │ │ ├── StudentUseCases.ts │ │ │ └── useCases │ │ │ │ ├── Club.ts │ │ │ │ ├── School.ts │ │ │ │ └── Sport.ts │ │ └── types.ts │ ├── controllers │ │ ├── CharacterController.ts │ │ ├── CredDefService.ts │ │ ├── CredentialController.ts │ │ ├── UseCaseController.ts │ │ └── WalletController.ts │ ├── index.ts │ ├── public │ │ ├── animo-logo.png │ │ ├── businesswoman │ │ │ ├── businesswoman.svg │ │ │ ├── icon-businesswoman.svg │ │ │ ├── icon-creditcard.png │ │ │ └── useCases │ │ │ │ ├── airtravel │ │ │ │ ├── airtravel-beach.svg │ │ │ │ ├── airtravel-calendar.svg │ │ │ │ ├── airtravel-card.svg │ │ │ │ ├── airtravel-details.svg │ │ │ │ ├── airtravel-laptop.svg │ │ │ │ ├── airtravel-secure.svg │ │ │ │ ├── icon-airline.png │ │ │ │ ├── icon-airplane.png │ │ │ │ └── icon-ticket.png │ │ │ │ ├── conference │ │ │ │ ├── conference-card.svg │ │ │ │ ├── conference-connected.svg │ │ │ │ ├── conference-laptop.svg │ │ │ │ ├── conference-line-waiting.svg │ │ │ │ ├── conference-phone-attributes.svg │ │ │ │ ├── conference-phone-notification.svg │ │ │ │ ├── conference-safe.svg │ │ │ │ ├── conference-share-information.svg │ │ │ │ ├── icon-conference-pass.svg │ │ │ │ ├── icon-conference.svg │ │ │ │ ├── icon-dave.svg │ │ │ │ ├── icon-employee.svg │ │ │ │ └── logo-conference.png │ │ │ │ └── hotel │ │ │ │ ├── hotel-card.svg │ │ │ │ ├── hotel-counter.svg │ │ │ │ ├── hotel-icon-keycard.png │ │ │ │ ├── hotel-keycard.svg │ │ │ │ ├── hotel-logo-hotel.png │ │ │ │ ├── hotel-qr.svg │ │ │ │ ├── hotel-sleep.svg │ │ │ │ └── hotel-start.png │ │ ├── millennial │ │ │ ├── icon-crypto-wallet.png │ │ │ ├── icon-degree.svg │ │ │ ├── icon-millennial.svg │ │ │ ├── millennial.svg │ │ │ └── useCases │ │ │ │ ├── house │ │ │ │ ├── house-agreement.svg │ │ │ │ ├── house-card.svg │ │ │ │ ├── house-happy.svg │ │ │ │ ├── house-icon-rent.png │ │ │ │ ├── house-icon.png │ │ │ │ ├── house-logo.png │ │ │ │ ├── house-searching.svg │ │ │ │ ├── house-secure.svg │ │ │ │ └── house-talking.svg │ │ │ │ ├── job │ │ │ │ ├── job-behind-laptop.svg │ │ │ │ ├── job-card.svg │ │ │ │ ├── job-celebration.svg │ │ │ │ ├── job-icon-company.png │ │ │ │ ├── job-icon-proof-of-employment.png │ │ │ │ ├── job-icon.png │ │ │ │ ├── job-interview.svg │ │ │ │ ├── job-onboarding.svg │ │ │ │ └── job-private.svg │ │ │ │ └── laptop │ │ │ │ ├── laptop-card.svg │ │ │ │ ├── laptop-happy.svg │ │ │ │ ├── laptop-invoice.png │ │ │ │ ├── laptop-paying.svg │ │ │ │ ├── laptop-searching.svg │ │ │ │ ├── laptop-selected.svg │ │ │ │ ├── laptop-start.png │ │ │ │ └── laptop-store-logo.png │ │ ├── student │ │ │ ├── icon-student.svg │ │ │ ├── student.svg │ │ │ └── useCases │ │ │ │ ├── club │ │ │ │ ├── club-card.svg │ │ │ │ ├── club-dancing.svg │ │ │ │ ├── club-data.svg │ │ │ │ ├── club-line-waiting.svg │ │ │ │ ├── club-logo-club.png │ │ │ │ ├── club-scan-qr.svg │ │ │ │ └── club-start-icon.png │ │ │ │ ├── school │ │ │ │ ├── card-school.svg │ │ │ │ ├── icon-university-card.png │ │ │ │ ├── logo-university.png │ │ │ │ ├── school-icon.png │ │ │ │ ├── student-accepted.svg │ │ │ │ ├── student-fill-out.svg │ │ │ │ ├── student-in-books.svg │ │ │ │ ├── student-on-laptop.svg │ │ │ │ └── student-secure.svg │ │ │ │ └── sport │ │ │ │ ├── card-sport.svg │ │ │ │ ├── icon-membership.png │ │ │ │ ├── logo-gym.png │ │ │ │ ├── sport-fill-out.svg │ │ │ │ ├── sport-fitness.svg │ │ │ │ ├── sport-happy.svg │ │ │ │ └── sport-pilates.svg │ │ └── wallets │ │ │ ├── icon-bc-wallet.jpeg │ │ │ ├── icon-holdr+.jpeg │ │ │ ├── icon-lissi.jpeg │ │ │ ├── icon-orbit-edge.png │ │ │ └── icon-trinsic.jpeg │ └── utils │ │ ├── AgentCleanup.ts │ │ ├── TestAgent.ts │ │ ├── logger.ts │ │ └── utils.ts └── tsconfig.json ├── tsconfig.build.json ├── tsconfig.eslint.json ├── tsconfig.json └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/setup-indy-pool/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/actions/setup-indy-pool/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-libindy/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/actions/setup-libindy/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/actions/setup-node/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/workflows/continuous-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.10.0 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/README.md -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/nginx.conf -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/apple-touch-icon.png -------------------------------------------------------------------------------- /client/public/favicon-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/favicon-dark.ico -------------------------------------------------------------------------------- /client/public/favicon-light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/favicon-light.ico -------------------------------------------------------------------------------- /client/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/favicon.svg -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/public/seo-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/seo-logo.jpg -------------------------------------------------------------------------------- /client/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/public/sitemap.xml -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/FramerAnimations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/FramerAnimations.tsx -------------------------------------------------------------------------------- /client/src/api/BaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/BaseUrl.ts -------------------------------------------------------------------------------- /client/src/api/CharacterApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/CharacterApi.ts -------------------------------------------------------------------------------- /client/src/api/ConnectionApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/ConnectionApi.ts -------------------------------------------------------------------------------- /client/src/api/CredentialApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/CredentialApi.ts -------------------------------------------------------------------------------- /client/src/api/ProofApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/ProofApi.ts -------------------------------------------------------------------------------- /client/src/api/UseCaseApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/UseCaseApi.ts -------------------------------------------------------------------------------- /client/src/api/UtilApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/UtilApi.ts -------------------------------------------------------------------------------- /client/src/api/WalletApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/WalletApi.ts -------------------------------------------------------------------------------- /client/src/api/Webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/api/Webhook.ts -------------------------------------------------------------------------------- /client/src/assets/Line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/Line.tsx -------------------------------------------------------------------------------- /client/src/assets/dark/TriangleDark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/TriangleDark.tsx -------------------------------------------------------------------------------- /client/src/assets/dark/animo-home-illustration-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/animo-home-illustration-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/animo-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/animo-logo-dark.png -------------------------------------------------------------------------------- /client/src/assets/dark/animo-triangle-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/animo-triangle-logo-dark.png -------------------------------------------------------------------------------- /client/src/assets/dark/app-store-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/app-store-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/documents-rounded-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/documents-rounded-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-arrow-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-arrow-light.png -------------------------------------------------------------------------------- /client/src/assets/dark/icon-balloon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-balloon-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-moon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-moon-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-notification-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-notification-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-person-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-person-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-qr-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-qr-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-wallet-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/icon-welcome-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/icon-welcome-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-choose-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-choose-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-completed-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-completed-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-connect-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-connect-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-credential-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-credential-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-secure-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-secure-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-started-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-started-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/onboarding-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/onboarding-wallet-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/phone-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/phone-dark.svg -------------------------------------------------------------------------------- /client/src/assets/dark/phone-rounded-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/dark/phone-rounded-dark.svg -------------------------------------------------------------------------------- /client/src/assets/light/TriangleLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/TriangleLight.tsx -------------------------------------------------------------------------------- /client/src/assets/light/animo-home-illustration-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/animo-home-illustration-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/animo-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/animo-logo-light.png -------------------------------------------------------------------------------- /client/src/assets/light/animo-triangle-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/animo-triangle-logo-light.png -------------------------------------------------------------------------------- /client/src/assets/light/documents-rounded-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/documents-rounded-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-app-store.png -------------------------------------------------------------------------------- /client/src/assets/light/icon-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-arrow-dark.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-balloon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-balloon-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-moon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-moon-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-notification-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-notification-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-person-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-person-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-play-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-play-store.png -------------------------------------------------------------------------------- /client/src/assets/light/icon-qr-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-qr-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-wallet-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-wallet-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/icon-welcome-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/icon-welcome-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-choose-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-choose-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-completed-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-completed-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-connect-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-connect-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-credential-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-credential-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-secure-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-secure-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-started-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-started-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/onboarding-wallet-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/onboarding-wallet-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/phone-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/phone-light.svg -------------------------------------------------------------------------------- /client/src/assets/light/phone-rounded-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/assets/light/phone-rounded-light.svg -------------------------------------------------------------------------------- /client/src/components/ActionCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/ActionCTA.tsx -------------------------------------------------------------------------------- /client/src/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/BackButton.tsx -------------------------------------------------------------------------------- /client/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/Button.tsx -------------------------------------------------------------------------------- /client/src/components/Checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/Checkmark.tsx -------------------------------------------------------------------------------- /client/src/components/DarkModeContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/DarkModeContainer.tsx -------------------------------------------------------------------------------- /client/src/components/DarkModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/DarkModeSwitcher.tsx -------------------------------------------------------------------------------- /client/src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/Loader.tsx -------------------------------------------------------------------------------- /client/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/Logo.tsx -------------------------------------------------------------------------------- /client/src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/Modal.tsx -------------------------------------------------------------------------------- /client/src/components/QRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/QRCode.tsx -------------------------------------------------------------------------------- /client/src/components/SmallButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/SmallButton.tsx -------------------------------------------------------------------------------- /client/src/components/SmallButtonText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/SmallButtonText.tsx -------------------------------------------------------------------------------- /client/src/components/StateIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/components/StateIndicator.tsx -------------------------------------------------------------------------------- /client/src/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/hooks.ts -------------------------------------------------------------------------------- /client/src/hooks/useAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/useAnalytics.tsx -------------------------------------------------------------------------------- /client/src/hooks/useAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/useAuth.tsx -------------------------------------------------------------------------------- /client/src/hooks/useDarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/useDarkMode.tsx -------------------------------------------------------------------------------- /client/src/hooks/useInterval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/useInterval.tsx -------------------------------------------------------------------------------- /client/src/hooks/useTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/hooks/useTitle.tsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/pages/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/PageNotFound.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/DashboardPage.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/DashboardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/DashboardCard.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/DemoCompletedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/DemoCompletedModal.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/ProfileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/ProfileCard.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/StartButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/StartButton.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/UseCaseContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/UseCaseContainer.tsx -------------------------------------------------------------------------------- /client/src/pages/dashboard/components/UseCaseItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/dashboard/components/UseCaseItem.tsx -------------------------------------------------------------------------------- /client/src/pages/landing/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/landing/LandingPage.tsx -------------------------------------------------------------------------------- /client/src/pages/landing/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/landing/components/Footer.tsx -------------------------------------------------------------------------------- /client/src/pages/landing/components/MainSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/landing/components/MainSection.tsx -------------------------------------------------------------------------------- /client/src/pages/landing/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/landing/components/Navbar.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/OnboardingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/OnboardingContainer.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/OnboardingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/OnboardingPage.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/CharacterContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/CharacterContent.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/Credential.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/Credential.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/CredentialSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/CredentialSkeleton.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/FailedRequestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/FailedRequestModal.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/OnboardingBottomNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/OnboardingBottomNav.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/StarterCredentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/StarterCredentials.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/StepInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/StepInformation.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/Stepper.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/StepperItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/StepperItem.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/WalletItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/WalletItem.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/components/WalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/components/WalletModal.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/AcceptCredential.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/AcceptCredential.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/ChooseWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/ChooseWallet.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/ConnectionComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/ConnectionComplete.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/PickCharacter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/PickCharacter.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/SetupCompleted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/SetupCompleted.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/SetupConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/SetupConnection.tsx -------------------------------------------------------------------------------- /client/src/pages/onboarding/steps/SetupStart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/onboarding/steps/SetupStart.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/Section.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/SideView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/SideView.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/UseCasePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/UseCasePage.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/ActionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/ActionCard.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/ConnectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/ConnectionCard.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/EndContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/EndContainer.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/ProofAttributesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/ProofAttributesCard.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/ProofCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/ProofCard.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/StartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/StartContainer.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/StarterInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/StarterInfo.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/StepInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/StepInfo.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/components/StepperCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/components/StepperCard.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/steps/StepConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/steps/StepConnection.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/steps/StepCredential.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/steps/StepCredential.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/steps/StepInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/steps/StepInformation.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/steps/StepProof.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/steps/StepProof.tsx -------------------------------------------------------------------------------- /client/src/pages/useCase/steps/StepProofOOB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/pages/useCase/steps/StepProofOOB.tsx -------------------------------------------------------------------------------- /client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/src/slices/characters/charactersSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/characters/charactersSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/characters/charactersSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/characters/charactersSlice.ts -------------------------------------------------------------------------------- /client/src/slices/characters/charactersThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/characters/charactersThunks.ts -------------------------------------------------------------------------------- /client/src/slices/connection/connectionSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/connection/connectionSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/connection/connectionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/connection/connectionSlice.ts -------------------------------------------------------------------------------- /client/src/slices/connection/connectionThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/connection/connectionThunks.ts -------------------------------------------------------------------------------- /client/src/slices/credentials/credentialsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/credentials/credentialsSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/credentials/credentialsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/credentials/credentialsSlice.ts -------------------------------------------------------------------------------- /client/src/slices/credentials/credentialsThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/credentials/credentialsThunks.ts -------------------------------------------------------------------------------- /client/src/slices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/index.ts -------------------------------------------------------------------------------- /client/src/slices/onboarding/onboardingSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/onboarding/onboardingSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/onboarding/onboardingSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/onboarding/onboardingSlice.ts -------------------------------------------------------------------------------- /client/src/slices/preferences/preferencesSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/preferences/preferencesSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/preferences/preferencesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/preferences/preferencesSlice.ts -------------------------------------------------------------------------------- /client/src/slices/preferences/preferencesThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/preferences/preferencesThunks.ts -------------------------------------------------------------------------------- /client/src/slices/proof/proofSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/proof/proofSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/proof/proofSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/proof/proofSlice.ts -------------------------------------------------------------------------------- /client/src/slices/proof/proofThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/proof/proofThunks.ts -------------------------------------------------------------------------------- /client/src/slices/section/sectionSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/section/sectionSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/section/sectionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/section/sectionSlice.ts -------------------------------------------------------------------------------- /client/src/slices/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/types.ts -------------------------------------------------------------------------------- /client/src/slices/useCases/useCasesSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/useCases/useCasesSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/useCases/useCasesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/useCases/useCasesSlice.ts -------------------------------------------------------------------------------- /client/src/slices/useCases/useCasesThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/useCases/useCasesThunks.ts -------------------------------------------------------------------------------- /client/src/slices/wallets/walletsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/wallets/walletsSelectors.ts -------------------------------------------------------------------------------- /client/src/slices/wallets/walletsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/wallets/walletsSlice.ts -------------------------------------------------------------------------------- /client/src/slices/wallets/walletsThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/slices/wallets/walletsThunks.ts -------------------------------------------------------------------------------- /client/src/store/configureStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/store/configureStore.tsx -------------------------------------------------------------------------------- /client/src/utils/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/Analytics.ts -------------------------------------------------------------------------------- /client/src/utils/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/AuthContext.tsx -------------------------------------------------------------------------------- /client/src/utils/KBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/KBar.tsx -------------------------------------------------------------------------------- /client/src/utils/OnboardingSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/OnboardingSteps.tsx -------------------------------------------------------------------------------- /client/src/utils/OnboardingUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/OnboardingUtils.tsx -------------------------------------------------------------------------------- /client/src/utils/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/PrivateRoute.tsx -------------------------------------------------------------------------------- /client/src/utils/ProofUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/ProofUtils.tsx -------------------------------------------------------------------------------- /client/src/utils/RenderResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/RenderResults.tsx -------------------------------------------------------------------------------- /client/src/utils/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/src/utils/ThemeContext.tsx -------------------------------------------------------------------------------- /client/src/utils/Url.tsx: -------------------------------------------------------------------------------- 1 | export function prependApiUrl(path: string) { 2 | return `${process.env.REACT_APP_HOST_BACKEND}${path}` 3 | } 4 | -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/config/nginx.conf -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/config/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/config/event.ts -------------------------------------------------------------------------------- /cypress/config/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/config/websocket.ts -------------------------------------------------------------------------------- /cypress/e2e/home_page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/e2e/home_page.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/issue_credential_version_1_use_case.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/e2e/issue_credential_version_1_use_case.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/issue_credential_version_2_use_case.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/e2e/issue_credential_version_2_use_case.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/legacy_invitation_usecase_page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/e2e/legacy_invitation_usecase_page.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/oob_invitation_usecase.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/e2e/oob_invitation_usecase.cy.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /cypress/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/cypress/types/event.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/package.json -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/content/Characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/Characters.ts -------------------------------------------------------------------------------- /server/src/content/UseCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/UseCases.ts -------------------------------------------------------------------------------- /server/src/content/businessWoman/BusinessWoman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/businessWoman/BusinessWoman.ts -------------------------------------------------------------------------------- /server/src/content/businessWoman/BusinesswomanUseCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/businessWoman/BusinesswomanUseCases.ts -------------------------------------------------------------------------------- /server/src/content/businessWoman/useCases/Airtravel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/businessWoman/useCases/Airtravel.ts -------------------------------------------------------------------------------- /server/src/content/businessWoman/useCases/Conference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/businessWoman/useCases/Conference.ts -------------------------------------------------------------------------------- /server/src/content/businessWoman/useCases/Hotel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/businessWoman/useCases/Hotel.ts -------------------------------------------------------------------------------- /server/src/content/millennial/Millennial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/millennial/Millennial.ts -------------------------------------------------------------------------------- /server/src/content/millennial/MillennialUseCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/millennial/MillennialUseCases.ts -------------------------------------------------------------------------------- /server/src/content/millennial/useCases/House.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/millennial/useCases/House.ts -------------------------------------------------------------------------------- /server/src/content/millennial/useCases/Job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/millennial/useCases/Job.ts -------------------------------------------------------------------------------- /server/src/content/millennial/useCases/Laptop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/millennial/useCases/Laptop.ts -------------------------------------------------------------------------------- /server/src/content/misc/Wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/misc/Wallets.ts -------------------------------------------------------------------------------- /server/src/content/student/Student.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/student/Student.ts -------------------------------------------------------------------------------- /server/src/content/student/StudentUseCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/student/StudentUseCases.ts -------------------------------------------------------------------------------- /server/src/content/student/useCases/Club.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/student/useCases/Club.ts -------------------------------------------------------------------------------- /server/src/content/student/useCases/School.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/student/useCases/School.ts -------------------------------------------------------------------------------- /server/src/content/student/useCases/Sport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/student/useCases/Sport.ts -------------------------------------------------------------------------------- /server/src/content/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/content/types.ts -------------------------------------------------------------------------------- /server/src/controllers/CharacterController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/controllers/CharacterController.ts -------------------------------------------------------------------------------- /server/src/controllers/CredDefService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/controllers/CredDefService.ts -------------------------------------------------------------------------------- /server/src/controllers/CredentialController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/controllers/CredentialController.ts -------------------------------------------------------------------------------- /server/src/controllers/UseCaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/controllers/UseCaseController.ts -------------------------------------------------------------------------------- /server/src/controllers/WalletController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/controllers/WalletController.ts -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/public/animo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/animo-logo.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/businesswoman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/businesswoman.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/icon-businesswoman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/icon-businesswoman.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/icon-creditcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/icon-creditcard.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-beach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-beach.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-calendar.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-card.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-details.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-laptop.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/airtravel-secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/airtravel-secure.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/icon-airline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/icon-airline.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/icon-airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/icon-airplane.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/airtravel/icon-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/airtravel/icon-ticket.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-card.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-connected.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-laptop.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-line-waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-line-waiting.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-phone-attributes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-phone-attributes.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-phone-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-phone-notification.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-safe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-safe.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/conference-share-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/conference-share-information.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/icon-conference-pass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/icon-conference-pass.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/icon-conference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/icon-conference.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/icon-dave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/icon-dave.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/icon-employee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/icon-employee.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/conference/logo-conference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/conference/logo-conference.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-card.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-counter.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-icon-keycard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-icon-keycard.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-keycard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-keycard.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-logo-hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-logo-hotel.png -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-qr.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-sleep.svg -------------------------------------------------------------------------------- /server/src/public/businesswoman/useCases/hotel/hotel-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/businesswoman/useCases/hotel/hotel-start.png -------------------------------------------------------------------------------- /server/src/public/millennial/icon-crypto-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/icon-crypto-wallet.png -------------------------------------------------------------------------------- /server/src/public/millennial/icon-degree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/icon-degree.svg -------------------------------------------------------------------------------- /server/src/public/millennial/icon-millennial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/icon-millennial.svg -------------------------------------------------------------------------------- /server/src/public/millennial/millennial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/millennial.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-agreement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-agreement.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-card.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-happy.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-icon-rent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-icon-rent.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-icon.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-logo.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-searching.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-secure.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/house/house-talking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/house/house-talking.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-behind-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-behind-laptop.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-card.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-celebration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-celebration.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-icon-company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-icon-company.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-icon-proof-of-employment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-icon-proof-of-employment.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-icon.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-interview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-interview.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-onboarding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-onboarding.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/job/job-private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/job/job-private.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-card.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-happy.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-invoice.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-paying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-paying.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-searching.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-selected.svg -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-start.png -------------------------------------------------------------------------------- /server/src/public/millennial/useCases/laptop/laptop-store-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/millennial/useCases/laptop/laptop-store-logo.png -------------------------------------------------------------------------------- /server/src/public/student/icon-student.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/icon-student.svg -------------------------------------------------------------------------------- /server/src/public/student/student.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/student.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-card.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-dancing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-dancing.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-data.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-line-waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-line-waiting.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-logo-club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-logo-club.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-scan-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-scan-qr.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/club/club-start-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/club/club-start-icon.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/card-school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/card-school.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/icon-university-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/icon-university-card.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/logo-university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/logo-university.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/school-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/school-icon.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/student-accepted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/student-accepted.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/student-fill-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/student-fill-out.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/student-in-books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/student-in-books.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/student-on-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/student-on-laptop.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/school/student-secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/school/student-secure.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/card-sport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/card-sport.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/icon-membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/icon-membership.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/logo-gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/logo-gym.png -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/sport-fill-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/sport-fill-out.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/sport-fitness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/sport-fitness.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/sport-happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/sport-happy.svg -------------------------------------------------------------------------------- /server/src/public/student/useCases/sport/sport-pilates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/student/useCases/sport/sport-pilates.svg -------------------------------------------------------------------------------- /server/src/public/wallets/icon-bc-wallet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/wallets/icon-bc-wallet.jpeg -------------------------------------------------------------------------------- /server/src/public/wallets/icon-holdr+.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/wallets/icon-holdr+.jpeg -------------------------------------------------------------------------------- /server/src/public/wallets/icon-lissi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/wallets/icon-lissi.jpeg -------------------------------------------------------------------------------- /server/src/public/wallets/icon-orbit-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/wallets/icon-orbit-edge.png -------------------------------------------------------------------------------- /server/src/public/wallets/icon-trinsic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/public/wallets/icon-trinsic.jpeg -------------------------------------------------------------------------------- /server/src/utils/AgentCleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/utils/AgentCleanup.ts -------------------------------------------------------------------------------- /server/src/utils/TestAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/utils/TestAgent.ts -------------------------------------------------------------------------------- /server/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/utils/logger.ts -------------------------------------------------------------------------------- /server/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/src/utils/utils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.build.json" 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animo/animo-demo/HEAD/yarn.lock --------------------------------------------------------------------------------