├── .dockerignore ├── .env.template ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── config.yml │ ├── discussion.yml │ ├── enhancement.yaml │ └── feature.yaml ├── assets │ └── logo.png ├── scripts │ ├── issues.cjs │ └── lib.js └── workflows │ ├── ci.yaml │ ├── delete-package-versions.yaml │ ├── github-pages.yml │ ├── issues.yaml │ └── release.yaml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .rules ├── CONTRIBUTING.md ├── Caddyfile ├── LICENSE ├── README.md ├── SECURITY.md ├── apps ├── api │ ├── Dockerfile │ ├── libnest.config.ts │ ├── package.json │ ├── prisma │ │ └── schema.prisma │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── styles.css │ ├── src │ │ ├── assignments │ │ │ ├── assignments.controller.ts │ │ │ ├── assignments.module.ts │ │ │ ├── assignments.service.ts │ │ │ └── dto │ │ │ │ ├── create-assignment.dto.ts │ │ │ │ └── update-assignment.dto.ts │ │ ├── auth │ │ │ ├── __tests__ │ │ │ │ └── ability.utils.test.ts │ │ │ ├── ability.factory.ts │ │ │ ├── ability.utils.ts │ │ │ ├── auth.controller.ts │ │ │ ├── auth.module.ts │ │ │ ├── auth.service.ts │ │ │ ├── auth.types.ts │ │ │ ├── guards │ │ │ │ ├── __tests__ │ │ │ │ │ └── jwt-auth.guard.spec.ts │ │ │ │ └── jwt-auth.guard.ts │ │ │ └── strategies │ │ │ │ └── jwt.strategy.ts │ │ ├── core │ │ │ ├── decorators │ │ │ │ └── route-access.decorator.ts │ │ │ ├── prisma.ts │ │ │ ├── schemas │ │ │ │ ├── env.schema.ts │ │ │ │ └── mongo-stats.schema.ts │ │ │ └── types.ts │ │ ├── demo │ │ │ ├── demo.module.ts │ │ │ └── demo.service.ts │ │ ├── gateway │ │ │ ├── gateway.controller.ts │ │ │ ├── gateway.module.ts │ │ │ ├── gateway.service.ts │ │ │ └── gateway.synchronizer.ts │ │ ├── groups │ │ │ ├── __tests__ │ │ │ │ ├── groups.controller.spec.ts │ │ │ │ └── groups.service.spec.ts │ │ │ ├── dto │ │ │ │ ├── create-group.dto.ts │ │ │ │ └── update-group.dto.ts │ │ │ ├── groups.controller.ts │ │ │ ├── groups.module.ts │ │ │ └── groups.service.ts │ │ ├── instrument-records │ │ │ ├── instrument-measures.service.ts │ │ │ ├── instrument-records.controller.ts │ │ │ ├── instrument-records.module.ts │ │ │ └── instrument-records.service.ts │ │ ├── instruments │ │ │ ├── __tests__ │ │ │ │ ├── instruments.controller.spec.ts │ │ │ │ └── instruments.service.spec.ts │ │ │ ├── dto │ │ │ │ └── create-instrument.dto.ts │ │ │ ├── instruments.controller.ts │ │ │ ├── instruments.module.ts │ │ │ └── instruments.service.ts │ │ ├── main.ts │ │ ├── sessions │ │ │ ├── dto │ │ │ │ └── create-session.dto.ts │ │ │ ├── sessions.controller.ts │ │ │ ├── sessions.module.ts │ │ │ └── sessions.service.ts │ │ ├── setup │ │ │ ├── dto │ │ │ │ ├── init-app.dto.ts │ │ │ │ └── update-setup-state.dto.ts │ │ │ ├── setup.controller.ts │ │ │ ├── setup.module.ts │ │ │ └── setup.service.ts │ │ ├── subjects │ │ │ ├── __tests__ │ │ │ │ └── subjects.service.spec.ts │ │ │ ├── dto │ │ │ │ └── create-subject.dto.ts │ │ │ ├── subjects.controller.ts │ │ │ ├── subjects.module.ts │ │ │ └── subjects.service.ts │ │ ├── summary │ │ │ ├── summary.controller.ts │ │ │ ├── summary.module.ts │ │ │ └── summary.service.ts │ │ ├── typings │ │ │ ├── global.d.ts │ │ │ └── prisma-json-types-generator.d.ts │ │ └── users │ │ │ ├── dto │ │ │ ├── create-user.dto.ts │ │ │ └── update-user.dto.ts │ │ │ ├── users.controller.ts │ │ │ ├── users.module.ts │ │ │ └── users.service.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── gateway │ ├── Dockerfile │ ├── index.html │ ├── package.json │ ├── prisma │ │ └── schema.prisma │ ├── public │ │ └── favicon.ico │ ├── scripts │ │ ├── build.ts │ │ ├── dev.ts │ │ └── run.sh │ ├── src │ │ ├── Root.tsx │ │ ├── config.ts │ │ ├── entry-client.tsx │ │ ├── entry-server.tsx │ │ ├── lib │ │ │ └── prisma.ts │ │ ├── main.ts │ │ ├── middleware │ │ │ ├── api-key.middleware.ts │ │ │ ├── error-handler.middleware.ts │ │ │ └── not-found.middleware.ts │ │ ├── routers │ │ │ ├── api.router.ts │ │ │ └── root.router.ts │ │ ├── server │ │ │ ├── index.ts │ │ │ ├── server.base.ts │ │ │ ├── server.development.ts │ │ │ └── server.production.ts │ │ ├── services │ │ │ ├── axios.ts │ │ │ └── i18n.ts │ │ ├── typings │ │ │ └── express.d.ts │ │ ├── utils │ │ │ ├── async-handler.ts │ │ │ ├── auth.ts │ │ │ └── http-exception.ts │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── outreach │ ├── astro.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── assets │ │ │ ├── examples │ │ │ │ └── 4.1-instruments │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.css │ │ │ ├── headshots │ │ │ │ ├── cian-monnin.webp │ │ │ │ ├── david-roper.webp │ │ │ │ ├── gabriel-devenyi.webp │ │ │ │ ├── joshua-unrau.webp │ │ │ │ ├── mallar-chakravarty.webp │ │ │ │ ├── martin-lepage.webp │ │ │ │ ├── massimiliano-orri.webp │ │ │ │ ├── maxime-montembeault.webp │ │ │ │ ├── simon-ducharme.webp │ │ │ │ ├── thomas-beaudry.webp │ │ │ │ ├── vanessa-valiquette.webp │ │ │ │ └── weijie-tan.webp │ │ │ └── screenshots │ │ │ │ ├── dashboard.en.dark.png │ │ │ │ ├── dashboard.en.light.png │ │ │ │ ├── data-hub.en.dark.png │ │ │ │ ├── data-hub.en.light.png │ │ │ │ ├── data-hub.fr.dark.png │ │ │ │ ├── data-hub.fr.light.png │ │ │ │ ├── login.en.dark.png │ │ │ │ ├── login.en.light.png │ │ │ │ ├── playground-editor.en.dark.png │ │ │ │ ├── playground-editor.en.light.png │ │ │ │ ├── playground-upload-bundle-button.en.dark.png │ │ │ │ ├── playground-upload-bundle-button.en.light.png │ │ │ │ ├── start-session-hash.en.dark.png │ │ │ │ ├── start-session-hash.en.light.png │ │ │ │ ├── start-session-hash.fr.dark.png │ │ │ │ ├── start-session-hash.fr.light.png │ │ │ │ ├── upload-bundle.en.dark.png │ │ │ │ └── upload-bundle.en.light.png │ │ ├── components │ │ │ ├── InstrumentProperties.astro │ │ │ ├── blog │ │ │ │ ├── NoContent.astro │ │ │ │ └── PostInfoCard.astro │ │ │ ├── common │ │ │ │ ├── Headshot.astro │ │ │ │ ├── Logo.astro │ │ │ │ ├── PageHeading.astro │ │ │ │ ├── Screenshot.astro │ │ │ │ └── SiteTitle.astro │ │ │ ├── docs │ │ │ │ └── Licenses.astro │ │ │ ├── icons │ │ │ │ ├── ArrowLeftIcon.astro │ │ │ │ ├── ArrowRightIcon.astro │ │ │ │ ├── ChevronDownIcon.astro │ │ │ │ ├── MenuIcon.astro │ │ │ │ ├── MoonIcon.astro │ │ │ │ ├── SunIcon.astro │ │ │ │ └── XMarkIcon.astro │ │ │ ├── layout │ │ │ │ ├── Footer.astro │ │ │ │ ├── Head.astro │ │ │ │ ├── Header.astro │ │ │ │ ├── LanguageToggle.astro │ │ │ │ ├── NavLink.astro │ │ │ │ └── ThemeToggle.astro │ │ │ └── overview │ │ │ │ ├── Feature.astro │ │ │ │ ├── Hero.astro │ │ │ │ ├── Medical.astro │ │ │ │ └── Testimonials.astro │ │ ├── content │ │ │ ├── blog │ │ │ ├── config.ts │ │ │ ├── docs │ │ │ │ ├── en │ │ │ │ │ └── docs │ │ │ │ └── fr │ │ │ │ │ └── docs │ │ │ ├── faq │ │ │ │ ├── fundamental-concepts.yaml │ │ │ │ └── general-information.yaml │ │ │ ├── team │ │ │ │ ├── cian-monnin.yaml │ │ │ │ ├── david-roper.yaml │ │ │ │ ├── gabriel-devenyi.yaml │ │ │ │ ├── joshua-unrau.yaml │ │ │ │ ├── mallar-chakravarty.yaml │ │ │ │ ├── martin-lepage.yaml │ │ │ │ ├── thomas-beaudry.yaml │ │ │ │ ├── vanessa-valiquette.yaml │ │ │ │ └── weijie-tan.yaml │ │ │ └── testimonials │ │ │ │ ├── massimiliano-orri.yaml │ │ │ │ ├── maxime-montembeault.yaml │ │ │ │ └── simon-ducharme.yaml │ │ ├── env.d.ts │ │ ├── i18n │ │ │ ├── index.ts │ │ │ └── translations │ │ │ │ ├── blog.json │ │ │ │ ├── common.json │ │ │ │ ├── docs.json │ │ │ │ ├── faq.json │ │ │ │ ├── landing.json │ │ │ │ ├── meta.json │ │ │ │ └── team.json │ │ ├── layouts │ │ │ └── Page.astro │ │ ├── modules │ │ │ └── animate.ts │ │ ├── pages │ │ │ ├── 404.astro │ │ │ ├── [locale] │ │ │ │ ├── blog │ │ │ │ │ ├── [slug].astro │ │ │ │ │ └── index.astro │ │ │ │ ├── faq.astro │ │ │ │ ├── index.astro │ │ │ │ └── team.astro │ │ │ └── index.astro │ │ ├── plugins │ │ │ ├── astro-plugin-symlink.ts │ │ │ └── starlight-plugin-typedoc │ │ │ │ ├── index.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── markdown.ts │ │ │ │ ├── starlight.ts │ │ │ │ ├── theme.ts │ │ │ │ └── typedoc.ts │ │ ├── scripts │ │ │ ├── theme-init.js │ │ │ └── theme-observer.js │ │ ├── styles │ │ │ ├── common.css │ │ │ ├── main.css │ │ │ └── starlight.css │ │ └── utils.ts │ └── tsconfig.json ├── playground │ ├── Dockerfile │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Editor │ │ │ │ ├── DeleteFileDialog.tsx │ │ │ │ ├── Editor.stories.tsx │ │ │ │ ├── Editor.tsx │ │ │ │ ├── EditorAddFileButton.tsx │ │ │ │ ├── EditorButton.tsx │ │ │ │ ├── EditorFileButton.tsx │ │ │ │ ├── EditorFileIcon.tsx │ │ │ │ ├── EditorInput.tsx │ │ │ │ ├── EditorPane.tsx │ │ │ │ ├── EditorPanePlaceholder.tsx │ │ │ │ ├── EditorTab.tsx │ │ │ │ ├── VimStatusBar.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── setup.ts │ │ │ │ └── types.ts │ │ │ ├── FileUploadDialog │ │ │ │ ├── FileUploadDialog.stories.tsx │ │ │ │ ├── FileUploadDialog.tsx │ │ │ │ └── index.ts │ │ │ ├── Header │ │ │ │ ├── ActionButton │ │ │ │ │ ├── ActionButton.stories.tsx │ │ │ │ │ ├── ActionButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ActionsDropdown │ │ │ │ │ ├── ActionsDropdown.stories.tsx │ │ │ │ │ ├── ActionsDropdown.tsx │ │ │ │ │ ├── DeleteInstrumentDialog.tsx │ │ │ │ │ ├── LoginDialog.tsx │ │ │ │ │ ├── RestoreDefaultsDialog.tsx │ │ │ │ │ ├── StorageUsageDialog.tsx │ │ │ │ │ ├── UploadBundleDialog.tsx │ │ │ │ │ ├── UserSettingsDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CloneButton │ │ │ │ │ ├── CloneButton.stories.tsx │ │ │ │ │ ├── CloneButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DownloadButton │ │ │ │ │ ├── DownloadButton.stories.tsx │ │ │ │ │ ├── DownloadButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Header.stories.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── InstrumentSelector │ │ │ │ │ ├── InstrumentSelector.stories.tsx │ │ │ │ │ ├── InstrumentSelector.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RefreshButton │ │ │ │ │ ├── RefreshButton.stories.tsx │ │ │ │ │ ├── RefreshButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SaveButton │ │ │ │ │ ├── SaveButton.stories.tsx │ │ │ │ │ ├── SaveButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ShareButton │ │ │ │ │ ├── ShareButton.stories.tsx │ │ │ │ │ ├── ShareButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── UploadButton │ │ │ │ │ ├── UploadButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── MainContent │ │ │ │ ├── MainContent.stories.tsx │ │ │ │ ├── MainContent.tsx │ │ │ │ └── index.ts │ │ │ └── Viewer │ │ │ │ ├── CompileErrorFallback.tsx │ │ │ │ ├── RuntimeErrorFallback.tsx │ │ │ │ ├── Viewer.stories.tsx │ │ │ │ ├── Viewer.tsx │ │ │ │ ├── ViewerErrorFallback │ │ │ │ ├── CodeErrorBlock.tsx │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ ├── StackTrace.tsx │ │ │ │ ├── ToggledContent.tsx │ │ │ │ ├── ViewerErrorFallback.stories.tsx │ │ │ │ ├── ViewerErrorFallback.tsx │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── useFilesRef.ts │ │ │ └── useRuntime.ts │ │ ├── instruments │ │ │ ├── examples │ │ │ │ ├── form │ │ │ │ │ ├── Form-Reference │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Form-With-Computed-Measures │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Form-With-Groups │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── Multilingual-Form-With-Dynamic-Field │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── translations.ts │ │ │ │ └── interactive │ │ │ │ │ ├── Interactive-With-CSS │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── logo.png │ │ │ │ │ └── styles.css │ │ │ │ │ ├── Interactive-With-Embedded-Media │ │ │ │ │ ├── CatVideo.tsx │ │ │ │ │ ├── CowAudio.tsx │ │ │ │ │ ├── Task.tsx │ │ │ │ │ ├── cat-video.mp4 │ │ │ │ │ ├── cow-moo.mp3 │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.css │ │ │ │ │ ├── Interactive-With-JSPsych │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── index.ts │ │ │ │ │ └── orange.png │ │ │ │ │ ├── Interactive-With-Legacy-Script │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── legacy.d.ts │ │ │ │ │ └── legacy.js │ │ │ │ │ ├── Interactive-With-React │ │ │ │ │ ├── App.css │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── react.svg │ │ │ │ │ ├── Interactive-With-Static-Assets │ │ │ │ │ ├── fragment.html │ │ │ │ │ ├── index.ts │ │ │ │ │ └── smiley.png │ │ │ │ │ ├── Interactive-With-Vanilla │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.css │ │ │ │ │ └── Multilingual-Interactive │ │ │ │ │ ├── index.ts │ │ │ │ │ └── translator.ts │ │ │ ├── index.ts │ │ │ └── templates │ │ │ │ ├── form │ │ │ │ ├── Multilingual-Form │ │ │ │ │ └── index.ts │ │ │ │ └── Unilingual-Form │ │ │ │ │ └── index.ts │ │ │ │ └── interactive │ │ │ │ └── Interactive-Instrument │ │ │ │ └── index.ts │ │ ├── main.tsx │ │ ├── models │ │ │ ├── editor-file.model.ts │ │ │ ├── instrument-repository.model.ts │ │ │ └── settings.model.ts │ │ ├── pages │ │ │ └── IndexPage.tsx │ │ ├── store │ │ │ ├── index.ts │ │ │ ├── slices │ │ │ │ ├── auth.slice.ts │ │ │ │ ├── editor.slice.ts │ │ │ │ ├── instrument.slice.ts │ │ │ │ ├── settings.slice.ts │ │ │ │ ├── transpiler.slice.ts │ │ │ │ └── viewer.slice.ts │ │ │ └── types.ts │ │ ├── typings │ │ │ └── monaco-editor.d.ts │ │ ├── utils │ │ │ ├── encode.ts │ │ │ ├── file.ts │ │ │ └── load.ts │ │ ├── vim │ │ │ ├── actions.ts │ │ │ ├── adapter.ts │ │ │ ├── command-dispatcher.ts │ │ │ ├── common.ts │ │ │ ├── default-key-map.ts │ │ │ ├── digraph.b64.ts │ │ │ ├── digraph.ts │ │ │ ├── ex-command-dispatcher.ts │ │ │ ├── global.ts │ │ │ ├── history-controller.ts │ │ │ ├── index.ts │ │ │ ├── input-state.ts │ │ │ ├── jump-list.ts │ │ │ ├── keymap_vim.ts │ │ │ ├── macro-mode-state.ts │ │ │ ├── motions.ts │ │ │ ├── operators.ts │ │ │ ├── options.ts │ │ │ ├── register-controller.ts │ │ │ ├── search.ts │ │ │ ├── statusbar.ts │ │ │ ├── string-stream.ts │ │ │ ├── types.ts │ │ │ └── vim-api.ts │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts └── web │ ├── .env.public │ ├── Dockerfile │ ├── index.html │ ├── package.json │ ├── public │ ├── favicon.ico │ └── robots.txt │ ├── src │ ├── App.tsx │ ├── __mocks__ │ │ └── zustand.ts │ ├── components │ │ ├── DemoBanner │ │ │ ├── DemoBanner.stories.tsx │ │ │ ├── DemoBanner.tsx │ │ │ └── index.ts │ │ ├── Footer │ │ │ ├── Footer.stories.tsx │ │ │ ├── Footer.tsx │ │ │ └── index.ts │ │ ├── IdentificationForm │ │ │ ├── IdentificationForm.stories.tsx │ │ │ ├── IdentificationForm.tsx │ │ │ └── index.ts │ │ ├── InstrumentCard │ │ │ ├── InstrumentCard.stories.tsx │ │ │ ├── InstrumentCard.tsx │ │ │ └── index.ts │ │ ├── InstrumentShowcase │ │ │ ├── InstrumentKindDropdown.tsx │ │ │ ├── InstrumentLanguageDropdown.tsx │ │ │ ├── InstrumentShowcase.stories.tsx │ │ │ ├── InstrumentShowcase.tsx │ │ │ └── index.ts │ │ ├── Layout │ │ │ ├── Layout.stories.tsx │ │ │ ├── Layout.tsx │ │ │ └── index.ts │ │ ├── LoadingFallback │ │ │ ├── LoadingFallback.stories.tsx │ │ │ ├── LoadingFallback.tsx │ │ │ └── index.ts │ │ ├── LoginForm │ │ │ ├── LoginForm.stories.tsx │ │ │ ├── LoginForm.tsx │ │ │ └── index.ts │ │ ├── NavButton │ │ │ ├── NavButton.stories.tsx │ │ │ ├── NavButton.tsx │ │ │ └── index.ts │ │ ├── Navbar │ │ │ ├── Navbar.stories.tsx │ │ │ ├── Navbar.tsx │ │ │ └── index.ts │ │ ├── PageHeader │ │ │ ├── PageHeader.stories.tsx │ │ │ ├── PageHeader.tsx │ │ │ └── index.ts │ │ ├── QRCode.tsx │ │ ├── SelectInstrument.tsx │ │ ├── Sidebar │ │ │ ├── Sidebar.stories.tsx │ │ │ ├── Sidebar.tsx │ │ │ └── index.ts │ │ ├── StartSessionForm │ │ │ ├── StartSessionForm.stories.tsx │ │ │ ├── StartSessionForm.tsx │ │ │ └── index.ts │ │ ├── TimeDropdown.tsx │ │ ├── UserDropup │ │ │ ├── UserDropup.stories.tsx │ │ │ ├── UserDropup.tsx │ │ │ └── index.ts │ │ ├── UserIcon │ │ │ ├── UserIcon.stories.tsx │ │ │ ├── UserIcon.tsx │ │ │ └── index.ts │ │ └── WithFallback.tsx │ ├── config.ts │ ├── hooks │ │ ├── __tests__ │ │ │ └── useInstrumentVisualization.test.ts │ │ ├── useAssignmentsQuery.ts │ │ ├── useCreateAssignment.ts │ │ ├── useCreateGroupMutation.ts │ │ ├── useCreateSessionMutation.ts │ │ ├── useCreateSetupStateMutation.ts │ │ ├── useCreateUserMutation.ts │ │ ├── useDeleteGroupMutation.ts │ │ ├── useDeleteUserMutation.ts │ │ ├── useFindSessionQuery.ts │ │ ├── useGraphData.ts │ │ ├── useGraphLines.ts │ │ ├── useGroupsQuery.ts │ │ ├── useInstrument.ts │ │ ├── useInstrumentBundle.ts │ │ ├── useInstrumentInfoQuery.ts │ │ ├── useInstrumentInterpreter.ts │ │ ├── useInstrumentRecordQuery.ts │ │ ├── useInstrumentRecords.ts │ │ ├── useInstrumentVisualization.ts │ │ ├── useIsDesktop.ts │ │ ├── useLinearModelQuery.ts │ │ ├── useMeasureOptions.ts │ │ ├── useNavItems.ts │ │ ├── useSearch.ts │ │ ├── useSetupStateQuery.ts │ │ ├── useSubjectQuery.ts │ │ ├── useSubjectsQuery.ts │ │ ├── useSummaryQuery.ts │ │ ├── useUpdateAssignment.ts │ │ ├── useUpdateGroupMutation.ts │ │ ├── useUpdateSetupStateMutation.ts │ │ ├── useUpdateUserMutation.ts │ │ ├── useUploadInstrumentRecordsMutation.ts │ │ └── useUsersQuery.ts │ ├── main.tsx │ ├── providers │ │ ├── DisclaimerProvider.tsx │ │ ├── ForceClearQueryCacheProvider.tsx │ │ └── WalkthroughProvider.tsx │ ├── route-tree.ts │ ├── router.tsx │ ├── routes │ │ ├── __root.tsx │ │ ├── _app │ │ │ ├── about.tsx │ │ │ ├── admin │ │ │ │ ├── groups │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── settings.tsx │ │ │ │ └── users │ │ │ │ │ ├── create.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── contact.tsx │ │ │ ├── dashboard.tsx │ │ │ ├── datahub │ │ │ │ ├── $subjectId │ │ │ │ │ ├── $recordId.tsx │ │ │ │ │ ├── assignments.tsx │ │ │ │ │ ├── graph.tsx │ │ │ │ │ ├── route.tsx │ │ │ │ │ └── table.tsx │ │ │ │ └── index.tsx │ │ │ ├── group │ │ │ │ └── manage.tsx │ │ │ ├── index.tsx │ │ │ ├── instruments │ │ │ │ ├── accessible-instruments.tsx │ │ │ │ └── render │ │ │ │ │ └── $id.tsx │ │ │ ├── route.tsx │ │ │ ├── session │ │ │ │ └── start-session.tsx │ │ │ ├── upload │ │ │ │ ├── $instrumentId.tsx │ │ │ │ └── index.tsx │ │ │ └── user.tsx │ │ ├── auth │ │ │ └── login.tsx │ │ └── setup.tsx │ ├── services │ │ ├── axios.ts │ │ ├── i18n.ts │ │ ├── react-query.ts │ │ └── zod.ts │ ├── store │ │ ├── index.ts │ │ ├── slices │ │ │ ├── auth.slice.ts │ │ │ ├── disclaimer.slice.ts │ │ │ ├── session.slice.ts │ │ │ └── walkthrough.slice.ts │ │ └── types.ts │ ├── styles.css │ ├── testing │ │ └── stubs.ts │ ├── translations │ │ ├── auth.json │ │ ├── common.json │ │ ├── contact.json │ │ ├── core.json │ │ ├── datahub.json │ │ ├── group.json │ │ ├── instruments.json │ │ ├── layout.json │ │ ├── session.json │ │ ├── setup.json │ │ ├── upload.json │ │ └── user.json │ ├── utils │ │ ├── __tests__ │ │ │ ├── excel.test.ts │ │ │ └── upload.test.ts │ │ ├── excel.ts │ │ ├── tmp.ts │ │ └── upload.ts │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── vite.config.ts │ └── vitest.config.ts ├── blog ├── follow-good-naming-conventions.md ├── navigating-bureaucracy.md ├── open-data-capture-vs-redcap.md ├── open-source-data-platforms.md └── the-cloud-in-healthcare.md ├── cli └── odc-cli ├── docker-compose.dev.yaml ├── docker-compose.yaml ├── docs ├── en │ ├── 1-introduction │ │ ├── 1.0-home.md │ │ ├── 1.1-about.md │ │ ├── 1.2-background.md │ │ ├── 1.3-license.md │ │ └── 1.4-scope.md │ ├── 2-tutorials │ │ ├── 2.0-development.mdx │ │ └── 2.1-deployment.md │ ├── 3-guides │ │ ├── 3.0-how-to-create-an-instrument.mdx │ │ ├── 3.1-how-to-export-data.mdx │ │ ├── 3.2-how-to-visualize-data.mdx │ │ └── 3.3-how-to-upload-data.md │ ├── 4-concepts │ │ ├── 4.0-architecture.mdx │ │ ├── 4.1-instruments.mdx │ │ ├── 4.2-hash-based-identification.md │ │ └── 4.3-runtime-execution-context.md │ ├── 5-reference │ │ ├── 5.0-form-instrument.md │ │ ├── 5.1-security.md │ │ ├── 5.2-tooling.md │ │ ├── 5.3-api.md │ │ ├── 5.4-web.mdx │ │ ├── 5.5-gateway.md │ │ ├── 5.6-docker.md │ │ ├── 5.7-runtime.md │ │ └── 5.8-instrument-licenses.mdx │ └── 6-updating │ │ └── v1.7.0.md └── fr │ └── 1-introduction │ ├── 1.0-home.md │ ├── 1.1-about.md │ ├── 1.2-background.md │ ├── 1.3-license.md │ └── 1.4-scope.md ├── eslint.config.js ├── knip.ts ├── package.json ├── packages ├── demo │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── instrument-bundler │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── build.test.ts │ │ │ ├── parse.test.ts │ │ │ ├── preprocess.test.ts │ │ │ ├── repositories │ │ │ │ ├── form │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── interactive │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.css │ │ │ ├── resolve.test.ts │ │ │ ├── schemas.test.ts │ │ │ ├── transform.test.ts │ │ │ └── utils.test.ts │ │ ├── build.ts │ │ ├── bundle.ts │ │ ├── cli.ts │ │ ├── error.ts │ │ ├── index.ts │ │ ├── parse.ts │ │ ├── plugin.ts │ │ ├── preprocess.ts │ │ ├── resolve.ts │ │ ├── schemas.ts │ │ ├── transform.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── vendor │ │ │ └── esbuild.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── instrument-interpreter │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── instrument-library │ ├── package.json │ ├── scripts │ │ └── available.ts │ ├── src │ │ ├── forms │ │ │ ├── DNP_ENHANCED_DEMOGRAPHICS_QUESTIONNAIRE │ │ │ │ └── index.ts │ │ │ ├── DNP_GENERAL_CONSENT_FORM │ │ │ │ └── index.ts │ │ │ └── DNP_HAPPINESS_QUESTIONNAIRE │ │ │ │ └── index.ts │ │ ├── interactive │ │ │ ├── DNP_BREAKOUT_TASK │ │ │ │ ├── index.ts │ │ │ │ └── styles.css │ │ │ └── DNP_STROOP_TASK │ │ │ │ ├── StroopTask.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ └── series │ │ │ └── DNP_HAPPINESS_QUESTIONNAIRE_WITH_CONSENT │ │ │ └── index.ts │ └── tsconfig.json ├── instrument-stubs │ ├── README.md │ ├── package.json │ └── src │ │ ├── forms.js │ │ ├── interactive.js │ │ ├── series.js │ │ └── utils.js ├── instrument-utils │ ├── package.json │ ├── src │ │ ├── form.ts │ │ ├── guards.ts │ │ ├── index.ts │ │ ├── measures.ts │ │ └── translate.ts │ └── tsconfig.json ├── licenses │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ └── index.js │ └── tsconfig.json ├── react-core │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Branding │ │ │ │ ├── Branding.stories.tsx │ │ │ │ ├── Branding.tsx │ │ │ │ └── index.ts │ │ │ ├── CopyButton │ │ │ │ ├── CopyButton.stories.tsx │ │ │ │ ├── CopyButton.tsx │ │ │ │ └── index.ts │ │ │ ├── ErrorFallback │ │ │ │ ├── ErrorFallback.stories.tsx │ │ │ │ ├── ErrorFallback.tsx │ │ │ │ └── index.ts │ │ │ ├── ErrorPage │ │ │ │ ├── ErrorPage.stories.tsx │ │ │ │ ├── ErrorPage.tsx │ │ │ │ └── index.ts │ │ │ ├── FormContent │ │ │ │ ├── FormContent.stories.tsx │ │ │ │ ├── FormContent.tsx │ │ │ │ └── index.ts │ │ │ ├── InstrumentIcon │ │ │ │ ├── InstrumentIcon.stories.tsx │ │ │ │ ├── InstrumentIcon.tsx │ │ │ │ └── index.ts │ │ │ ├── InstrumentOverview │ │ │ │ ├── InstrumentOverview.stories.tsx │ │ │ │ ├── InstrumentOverview.tsx │ │ │ │ └── index.ts │ │ │ ├── InstrumentRenderer │ │ │ │ ├── ContentPlaceholder.tsx │ │ │ │ ├── InstrumentRenderer.stories.tsx │ │ │ │ ├── InstrumentRenderer.tsx │ │ │ │ ├── InstrumentRendererContainer.tsx │ │ │ │ ├── ScalarInstrumentRenderer.tsx │ │ │ │ ├── SeriesInstrumentContent.tsx │ │ │ │ ├── SeriesInstrumentRenderer.tsx │ │ │ │ └── index.ts │ │ │ ├── InstrumentSummary │ │ │ │ ├── InstrumentSummary.stories.tsx │ │ │ │ ├── InstrumentSummary.tsx │ │ │ │ ├── InstrumentSummaryGroup.tsx │ │ │ │ └── index.ts │ │ │ ├── InteractiveContent │ │ │ │ ├── InteractiveContent.stories.tsx │ │ │ │ ├── InteractiveContent.tsx │ │ │ │ └── index.ts │ │ │ ├── LoadingPage │ │ │ │ ├── LoadingPage.stories.tsx │ │ │ │ ├── LoadingPage.tsx │ │ │ │ └── index.ts │ │ │ └── Logo │ │ │ │ ├── Logo.stories.tsx │ │ │ │ ├── Logo.tsx │ │ │ │ └── index.ts │ │ ├── globals.css │ │ ├── hooks │ │ │ └── useInterpretedInstrument.ts │ │ ├── index.ts │ │ └── types.ts │ └── tsconfig.json ├── release-info │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── index.test.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── runtime-bundler │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── bundler.test.ts │ │ │ ├── resolver.test.ts │ │ │ ├── schemas.test.ts │ │ │ └── utils.test.ts │ │ ├── bundler.ts │ │ ├── cli.ts │ │ ├── index.ts │ │ ├── plugin.ts │ │ ├── resolver.ts │ │ ├── schemas.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── runtime-core │ ├── config │ │ └── api-extractor.json │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── define.test-d.ts │ │ ├── define.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── notifications.ts │ │ ├── types │ │ │ ├── __tests__ │ │ │ │ └── instrument.form.test-d.ts │ │ │ ├── core.ts │ │ │ ├── instrument.base.ts │ │ │ ├── instrument.core.ts │ │ │ ├── instrument.form.ts │ │ │ ├── instrument.interactive.ts │ │ │ └── instrument.series.ts │ │ └── utils.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── runtime-internal │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ ├── index.js │ │ └── interactive │ │ │ ├── bootstrap.js │ │ │ ├── iframe.html │ │ │ └── worker.js │ └── tsconfig.json ├── schemas │ ├── package.json │ ├── src │ │ ├── assignment │ │ │ └── assignment.ts │ │ ├── auth │ │ │ └── auth.ts │ │ ├── core │ │ │ └── core.ts │ │ ├── gateway │ │ │ └── gateway.ts │ │ ├── group │ │ │ └── group.ts │ │ ├── instrument-records │ │ │ └── instrument-records.ts │ │ ├── instrument │ │ │ ├── __tests__ │ │ │ │ ├── instrument.base.test.ts │ │ │ │ ├── instrument.core.test.ts │ │ │ │ ├── instrument.form.test.ts │ │ │ │ └── instrument.interactive.test.ts │ │ │ ├── instrument.base.ts │ │ │ ├── instrument.core.ts │ │ │ ├── instrument.form.ts │ │ │ ├── instrument.interactive.ts │ │ │ ├── instrument.series.ts │ │ │ └── instrument.ts │ │ ├── session │ │ │ └── session.ts │ │ ├── setup │ │ │ └── setup.ts │ │ ├── subject │ │ │ └── subject.ts │ │ ├── summary │ │ │ ├── summary.test.ts │ │ │ └── summary.ts │ │ └── user │ │ │ └── user.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── serve-instrument │ ├── package.json │ ├── scripts │ │ └── build.ts │ ├── src │ │ ├── cli.ts │ │ └── client │ │ │ ├── index.html │ │ │ └── main.tsx │ └── tsconfig.json ├── subject-utils │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── test.ts │ ├── tsconfig.json │ └── vitest.config.ts └── vite-plugin-runtime │ ├── package.json │ ├── src │ ├── __tests__ │ │ └── plugin.test.ts │ ├── index.js │ └── plugin.js │ ├── tsconfig.json │ └── vitest.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── runtime └── v1 │ ├── env.d.ts │ ├── global.d.ts │ ├── package.json │ ├── runtime.config.js │ └── tsconfig.json ├── scripts ├── clean-workflows.sh ├── drop-database.sh ├── generate-env.sh ├── publish.sh ├── purge-workflow.sh └── workspace.sh ├── storybook ├── config │ ├── main.ts │ └── preview.ts ├── package.json ├── tsconfig.json └── vite.config.js ├── testing ├── cypress │ ├── cypress.config.ts │ ├── package.json │ ├── src │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── stubs.ts │ │ ├── support │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ │ └── utils.ts │ └── tsconfig.json ├── e2e │ ├── package.json │ ├── playwright.config.ts │ ├── src │ │ ├── global │ │ │ ├── global.setup.spec.ts │ │ │ └── global.teardown.spec.ts │ │ ├── helpers │ │ │ ├── data.ts │ │ │ ├── fixtures.ts │ │ │ └── types.ts │ │ └── pages │ │ │ ├── __root.page.ts │ │ │ └── setup.page.ts │ └── tsconfig.json └── k6 │ ├── package.json │ ├── scripts │ ├── build.js │ └── visualize.py │ ├── src │ ├── client.ts │ ├── config.ts │ └── index.ts │ └── tsconfig.json ├── tsconfig.base.json ├── turbo.json ├── vendor ├── @jspsych │ ├── plugin-html-button-response@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-html-button-response@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-html-keyboard-response@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-html-keyboard-response@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-image-button-response@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-image-button-response@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-image-keyboard-response@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-image-keyboard-response@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-instructions@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-preload@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-preload@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-survey-html-form@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-survey-html-form@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── plugin-survey-text@1.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ └── plugin-survey-text@2.x │ │ ├── LICENSE │ │ ├── package.json │ │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── csstype@3.x │ ├── LICENSE │ ├── package.json │ └── src │ │ └── index.d.ts ├── dompurify@3.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── jquery-ui@1.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── jquery@1.12.4 │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── jquery@3.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── jspsych@7.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.d.ts │ │ └── index.js ├── jspsych@8.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.d.ts │ │ └── index.js ├── lodash-es@4.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── normalize.css@8.x │ ├── LICENSE │ ├── package.json │ └── src │ │ └── index.css ├── papaparse@5.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── preloadjs@1.0.1 │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── prop-types@15.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── psychojs@2023.1.3 │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.css │ │ ├── index.d.ts │ │ └── index.js ├── pure-rand@6.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── react-dom@18.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── client.d.ts │ │ ├── client.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── server.d.ts │ │ └── server.js ├── react-dom@19.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── client.d.ts │ │ ├── client.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── profiling.d.ts │ │ ├── profiling.js │ │ ├── server.d.ts │ │ ├── server.js │ │ ├── static.d.ts │ │ ├── static.js │ │ ├── test-utils.d.ts │ │ └── test-utils.js ├── react@18.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── jsx-dev-runtime.d.ts │ │ ├── jsx-dev-runtime.js │ │ ├── jsx-runtime.d.ts │ │ └── jsx-runtime.js ├── react@19.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── compiler-runtime.d.ts │ │ ├── compiler-runtime.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── jsx-dev-runtime.d.ts │ │ ├── jsx-dev-runtime.js │ │ ├── jsx-runtime.d.ts │ │ └── jsx-runtime.js ├── simple-statistics@7.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── ts-pattern@5.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── type-fest@4.x │ ├── LICENSE │ ├── package.json │ └── src │ │ └── index.d.ts ├── zod@3.23.x │ ├── LICENSE │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ └── index.js └── zod@3.x │ ├── LICENSE │ ├── package.json │ └── src │ ├── index.d.ts │ ├── index.js │ ├── v3.d.ts │ ├── v3.js │ ├── v4-mini.d.ts │ ├── v4-mini.js │ ├── v4.d.ts │ └── v4.js ├── vitest.config.ts └── vitest.workspace.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.env.template -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @joshunrau 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/ISSUE_TEMPLATE/discussion.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/ISSUE_TEMPLATE/enhancement.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/scripts/issues.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/scripts/issues.cjs -------------------------------------------------------------------------------- /.github/scripts/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/scripts/lib.js -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/delete-package-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/workflows/delete-package-versions.yaml -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/workflows/issues.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.prettierignore -------------------------------------------------------------------------------- /.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/.rules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/Caddyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/Dockerfile -------------------------------------------------------------------------------- /apps/api/libnest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/libnest.config.ts -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/api/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/public/favicon.ico -------------------------------------------------------------------------------- /apps/api/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/public/index.html -------------------------------------------------------------------------------- /apps/api/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/public/styles.css -------------------------------------------------------------------------------- /apps/api/src/assignments/assignments.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/assignments/assignments.controller.ts -------------------------------------------------------------------------------- /apps/api/src/assignments/assignments.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/assignments/assignments.module.ts -------------------------------------------------------------------------------- /apps/api/src/assignments/assignments.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/assignments/assignments.service.ts -------------------------------------------------------------------------------- /apps/api/src/assignments/dto/create-assignment.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/assignments/dto/create-assignment.dto.ts -------------------------------------------------------------------------------- /apps/api/src/assignments/dto/update-assignment.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/assignments/dto/update-assignment.dto.ts -------------------------------------------------------------------------------- /apps/api/src/auth/__tests__/ability.utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/__tests__/ability.utils.test.ts -------------------------------------------------------------------------------- /apps/api/src/auth/ability.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/ability.factory.ts -------------------------------------------------------------------------------- /apps/api/src/auth/ability.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/ability.utils.ts -------------------------------------------------------------------------------- /apps/api/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /apps/api/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/api/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/auth.service.ts -------------------------------------------------------------------------------- /apps/api/src/auth/auth.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/auth.types.ts -------------------------------------------------------------------------------- /apps/api/src/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /apps/api/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /apps/api/src/core/decorators/route-access.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/core/decorators/route-access.decorator.ts -------------------------------------------------------------------------------- /apps/api/src/core/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/core/prisma.ts -------------------------------------------------------------------------------- /apps/api/src/core/schemas/env.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/core/schemas/env.schema.ts -------------------------------------------------------------------------------- /apps/api/src/core/schemas/mongo-stats.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/core/schemas/mongo-stats.schema.ts -------------------------------------------------------------------------------- /apps/api/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/core/types.ts -------------------------------------------------------------------------------- /apps/api/src/demo/demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/demo/demo.module.ts -------------------------------------------------------------------------------- /apps/api/src/demo/demo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/demo/demo.service.ts -------------------------------------------------------------------------------- /apps/api/src/gateway/gateway.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/gateway/gateway.controller.ts -------------------------------------------------------------------------------- /apps/api/src/gateway/gateway.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/gateway/gateway.module.ts -------------------------------------------------------------------------------- /apps/api/src/gateway/gateway.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/gateway/gateway.service.ts -------------------------------------------------------------------------------- /apps/api/src/gateway/gateway.synchronizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/gateway/gateway.synchronizer.ts -------------------------------------------------------------------------------- /apps/api/src/groups/__tests__/groups.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/__tests__/groups.controller.spec.ts -------------------------------------------------------------------------------- /apps/api/src/groups/__tests__/groups.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/__tests__/groups.service.spec.ts -------------------------------------------------------------------------------- /apps/api/src/groups/dto/create-group.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/dto/create-group.dto.ts -------------------------------------------------------------------------------- /apps/api/src/groups/dto/update-group.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/dto/update-group.dto.ts -------------------------------------------------------------------------------- /apps/api/src/groups/groups.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/groups.controller.ts -------------------------------------------------------------------------------- /apps/api/src/groups/groups.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/groups.module.ts -------------------------------------------------------------------------------- /apps/api/src/groups/groups.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/groups/groups.service.ts -------------------------------------------------------------------------------- /apps/api/src/instruments/dto/create-instrument.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/instruments/dto/create-instrument.dto.ts -------------------------------------------------------------------------------- /apps/api/src/instruments/instruments.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/instruments/instruments.controller.ts -------------------------------------------------------------------------------- /apps/api/src/instruments/instruments.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/instruments/instruments.module.ts -------------------------------------------------------------------------------- /apps/api/src/instruments/instruments.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/instruments/instruments.service.ts -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/src/sessions/dto/create-session.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/sessions/dto/create-session.dto.ts -------------------------------------------------------------------------------- /apps/api/src/sessions/sessions.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/sessions/sessions.controller.ts -------------------------------------------------------------------------------- /apps/api/src/sessions/sessions.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/sessions/sessions.module.ts -------------------------------------------------------------------------------- /apps/api/src/sessions/sessions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/sessions/sessions.service.ts -------------------------------------------------------------------------------- /apps/api/src/setup/dto/init-app.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/setup/dto/init-app.dto.ts -------------------------------------------------------------------------------- /apps/api/src/setup/dto/update-setup-state.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/setup/dto/update-setup-state.dto.ts -------------------------------------------------------------------------------- /apps/api/src/setup/setup.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/setup/setup.controller.ts -------------------------------------------------------------------------------- /apps/api/src/setup/setup.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/setup/setup.module.ts -------------------------------------------------------------------------------- /apps/api/src/setup/setup.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/setup/setup.service.ts -------------------------------------------------------------------------------- /apps/api/src/subjects/__tests__/subjects.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/subjects/__tests__/subjects.service.spec.ts -------------------------------------------------------------------------------- /apps/api/src/subjects/dto/create-subject.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/subjects/dto/create-subject.dto.ts -------------------------------------------------------------------------------- /apps/api/src/subjects/subjects.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/subjects/subjects.controller.ts -------------------------------------------------------------------------------- /apps/api/src/subjects/subjects.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/subjects/subjects.module.ts -------------------------------------------------------------------------------- /apps/api/src/subjects/subjects.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/subjects/subjects.service.ts -------------------------------------------------------------------------------- /apps/api/src/summary/summary.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/summary/summary.controller.ts -------------------------------------------------------------------------------- /apps/api/src/summary/summary.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/summary/summary.module.ts -------------------------------------------------------------------------------- /apps/api/src/summary/summary.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/summary/summary.service.ts -------------------------------------------------------------------------------- /apps/api/src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/typings/global.d.ts -------------------------------------------------------------------------------- /apps/api/src/typings/prisma-json-types-generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/typings/prisma-json-types-generator.d.ts -------------------------------------------------------------------------------- /apps/api/src/users/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/users/dto/create-user.dto.ts -------------------------------------------------------------------------------- /apps/api/src/users/dto/update-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/users/dto/update-user.dto.ts -------------------------------------------------------------------------------- /apps/api/src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/users/users.controller.ts -------------------------------------------------------------------------------- /apps/api/src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/users/users.module.ts -------------------------------------------------------------------------------- /apps/api/src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/src/users/users.service.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/api/vitest.config.ts -------------------------------------------------------------------------------- /apps/gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/Dockerfile -------------------------------------------------------------------------------- /apps/gateway/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/index.html -------------------------------------------------------------------------------- /apps/gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/package.json -------------------------------------------------------------------------------- /apps/gateway/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/gateway/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/public/favicon.ico -------------------------------------------------------------------------------- /apps/gateway/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/scripts/build.ts -------------------------------------------------------------------------------- /apps/gateway/scripts/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/scripts/dev.ts -------------------------------------------------------------------------------- /apps/gateway/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/scripts/run.sh -------------------------------------------------------------------------------- /apps/gateway/src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/Root.tsx -------------------------------------------------------------------------------- /apps/gateway/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/config.ts -------------------------------------------------------------------------------- /apps/gateway/src/entry-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/entry-client.tsx -------------------------------------------------------------------------------- /apps/gateway/src/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/entry-server.tsx -------------------------------------------------------------------------------- /apps/gateway/src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/lib/prisma.ts -------------------------------------------------------------------------------- /apps/gateway/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/main.ts -------------------------------------------------------------------------------- /apps/gateway/src/middleware/api-key.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/middleware/api-key.middleware.ts -------------------------------------------------------------------------------- /apps/gateway/src/middleware/error-handler.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/middleware/error-handler.middleware.ts -------------------------------------------------------------------------------- /apps/gateway/src/middleware/not-found.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/middleware/not-found.middleware.ts -------------------------------------------------------------------------------- /apps/gateway/src/routers/api.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/routers/api.router.ts -------------------------------------------------------------------------------- /apps/gateway/src/routers/root.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/routers/root.router.ts -------------------------------------------------------------------------------- /apps/gateway/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/server/index.ts -------------------------------------------------------------------------------- /apps/gateway/src/server/server.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/server/server.base.ts -------------------------------------------------------------------------------- /apps/gateway/src/server/server.development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/server/server.development.ts -------------------------------------------------------------------------------- /apps/gateway/src/server/server.production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/server/server.production.ts -------------------------------------------------------------------------------- /apps/gateway/src/services/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/services/axios.ts -------------------------------------------------------------------------------- /apps/gateway/src/services/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/services/i18n.ts -------------------------------------------------------------------------------- /apps/gateway/src/typings/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/typings/express.d.ts -------------------------------------------------------------------------------- /apps/gateway/src/utils/async-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/utils/async-handler.ts -------------------------------------------------------------------------------- /apps/gateway/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/utils/auth.ts -------------------------------------------------------------------------------- /apps/gateway/src/utils/http-exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/utils/http-exception.ts -------------------------------------------------------------------------------- /apps/gateway/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/src/vite-env.d.ts -------------------------------------------------------------------------------- /apps/gateway/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/tsconfig.json -------------------------------------------------------------------------------- /apps/gateway/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/gateway/vite.config.ts -------------------------------------------------------------------------------- /apps/outreach/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/astro.config.ts -------------------------------------------------------------------------------- /apps/outreach/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/package.json -------------------------------------------------------------------------------- /apps/outreach/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/public/favicon.ico -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/cian-monnin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/cian-monnin.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/david-roper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/david-roper.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/gabriel-devenyi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/gabriel-devenyi.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/joshua-unrau.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/joshua-unrau.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/martin-lepage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/martin-lepage.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/simon-ducharme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/simon-ducharme.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/thomas-beaudry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/thomas-beaudry.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/headshots/weijie-tan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/headshots/weijie-tan.webp -------------------------------------------------------------------------------- /apps/outreach/src/assets/screenshots/login.en.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/screenshots/login.en.dark.png -------------------------------------------------------------------------------- /apps/outreach/src/assets/screenshots/login.en.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/assets/screenshots/login.en.light.png -------------------------------------------------------------------------------- /apps/outreach/src/components/blog/NoContent.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/blog/NoContent.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/blog/PostInfoCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/blog/PostInfoCard.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/common/Headshot.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/common/Headshot.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/common/Logo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/common/Logo.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/common/PageHeading.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/common/PageHeading.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/common/Screenshot.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/common/Screenshot.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/common/SiteTitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/common/SiteTitle.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/docs/Licenses.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/docs/Licenses.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/icons/ArrowLeftIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/icons/ArrowLeftIcon.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/icons/MenuIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/icons/MenuIcon.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/icons/MoonIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/icons/MoonIcon.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/icons/SunIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/icons/SunIcon.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/icons/XMarkIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/icons/XMarkIcon.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/layout/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/layout/Footer.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/layout/Head.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/layout/Head.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/layout/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/layout/Header.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/layout/NavLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/layout/NavLink.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/layout/ThemeToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/layout/ThemeToggle.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/overview/Feature.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/overview/Feature.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/overview/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/overview/Hero.astro -------------------------------------------------------------------------------- /apps/outreach/src/components/overview/Medical.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/components/overview/Medical.astro -------------------------------------------------------------------------------- /apps/outreach/src/content/blog: -------------------------------------------------------------------------------- 1 | ../../../../blog -------------------------------------------------------------------------------- /apps/outreach/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/config.ts -------------------------------------------------------------------------------- /apps/outreach/src/content/docs/en/docs: -------------------------------------------------------------------------------- 1 | ../../../../../../docs/en -------------------------------------------------------------------------------- /apps/outreach/src/content/docs/fr/docs: -------------------------------------------------------------------------------- 1 | ../../../../../../docs/fr -------------------------------------------------------------------------------- /apps/outreach/src/content/faq/general-information.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/faq/general-information.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/cian-monnin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/cian-monnin.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/david-roper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/david-roper.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/gabriel-devenyi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/gabriel-devenyi.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/joshua-unrau.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/joshua-unrau.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/mallar-chakravarty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/mallar-chakravarty.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/martin-lepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/martin-lepage.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/thomas-beaudry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/thomas-beaudry.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/vanessa-valiquette.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/vanessa-valiquette.yaml -------------------------------------------------------------------------------- /apps/outreach/src/content/team/weijie-tan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/content/team/weijie-tan.yaml -------------------------------------------------------------------------------- /apps/outreach/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/env.d.ts -------------------------------------------------------------------------------- /apps/outreach/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/index.ts -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/blog.json -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/common.json -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/docs.json: -------------------------------------------------------------------------------- 1 | { 2 | "heading": "Documentation" 3 | } 4 | -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/faq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/faq.json -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/landing.json -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/meta.json -------------------------------------------------------------------------------- /apps/outreach/src/i18n/translations/team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/i18n/translations/team.json -------------------------------------------------------------------------------- /apps/outreach/src/layouts/Page.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/layouts/Page.astro -------------------------------------------------------------------------------- /apps/outreach/src/modules/animate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/modules/animate.ts -------------------------------------------------------------------------------- /apps/outreach/src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/404.astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/[locale]/blog/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/[locale]/blog/[slug].astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/[locale]/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/[locale]/blog/index.astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/[locale]/faq.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/[locale]/faq.astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/[locale]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/[locale]/index.astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/[locale]/team.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/pages/[locale]/team.astro -------------------------------------------------------------------------------- /apps/outreach/src/pages/index.astro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/outreach/src/plugins/astro-plugin-symlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/plugins/astro-plugin-symlink.ts -------------------------------------------------------------------------------- /apps/outreach/src/scripts/theme-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/scripts/theme-init.js -------------------------------------------------------------------------------- /apps/outreach/src/scripts/theme-observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/scripts/theme-observer.js -------------------------------------------------------------------------------- /apps/outreach/src/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/styles/common.css -------------------------------------------------------------------------------- /apps/outreach/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/styles/main.css -------------------------------------------------------------------------------- /apps/outreach/src/styles/starlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/styles/starlight.css -------------------------------------------------------------------------------- /apps/outreach/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/src/utils.ts -------------------------------------------------------------------------------- /apps/outreach/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/outreach/tsconfig.json -------------------------------------------------------------------------------- /apps/playground/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/Dockerfile -------------------------------------------------------------------------------- /apps/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/index.html -------------------------------------------------------------------------------- /apps/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/package.json -------------------------------------------------------------------------------- /apps/playground/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/public/favicon.ico -------------------------------------------------------------------------------- /apps/playground/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/App.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/Editor.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/EditorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/EditorButton.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/EditorInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/EditorInput.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/EditorPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/EditorPane.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/EditorTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/EditorTab.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/VimStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/VimStatusBar.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Editor'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/setup.ts -------------------------------------------------------------------------------- /apps/playground/src/components/Editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Editor/types.ts -------------------------------------------------------------------------------- /apps/playground/src/components/FileUploadDialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FileUploadDialog'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/ActionButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ActionButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/ActionsDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ActionsDropdown'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/CloneButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CloneButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/DownloadButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DownloadButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Header/InstrumentSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentSelector'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/RefreshButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RefreshButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/SaveButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SaveButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/ShareButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ShareButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/UploadButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UploadButton'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Header'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/MainContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MainContent'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Viewer/Viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/components/Viewer/Viewer.tsx -------------------------------------------------------------------------------- /apps/playground/src/components/Viewer/ViewerErrorFallback/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ViewerErrorFallback'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/components/Viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Viewer'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/hooks/useFilesRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/hooks/useFilesRef.ts -------------------------------------------------------------------------------- /apps/playground/src/hooks/useRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/hooks/useRuntime.ts -------------------------------------------------------------------------------- /apps/playground/src/instruments/examples/interactive/Interactive-With-Legacy-Script/legacy.d.ts: -------------------------------------------------------------------------------- 1 | declare let message: 'hello'; 2 | -------------------------------------------------------------------------------- /apps/playground/src/instruments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/instruments/index.ts -------------------------------------------------------------------------------- /apps/playground/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/main.tsx -------------------------------------------------------------------------------- /apps/playground/src/models/editor-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/models/editor-file.model.ts -------------------------------------------------------------------------------- /apps/playground/src/models/settings.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/models/settings.model.ts -------------------------------------------------------------------------------- /apps/playground/src/pages/IndexPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/pages/IndexPage.tsx -------------------------------------------------------------------------------- /apps/playground/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/index.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/auth.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/auth.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/editor.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/editor.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/instrument.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/instrument.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/settings.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/settings.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/transpiler.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/transpiler.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/slices/viewer.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/slices/viewer.slice.ts -------------------------------------------------------------------------------- /apps/playground/src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/store/types.ts -------------------------------------------------------------------------------- /apps/playground/src/typings/monaco-editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/typings/monaco-editor.d.ts -------------------------------------------------------------------------------- /apps/playground/src/utils/encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/utils/encode.ts -------------------------------------------------------------------------------- /apps/playground/src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/utils/file.ts -------------------------------------------------------------------------------- /apps/playground/src/utils/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/utils/load.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/actions.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/adapter.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/command-dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/command-dispatcher.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/common.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/default-key-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/default-key-map.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/digraph.b64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/digraph.b64.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/digraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/digraph.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/ex-command-dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/ex-command-dispatcher.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/global.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/history-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/history-controller.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/index.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/input-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/input-state.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/jump-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/jump-list.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/keymap_vim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/keymap_vim.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/macro-mode-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/macro-mode-state.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/motions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/motions.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/operators.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/options.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/register-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/register-controller.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/search.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/statusbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/statusbar.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/string-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/string-stream.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/types.ts -------------------------------------------------------------------------------- /apps/playground/src/vim/vim-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/src/vim/vim-api.ts -------------------------------------------------------------------------------- /apps/playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | const __GITHUB_REPO_URL__: string; 2 | -------------------------------------------------------------------------------- /apps/playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/tsconfig.json -------------------------------------------------------------------------------- /apps/playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/playground/vite.config.ts -------------------------------------------------------------------------------- /apps/web/.env.public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/.env.public -------------------------------------------------------------------------------- /apps/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/Dockerfile -------------------------------------------------------------------------------- /apps/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/index.html -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /apps/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/App.tsx -------------------------------------------------------------------------------- /apps/web/src/__mocks__/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/__mocks__/zustand.ts -------------------------------------------------------------------------------- /apps/web/src/components/DemoBanner/DemoBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/DemoBanner/DemoBanner.tsx -------------------------------------------------------------------------------- /apps/web/src/components/DemoBanner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DemoBanner'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/Footer/Footer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Footer/Footer.stories.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Footer'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/IdentificationForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './IdentificationForm'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/InstrumentCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentCard'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/InstrumentShowcase/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentShowcase'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/Layout/Layout.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Layout/Layout.stories.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Layout'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/LoadingFallback/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LoadingFallback'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/LoginForm/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/LoginForm/LoginForm.tsx -------------------------------------------------------------------------------- /apps/web/src/components/LoginForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LoginForm'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/NavButton/NavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/NavButton/NavButton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/NavButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavButton'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/Navbar/Navbar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Navbar/Navbar.stories.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Navbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Navbar'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/PageHeader/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/PageHeader/PageHeader.tsx -------------------------------------------------------------------------------- /apps/web/src/components/PageHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PageHeader'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/QRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/QRCode.tsx -------------------------------------------------------------------------------- /apps/web/src/components/SelectInstrument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/SelectInstrument.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Sidebar/Sidebar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Sidebar/Sidebar.stories.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Sidebar'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/StartSessionForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StartSessionForm'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/TimeDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/TimeDropdown.tsx -------------------------------------------------------------------------------- /apps/web/src/components/UserDropup/UserDropup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/UserDropup/UserDropup.tsx -------------------------------------------------------------------------------- /apps/web/src/components/UserDropup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UserDropup'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/UserIcon/UserIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/UserIcon/UserIcon.stories.tsx -------------------------------------------------------------------------------- /apps/web/src/components/UserIcon/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/UserIcon/UserIcon.tsx -------------------------------------------------------------------------------- /apps/web/src/components/UserIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UserIcon'; 2 | -------------------------------------------------------------------------------- /apps/web/src/components/WithFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/components/WithFallback.tsx -------------------------------------------------------------------------------- /apps/web/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/config.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useAssignmentsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useAssignmentsQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useCreateAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useCreateAssignment.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useCreateGroupMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useCreateGroupMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useCreateSessionMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useCreateSessionMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useCreateSetupStateMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useCreateSetupStateMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useCreateUserMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useCreateUserMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useDeleteGroupMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useDeleteGroupMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useDeleteUserMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useDeleteUserMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useFindSessionQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useFindSessionQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useGraphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useGraphData.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useGraphLines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useGraphLines.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useGroupsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useGroupsQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrument.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentBundle.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentInfoQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentInfoQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentInterpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentInterpreter.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentRecordQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentRecordQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentRecords.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useInstrumentVisualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useInstrumentVisualization.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useIsDesktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useIsDesktop.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useLinearModelQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useLinearModelQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useMeasureOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useMeasureOptions.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useNavItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useNavItems.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useSearch.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useSetupStateQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useSetupStateQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useSubjectQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useSubjectQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useSubjectsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useSubjectsQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useSummaryQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useSummaryQuery.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useUpdateAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useUpdateAssignment.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useUpdateGroupMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useUpdateGroupMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useUpdateSetupStateMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useUpdateSetupStateMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useUpdateUserMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useUpdateUserMutation.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useUsersQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/hooks/useUsersQuery.ts -------------------------------------------------------------------------------- /apps/web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/main.tsx -------------------------------------------------------------------------------- /apps/web/src/providers/DisclaimerProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/providers/DisclaimerProvider.tsx -------------------------------------------------------------------------------- /apps/web/src/providers/WalkthroughProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/providers/WalkthroughProvider.tsx -------------------------------------------------------------------------------- /apps/web/src/route-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/route-tree.ts -------------------------------------------------------------------------------- /apps/web/src/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/router.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/__root.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/about.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/admin/groups/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/admin/groups/create.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/admin/groups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/admin/groups/index.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/admin/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/admin/settings.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/admin/users/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/admin/users/create.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/admin/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/admin/users/index.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/contact.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/dashboard.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/datahub/$subjectId/graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/datahub/$subjectId/graph.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/datahub/$subjectId/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/datahub/$subjectId/route.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/datahub/$subjectId/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/datahub/$subjectId/table.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/datahub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/datahub/index.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/group/manage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/group/manage.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/index.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/instruments/render/$id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/instruments/render/$id.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/route.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/session/start-session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/session/start-session.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/upload/$instrumentId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/upload/$instrumentId.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/upload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/upload/index.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/_app/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/_app/user.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/auth/login.tsx -------------------------------------------------------------------------------- /apps/web/src/routes/setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/routes/setup.tsx -------------------------------------------------------------------------------- /apps/web/src/services/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/services/axios.ts -------------------------------------------------------------------------------- /apps/web/src/services/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/services/i18n.ts -------------------------------------------------------------------------------- /apps/web/src/services/react-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/services/react-query.ts -------------------------------------------------------------------------------- /apps/web/src/services/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/services/zod.ts -------------------------------------------------------------------------------- /apps/web/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/index.ts -------------------------------------------------------------------------------- /apps/web/src/store/slices/auth.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/slices/auth.slice.ts -------------------------------------------------------------------------------- /apps/web/src/store/slices/disclaimer.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/slices/disclaimer.slice.ts -------------------------------------------------------------------------------- /apps/web/src/store/slices/session.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/slices/session.slice.ts -------------------------------------------------------------------------------- /apps/web/src/store/slices/walkthrough.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/slices/walkthrough.slice.ts -------------------------------------------------------------------------------- /apps/web/src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/store/types.ts -------------------------------------------------------------------------------- /apps/web/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/styles.css -------------------------------------------------------------------------------- /apps/web/src/testing/stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/testing/stubs.ts -------------------------------------------------------------------------------- /apps/web/src/translations/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/auth.json -------------------------------------------------------------------------------- /apps/web/src/translations/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/common.json -------------------------------------------------------------------------------- /apps/web/src/translations/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/contact.json -------------------------------------------------------------------------------- /apps/web/src/translations/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/core.json -------------------------------------------------------------------------------- /apps/web/src/translations/datahub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/datahub.json -------------------------------------------------------------------------------- /apps/web/src/translations/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/group.json -------------------------------------------------------------------------------- /apps/web/src/translations/instruments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/instruments.json -------------------------------------------------------------------------------- /apps/web/src/translations/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/layout.json -------------------------------------------------------------------------------- /apps/web/src/translations/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/session.json -------------------------------------------------------------------------------- /apps/web/src/translations/setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/setup.json -------------------------------------------------------------------------------- /apps/web/src/translations/upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/translations/upload.json -------------------------------------------------------------------------------- /apps/web/src/translations/user.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/web/src/utils/__tests__/excel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/utils/__tests__/excel.test.ts -------------------------------------------------------------------------------- /apps/web/src/utils/__tests__/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/utils/__tests__/upload.test.ts -------------------------------------------------------------------------------- /apps/web/src/utils/excel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/utils/excel.ts -------------------------------------------------------------------------------- /apps/web/src/utils/tmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/utils/tmp.ts -------------------------------------------------------------------------------- /apps/web/src/utils/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/utils/upload.ts -------------------------------------------------------------------------------- /apps/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/src/vite-env.d.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/vite.config.ts -------------------------------------------------------------------------------- /apps/web/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/apps/web/vitest.config.ts -------------------------------------------------------------------------------- /blog/follow-good-naming-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/blog/follow-good-naming-conventions.md -------------------------------------------------------------------------------- /blog/navigating-bureaucracy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/blog/navigating-bureaucracy.md -------------------------------------------------------------------------------- /blog/open-data-capture-vs-redcap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/blog/open-data-capture-vs-redcap.md -------------------------------------------------------------------------------- /blog/open-source-data-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/blog/open-source-data-platforms.md -------------------------------------------------------------------------------- /blog/the-cloud-in-healthcare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/blog/the-cloud-in-healthcare.md -------------------------------------------------------------------------------- /cli/odc-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/cli/odc-cli -------------------------------------------------------------------------------- /docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docker-compose.dev.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/en/1-introduction/1.0-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/1-introduction/1.0-home.md -------------------------------------------------------------------------------- /docs/en/1-introduction/1.1-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/1-introduction/1.1-about.md -------------------------------------------------------------------------------- /docs/en/1-introduction/1.2-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/1-introduction/1.2-background.md -------------------------------------------------------------------------------- /docs/en/1-introduction/1.3-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/1-introduction/1.3-license.md -------------------------------------------------------------------------------- /docs/en/1-introduction/1.4-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/1-introduction/1.4-scope.md -------------------------------------------------------------------------------- /docs/en/2-tutorials/2.0-development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/2-tutorials/2.0-development.mdx -------------------------------------------------------------------------------- /docs/en/2-tutorials/2.1-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/2-tutorials/2.1-deployment.md -------------------------------------------------------------------------------- /docs/en/3-guides/3.0-how-to-create-an-instrument.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/3-guides/3.0-how-to-create-an-instrument.mdx -------------------------------------------------------------------------------- /docs/en/3-guides/3.1-how-to-export-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/3-guides/3.1-how-to-export-data.mdx -------------------------------------------------------------------------------- /docs/en/3-guides/3.2-how-to-visualize-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/3-guides/3.2-how-to-visualize-data.mdx -------------------------------------------------------------------------------- /docs/en/3-guides/3.3-how-to-upload-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/3-guides/3.3-how-to-upload-data.md -------------------------------------------------------------------------------- /docs/en/4-concepts/4.0-architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/4-concepts/4.0-architecture.mdx -------------------------------------------------------------------------------- /docs/en/4-concepts/4.1-instruments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/4-concepts/4.1-instruments.mdx -------------------------------------------------------------------------------- /docs/en/4-concepts/4.2-hash-based-identification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/4-concepts/4.2-hash-based-identification.md -------------------------------------------------------------------------------- /docs/en/4-concepts/4.3-runtime-execution-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/4-concepts/4.3-runtime-execution-context.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.0-form-instrument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.0-form-instrument.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.1-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.1-security.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.2-tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.2-tooling.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.3-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.3-api.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.4-web.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.4-web.mdx -------------------------------------------------------------------------------- /docs/en/5-reference/5.5-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.5-gateway.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.6-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.6-docker.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.7-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.7-runtime.md -------------------------------------------------------------------------------- /docs/en/5-reference/5.8-instrument-licenses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/5-reference/5.8-instrument-licenses.mdx -------------------------------------------------------------------------------- /docs/en/6-updating/v1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/en/6-updating/v1.7.0.md -------------------------------------------------------------------------------- /docs/fr/1-introduction/1.0-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/fr/1-introduction/1.0-home.md -------------------------------------------------------------------------------- /docs/fr/1-introduction/1.1-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/fr/1-introduction/1.1-about.md -------------------------------------------------------------------------------- /docs/fr/1-introduction/1.2-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/fr/1-introduction/1.2-background.md -------------------------------------------------------------------------------- /docs/fr/1-introduction/1.3-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/fr/1-introduction/1.3-license.md -------------------------------------------------------------------------------- /docs/fr/1-introduction/1.4-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/docs/fr/1-introduction/1.4-scope.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/eslint.config.js -------------------------------------------------------------------------------- /knip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/knip.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/package.json -------------------------------------------------------------------------------- /packages/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/demo/package.json -------------------------------------------------------------------------------- /packages/demo/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/demo/src/index.ts -------------------------------------------------------------------------------- /packages/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/demo/tsconfig.json -------------------------------------------------------------------------------- /packages/instrument-bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/package.json -------------------------------------------------------------------------------- /packages/instrument-bundler/src/__tests__/repositories/interactive/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /packages/instrument-bundler/src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/build.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/bundle.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/cli.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/error.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/index.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/parse.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/plugin.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/preprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/preprocess.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/resolve.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/schemas.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/transform.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/types.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/utils.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/src/vendor/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/src/vendor/esbuild.ts -------------------------------------------------------------------------------- /packages/instrument-bundler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/tsconfig.json -------------------------------------------------------------------------------- /packages/instrument-bundler/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-bundler/vitest.config.ts -------------------------------------------------------------------------------- /packages/instrument-interpreter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-interpreter/package.json -------------------------------------------------------------------------------- /packages/instrument-interpreter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-interpreter/src/index.ts -------------------------------------------------------------------------------- /packages/instrument-interpreter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-interpreter/tsconfig.json -------------------------------------------------------------------------------- /packages/instrument-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-library/package.json -------------------------------------------------------------------------------- /packages/instrument-library/scripts/available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-library/scripts/available.ts -------------------------------------------------------------------------------- /packages/instrument-library/src/interactive/DNP_STROOP_TASK/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /packages/instrument-library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-library/tsconfig.json -------------------------------------------------------------------------------- /packages/instrument-stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/README.md -------------------------------------------------------------------------------- /packages/instrument-stubs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/package.json -------------------------------------------------------------------------------- /packages/instrument-stubs/src/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/src/forms.js -------------------------------------------------------------------------------- /packages/instrument-stubs/src/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/src/interactive.js -------------------------------------------------------------------------------- /packages/instrument-stubs/src/series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/src/series.js -------------------------------------------------------------------------------- /packages/instrument-stubs/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-stubs/src/utils.js -------------------------------------------------------------------------------- /packages/instrument-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/package.json -------------------------------------------------------------------------------- /packages/instrument-utils/src/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/src/form.ts -------------------------------------------------------------------------------- /packages/instrument-utils/src/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/src/guards.ts -------------------------------------------------------------------------------- /packages/instrument-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/src/index.ts -------------------------------------------------------------------------------- /packages/instrument-utils/src/measures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/src/measures.ts -------------------------------------------------------------------------------- /packages/instrument-utils/src/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/src/translate.ts -------------------------------------------------------------------------------- /packages/instrument-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/instrument-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/licenses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/licenses/package.json -------------------------------------------------------------------------------- /packages/licenses/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/licenses/src/index.d.ts -------------------------------------------------------------------------------- /packages/licenses/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/licenses/src/index.js -------------------------------------------------------------------------------- /packages/licenses/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/licenses/tsconfig.json -------------------------------------------------------------------------------- /packages/react-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/package.json -------------------------------------------------------------------------------- /packages/react-core/src/components/Branding/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Branding'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/CopyButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CopyButton'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/ErrorFallback/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ErrorFallback'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/ErrorPage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ErrorPage'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/FormContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FormContent'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/InstrumentIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentIcon'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/InstrumentOverview/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentOverview'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/InstrumentSummary/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InstrumentSummary'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/InteractiveContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InteractiveContent'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/LoadingPage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LoadingPage'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/components/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/src/components/Logo/Logo.tsx -------------------------------------------------------------------------------- /packages/react-core/src/components/Logo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Logo'; 2 | -------------------------------------------------------------------------------- /packages/react-core/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/src/globals.css -------------------------------------------------------------------------------- /packages/react-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/src/index.ts -------------------------------------------------------------------------------- /packages/react-core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/src/types.ts -------------------------------------------------------------------------------- /packages/react-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/react-core/tsconfig.json -------------------------------------------------------------------------------- /packages/release-info/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/release-info/package.json -------------------------------------------------------------------------------- /packages/release-info/src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/release-info/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /packages/release-info/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/release-info/src/index.ts -------------------------------------------------------------------------------- /packages/release-info/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/release-info/tsconfig.json -------------------------------------------------------------------------------- /packages/release-info/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/release-info/vitest.config.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/package.json -------------------------------------------------------------------------------- /packages/runtime-bundler/src/__tests__/bundler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/__tests__/bundler.test.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/__tests__/schemas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/__tests__/schemas.test.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/bundler.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/cli.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/index.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/plugin.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/resolver.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/schemas.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/types.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/src/utils.ts -------------------------------------------------------------------------------- /packages/runtime-bundler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/tsconfig.json -------------------------------------------------------------------------------- /packages/runtime-bundler/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-bundler/vitest.config.ts -------------------------------------------------------------------------------- /packages/runtime-core/config/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/config/api-extractor.json -------------------------------------------------------------------------------- /packages/runtime-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/package.json -------------------------------------------------------------------------------- /packages/runtime-core/src/__tests__/define.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/__tests__/define.test-d.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/define.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/i18n.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/index.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/notifications.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/types/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/types/core.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/types/instrument.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/types/instrument.base.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/types/instrument.core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/types/instrument.core.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/types/instrument.form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/types/instrument.form.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/types/instrument.series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/types/instrument.series.ts -------------------------------------------------------------------------------- /packages/runtime-core/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/src/utils.ts -------------------------------------------------------------------------------- /packages/runtime-core/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/tsconfig.build.json -------------------------------------------------------------------------------- /packages/runtime-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-core/tsconfig.json -------------------------------------------------------------------------------- /packages/runtime-internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/package.json -------------------------------------------------------------------------------- /packages/runtime-internal/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/src/index.d.ts -------------------------------------------------------------------------------- /packages/runtime-internal/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/src/index.js -------------------------------------------------------------------------------- /packages/runtime-internal/src/interactive/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/src/interactive/bootstrap.js -------------------------------------------------------------------------------- /packages/runtime-internal/src/interactive/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/src/interactive/iframe.html -------------------------------------------------------------------------------- /packages/runtime-internal/src/interactive/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/src/interactive/worker.js -------------------------------------------------------------------------------- /packages/runtime-internal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/runtime-internal/tsconfig.json -------------------------------------------------------------------------------- /packages/schemas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/package.json -------------------------------------------------------------------------------- /packages/schemas/src/assignment/assignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/assignment/assignment.ts -------------------------------------------------------------------------------- /packages/schemas/src/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/auth/auth.ts -------------------------------------------------------------------------------- /packages/schemas/src/core/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/core/core.ts -------------------------------------------------------------------------------- /packages/schemas/src/gateway/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/gateway/gateway.ts -------------------------------------------------------------------------------- /packages/schemas/src/group/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/group/group.ts -------------------------------------------------------------------------------- /packages/schemas/src/instrument/instrument.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/instrument/instrument.base.ts -------------------------------------------------------------------------------- /packages/schemas/src/instrument/instrument.core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/instrument/instrument.core.ts -------------------------------------------------------------------------------- /packages/schemas/src/instrument/instrument.form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/instrument/instrument.form.ts -------------------------------------------------------------------------------- /packages/schemas/src/instrument/instrument.series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/instrument/instrument.series.ts -------------------------------------------------------------------------------- /packages/schemas/src/instrument/instrument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/instrument/instrument.ts -------------------------------------------------------------------------------- /packages/schemas/src/session/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/session/session.ts -------------------------------------------------------------------------------- /packages/schemas/src/setup/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/setup/setup.ts -------------------------------------------------------------------------------- /packages/schemas/src/subject/subject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/subject/subject.ts -------------------------------------------------------------------------------- /packages/schemas/src/summary/summary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/summary/summary.test.ts -------------------------------------------------------------------------------- /packages/schemas/src/summary/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/summary/summary.ts -------------------------------------------------------------------------------- /packages/schemas/src/user/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/src/user/user.ts -------------------------------------------------------------------------------- /packages/schemas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/tsconfig.json -------------------------------------------------------------------------------- /packages/schemas/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/schemas/vitest.config.ts -------------------------------------------------------------------------------- /packages/serve-instrument/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/package.json -------------------------------------------------------------------------------- /packages/serve-instrument/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/scripts/build.ts -------------------------------------------------------------------------------- /packages/serve-instrument/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/src/cli.ts -------------------------------------------------------------------------------- /packages/serve-instrument/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/src/client/index.html -------------------------------------------------------------------------------- /packages/serve-instrument/src/client/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/src/client/main.tsx -------------------------------------------------------------------------------- /packages/serve-instrument/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/serve-instrument/tsconfig.json -------------------------------------------------------------------------------- /packages/subject-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/subject-utils/package.json -------------------------------------------------------------------------------- /packages/subject-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/subject-utils/src/index.ts -------------------------------------------------------------------------------- /packages/subject-utils/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/subject-utils/src/test.ts -------------------------------------------------------------------------------- /packages/subject-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/subject-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/subject-utils/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/subject-utils/vitest.config.ts -------------------------------------------------------------------------------- /packages/vite-plugin-runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/vite-plugin-runtime/package.json -------------------------------------------------------------------------------- /packages/vite-plugin-runtime/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/vite-plugin-runtime/src/index.js -------------------------------------------------------------------------------- /packages/vite-plugin-runtime/src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/vite-plugin-runtime/src/plugin.js -------------------------------------------------------------------------------- /packages/vite-plugin-runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/vite-plugin-runtime/tsconfig.json -------------------------------------------------------------------------------- /packages/vite-plugin-runtime/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/packages/vite-plugin-runtime/vitest.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/prettier.config.js -------------------------------------------------------------------------------- /runtime/v1/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/runtime/v1/env.d.ts -------------------------------------------------------------------------------- /runtime/v1/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/runtime/v1/global.d.ts -------------------------------------------------------------------------------- /runtime/v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/runtime/v1/package.json -------------------------------------------------------------------------------- /runtime/v1/runtime.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/runtime/v1/runtime.config.js -------------------------------------------------------------------------------- /runtime/v1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/runtime/v1/tsconfig.json -------------------------------------------------------------------------------- /scripts/clean-workflows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/clean-workflows.sh -------------------------------------------------------------------------------- /scripts/drop-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/drop-database.sh -------------------------------------------------------------------------------- /scripts/generate-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/generate-env.sh -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /scripts/purge-workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/purge-workflow.sh -------------------------------------------------------------------------------- /scripts/workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/scripts/workspace.sh -------------------------------------------------------------------------------- /storybook/config/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/storybook/config/main.ts -------------------------------------------------------------------------------- /storybook/config/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/storybook/config/preview.ts -------------------------------------------------------------------------------- /storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/storybook/package.json -------------------------------------------------------------------------------- /storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/storybook/tsconfig.json -------------------------------------------------------------------------------- /storybook/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/storybook/vite.config.js -------------------------------------------------------------------------------- /testing/cypress/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/cypress.config.ts -------------------------------------------------------------------------------- /testing/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/package.json -------------------------------------------------------------------------------- /testing/cypress/src/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/src/e2e/spec.cy.ts -------------------------------------------------------------------------------- /testing/cypress/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/src/fixtures/example.json -------------------------------------------------------------------------------- /testing/cypress/src/stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/src/stubs.ts -------------------------------------------------------------------------------- /testing/cypress/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/src/support/commands.ts -------------------------------------------------------------------------------- /testing/cypress/src/support/e2e.ts: -------------------------------------------------------------------------------- 1 | import './commands'; 2 | -------------------------------------------------------------------------------- /testing/cypress/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/src/utils.ts -------------------------------------------------------------------------------- /testing/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/cypress/tsconfig.json -------------------------------------------------------------------------------- /testing/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/package.json -------------------------------------------------------------------------------- /testing/e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/playwright.config.ts -------------------------------------------------------------------------------- /testing/e2e/src/global/global.setup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/global/global.setup.spec.ts -------------------------------------------------------------------------------- /testing/e2e/src/global/global.teardown.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/global/global.teardown.spec.ts -------------------------------------------------------------------------------- /testing/e2e/src/helpers/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/helpers/data.ts -------------------------------------------------------------------------------- /testing/e2e/src/helpers/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/helpers/fixtures.ts -------------------------------------------------------------------------------- /testing/e2e/src/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/helpers/types.ts -------------------------------------------------------------------------------- /testing/e2e/src/pages/__root.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/pages/__root.page.ts -------------------------------------------------------------------------------- /testing/e2e/src/pages/setup.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/src/pages/setup.page.ts -------------------------------------------------------------------------------- /testing/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/e2e/tsconfig.json -------------------------------------------------------------------------------- /testing/k6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/package.json -------------------------------------------------------------------------------- /testing/k6/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/scripts/build.js -------------------------------------------------------------------------------- /testing/k6/scripts/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/scripts/visualize.py -------------------------------------------------------------------------------- /testing/k6/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/src/client.ts -------------------------------------------------------------------------------- /testing/k6/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/src/config.ts -------------------------------------------------------------------------------- /testing/k6/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/src/index.ts -------------------------------------------------------------------------------- /testing/k6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/testing/k6/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/turbo.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-instructions@2.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-instructions@2.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-instructions@2.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-instructions@2.x/package.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-instructions@2.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-instructions@2.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-instructions@2.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-instructions@2.x/src/index.js -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@1.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@1.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@1.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@1.x/package.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@1.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@1.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@1.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@1.x/src/index.js -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@2.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@2.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@2.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@2.x/package.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@2.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@2.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-preload@2.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-preload@2.x/src/index.js -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-html-form@1.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-html-form@1.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-html-form@2.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-html-form@2.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@1.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@1.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@1.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@1.x/package.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@1.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@1.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@1.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@1.x/src/index.js -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@2.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@2.x/LICENSE -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@2.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@2.x/package.json -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@2.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@2.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/@jspsych/plugin-survey-text@2.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/@jspsych/plugin-survey-text@2.x/src/index.js -------------------------------------------------------------------------------- /vendor/csstype@3.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/csstype@3.x/LICENSE -------------------------------------------------------------------------------- /vendor/csstype@3.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/csstype@3.x/package.json -------------------------------------------------------------------------------- /vendor/csstype@3.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/csstype@3.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/dompurify@3.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/dompurify@3.x/LICENSE -------------------------------------------------------------------------------- /vendor/dompurify@3.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/dompurify@3.x/package.json -------------------------------------------------------------------------------- /vendor/dompurify@3.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/dompurify@3.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/dompurify@3.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/dompurify@3.x/src/index.js -------------------------------------------------------------------------------- /vendor/jquery-ui@1.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery-ui@1.x/LICENSE -------------------------------------------------------------------------------- /vendor/jquery-ui@1.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery-ui@1.x/package.json -------------------------------------------------------------------------------- /vendor/jquery-ui@1.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery-ui@1.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/jquery-ui@1.x/src/index.js: -------------------------------------------------------------------------------- 1 | import 'jquery-ui'; 2 | -------------------------------------------------------------------------------- /vendor/jquery@1.12.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@1.12.4/LICENSE -------------------------------------------------------------------------------- /vendor/jquery@1.12.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@1.12.4/package.json -------------------------------------------------------------------------------- /vendor/jquery@1.12.4/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@1.12.4/src/index.d.ts -------------------------------------------------------------------------------- /vendor/jquery@1.12.4/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@1.12.4/src/index.js -------------------------------------------------------------------------------- /vendor/jquery@3.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@3.x/LICENSE -------------------------------------------------------------------------------- /vendor/jquery@3.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@3.x/package.json -------------------------------------------------------------------------------- /vendor/jquery@3.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@3.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/jquery@3.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jquery@3.x/src/index.js -------------------------------------------------------------------------------- /vendor/jspsych@7.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@7.x/LICENSE -------------------------------------------------------------------------------- /vendor/jspsych@7.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@7.x/package.json -------------------------------------------------------------------------------- /vendor/jspsych@7.x/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@7.x/src/index.css -------------------------------------------------------------------------------- /vendor/jspsych@7.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@7.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/jspsych@7.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'jspsych'; 2 | -------------------------------------------------------------------------------- /vendor/jspsych@8.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@8.x/LICENSE -------------------------------------------------------------------------------- /vendor/jspsych@8.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@8.x/package.json -------------------------------------------------------------------------------- /vendor/jspsych@8.x/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@8.x/src/index.css -------------------------------------------------------------------------------- /vendor/jspsych@8.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/jspsych@8.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/jspsych@8.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'jspsych'; 2 | -------------------------------------------------------------------------------- /vendor/lodash-es@4.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/lodash-es@4.x/LICENSE -------------------------------------------------------------------------------- /vendor/lodash-es@4.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/lodash-es@4.x/package.json -------------------------------------------------------------------------------- /vendor/lodash-es@4.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/lodash-es@4.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/lodash-es@4.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'lodash-es'; 2 | -------------------------------------------------------------------------------- /vendor/normalize.css@8.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/normalize.css@8.x/LICENSE -------------------------------------------------------------------------------- /vendor/normalize.css@8.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/normalize.css@8.x/package.json -------------------------------------------------------------------------------- /vendor/normalize.css@8.x/src/index.css: -------------------------------------------------------------------------------- 1 | @import 'normalize.css'; 2 | -------------------------------------------------------------------------------- /vendor/papaparse@5.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/papaparse@5.x/LICENSE -------------------------------------------------------------------------------- /vendor/papaparse@5.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/papaparse@5.x/package.json -------------------------------------------------------------------------------- /vendor/papaparse@5.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/papaparse@5.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/papaparse@5.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/papaparse@5.x/src/index.js -------------------------------------------------------------------------------- /vendor/preloadjs@1.0.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/preloadjs@1.0.1/LICENSE -------------------------------------------------------------------------------- /vendor/preloadjs@1.0.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/preloadjs@1.0.1/package.json -------------------------------------------------------------------------------- /vendor/preloadjs@1.0.1/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/preloadjs@1.0.1/src/index.d.ts -------------------------------------------------------------------------------- /vendor/preloadjs@1.0.1/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/preloadjs@1.0.1/src/index.js -------------------------------------------------------------------------------- /vendor/prop-types@15.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/prop-types@15.x/LICENSE -------------------------------------------------------------------------------- /vendor/prop-types@15.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/prop-types@15.x/package.json -------------------------------------------------------------------------------- /vendor/prop-types@15.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/prop-types@15.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/prop-types@15.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/prop-types@15.x/src/index.js -------------------------------------------------------------------------------- /vendor/psychojs@2023.1.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/psychojs@2023.1.3/LICENSE -------------------------------------------------------------------------------- /vendor/psychojs@2023.1.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/psychojs@2023.1.3/package.json -------------------------------------------------------------------------------- /vendor/psychojs@2023.1.3/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/psychojs@2023.1.3/src/index.css -------------------------------------------------------------------------------- /vendor/psychojs@2023.1.3/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/psychojs@2023.1.3/src/index.d.ts -------------------------------------------------------------------------------- /vendor/psychojs@2023.1.3/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/psychojs@2023.1.3/src/index.js -------------------------------------------------------------------------------- /vendor/pure-rand@6.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/pure-rand@6.x/LICENSE -------------------------------------------------------------------------------- /vendor/pure-rand@6.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/pure-rand@6.x/package.json -------------------------------------------------------------------------------- /vendor/pure-rand@6.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/pure-rand@6.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/pure-rand@6.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/pure-rand@6.x/src/index.js -------------------------------------------------------------------------------- /vendor/react-dom@18.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/LICENSE -------------------------------------------------------------------------------- /vendor/react-dom@18.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/package.json -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/client.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/client.js -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/index.js -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/server.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@18.x/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@18.x/src/server.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/LICENSE -------------------------------------------------------------------------------- /vendor/react-dom@19.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/package.json -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/client.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/client.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/index.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/profiling.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/profiling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/profiling.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/server.d.ts -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/server.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/static.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react-dom@19.x/src/static.js -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/test-utils.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /vendor/react-dom@19.x/src/test-utils.js: -------------------------------------------------------------------------------- 1 | export { default, act } from 'react-dom/test-utils'; 2 | -------------------------------------------------------------------------------- /vendor/react@18.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/LICENSE -------------------------------------------------------------------------------- /vendor/react@18.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/package.json -------------------------------------------------------------------------------- /vendor/react@18.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/react@18.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/index.js -------------------------------------------------------------------------------- /vendor/react@18.x/src/jsx-dev-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/jsx-dev-runtime.d.ts -------------------------------------------------------------------------------- /vendor/react@18.x/src/jsx-dev-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/jsx-dev-runtime.js -------------------------------------------------------------------------------- /vendor/react@18.x/src/jsx-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/jsx-runtime.d.ts -------------------------------------------------------------------------------- /vendor/react@18.x/src/jsx-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@18.x/src/jsx-runtime.js -------------------------------------------------------------------------------- /vendor/react@19.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/LICENSE -------------------------------------------------------------------------------- /vendor/react@19.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/package.json -------------------------------------------------------------------------------- /vendor/react@19.x/src/compiler-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/compiler-runtime.d.ts -------------------------------------------------------------------------------- /vendor/react@19.x/src/compiler-runtime.js: -------------------------------------------------------------------------------- 1 | export { default, c } from 'react/compiler-runtime'; 2 | -------------------------------------------------------------------------------- /vendor/react@19.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/react@19.x/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/index.js -------------------------------------------------------------------------------- /vendor/react@19.x/src/jsx-dev-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/jsx-dev-runtime.d.ts -------------------------------------------------------------------------------- /vendor/react@19.x/src/jsx-dev-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/jsx-dev-runtime.js -------------------------------------------------------------------------------- /vendor/react@19.x/src/jsx-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/jsx-runtime.d.ts -------------------------------------------------------------------------------- /vendor/react@19.x/src/jsx-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/react@19.x/src/jsx-runtime.js -------------------------------------------------------------------------------- /vendor/simple-statistics@7.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/simple-statistics@7.x/LICENSE -------------------------------------------------------------------------------- /vendor/simple-statistics@7.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/simple-statistics@7.x/package.json -------------------------------------------------------------------------------- /vendor/simple-statistics@7.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/simple-statistics@7.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/simple-statistics@7.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'simple-statistics'; 2 | -------------------------------------------------------------------------------- /vendor/ts-pattern@5.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/ts-pattern@5.x/LICENSE -------------------------------------------------------------------------------- /vendor/ts-pattern@5.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/ts-pattern@5.x/package.json -------------------------------------------------------------------------------- /vendor/ts-pattern@5.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/ts-pattern@5.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/ts-pattern@5.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'ts-pattern'; 2 | -------------------------------------------------------------------------------- /vendor/type-fest@4.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/type-fest@4.x/LICENSE -------------------------------------------------------------------------------- /vendor/type-fest@4.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/type-fest@4.x/package.json -------------------------------------------------------------------------------- /vendor/type-fest@4.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/type-fest@4.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/zod@3.23.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.23.x/LICENSE -------------------------------------------------------------------------------- /vendor/zod@3.23.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.23.x/package.json -------------------------------------------------------------------------------- /vendor/zod@3.23.x/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.23.x/src/index.d.ts -------------------------------------------------------------------------------- /vendor/zod@3.23.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from 'zod__3.x'; 2 | -------------------------------------------------------------------------------- /vendor/zod@3.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/LICENSE -------------------------------------------------------------------------------- /vendor/zod@3.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/package.json -------------------------------------------------------------------------------- /vendor/zod@3.x/src/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './v3.d.ts'; 2 | -------------------------------------------------------------------------------- /vendor/zod@3.x/src/index.js: -------------------------------------------------------------------------------- 1 | export * from './v3.js'; 2 | -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/src/v3.d.ts -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/src/v3.js -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v4-mini.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v4-mini.js: -------------------------------------------------------------------------------- 1 | export * from 'zod/v4-mini'; 2 | -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/src/v4.d.ts -------------------------------------------------------------------------------- /vendor/zod@3.x/src/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vendor/zod@3.x/src/v4.js -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DouglasNeuroInformatics/OpenDataCapture/HEAD/vitest.workspace.ts --------------------------------------------------------------------------------