├── .gitignore ├── LICENSE ├── README.md ├── app ├── .eslintrc.json ├── .npmignore ├── README.md ├── devisible.ts ├── package-lock.json ├── package.json ├── test │ ├── dummy.js │ └── file.txt └── tsconfig.json ├── tests ├── test.sh └── test_repos.txt ├── tsconfig.json └── web ├── .babelrc.js ├── .eslintignore ├── .eslintrc.json ├── .prettierignore ├── .prettierrc.json ├── __tests__ ├── Unit_Testing │ └── react-testing │ │ └── App.test.tsx ├── __mocks__ │ ├── fileMock.ts │ └── styleMock.ts ├── config │ └── importJestDOM.ts ├── integration │ └── integration.js ├── jest-setup.js └── jest-teardown.js ├── frontend ├── index.html ├── public │ └── vite.svg ├── src │ ├── App.tsx │ ├── assets │ │ ├── Always-Has-Been.png │ │ ├── ApiToken.png │ │ ├── BlueD.png │ │ ├── BlueD.svg │ │ ├── Demo.png │ │ ├── Eden.jpeg │ │ ├── EdenQR.svg │ │ ├── Justin.jpeg │ │ ├── JustinQR.svg │ │ ├── Michael.jpeg │ │ ├── OrangeD.png │ │ ├── OrangeD.svg │ │ ├── PlotsDev.gif │ │ ├── RedRepo.gif │ │ ├── RegisterGif.gif │ │ ├── RepoTile.png │ │ ├── Tanner.jpeg │ │ ├── TannerQR.svg │ │ ├── TrackedDeps.gif │ │ ├── Transparent_Blue.svg │ │ ├── Transparent_Orange.svg │ │ ├── cicd.png │ │ ├── dashboard.png │ │ ├── fonts │ │ │ ├── Roboto-Bold.ttf │ │ │ └── Roboto-Medium.ttf │ │ └── michaelQR.svg │ ├── components │ │ ├── AboutTheTeam.tsx │ │ ├── Account.tsx │ │ ├── AllDependenciesList.tsx │ │ ├── ConfirmationModal.tsx │ │ ├── Dashboard.tsx │ │ ├── DropMenu.tsx │ │ ├── Footer.tsx │ │ ├── Landing.tsx │ │ ├── Loader.tsx │ │ ├── Login.tsx │ │ ├── MasterDependencies.tsx │ │ ├── MasterDependenciesList.tsx │ │ ├── Navbar.tsx │ │ ├── NotFound.tsx │ │ ├── Recovery.tsx │ │ ├── Register.tsx │ │ ├── RepoItem.tsx │ │ ├── RepoItemDependencies.tsx │ │ ├── RepoItemDetails.tsx │ │ ├── SearchBar.tsx │ │ ├── TeamMemberCard.tsx │ │ ├── api │ │ │ └── user.tsx │ │ ├── charts │ │ │ └── LineChart.tsx │ │ ├── landingSubPages │ │ │ ├── CommandLineInstructions.tsx │ │ │ ├── ContactUs.tsx │ │ │ ├── Exporter.tsx │ │ │ ├── GetStarted.tsx │ │ │ └── HowToUse.tsx │ │ ├── landingSubPagesMobile │ │ │ ├── BuiltByDevelopersMobile.tsx │ │ │ ├── CommandLineInstructionsMobile.tsx │ │ │ ├── ContactUsMobile.tsx │ │ │ ├── ExporterMobile.tsx │ │ │ ├── GetStartedMobile.tsx │ │ │ ├── GitHubInstructionsMobile.tsx │ │ │ └── HowToUseMobile.tsx │ │ ├── mocks │ │ │ └── mocks.tsx │ │ ├── styledComponents │ │ │ └── StyledComponents.ts │ │ └── utils │ │ │ ├── findOutOfSpecRepos.ts │ │ │ ├── formatBytes.ts │ │ │ ├── formatTime.ts │ │ │ └── jsonVerify.ts │ ├── fonts │ │ └── Roboto-Medium.ttf │ ├── main.tsx │ ├── stylesheets │ │ ├── abouttheteam.css │ │ ├── account.css │ │ ├── built-by-developers.css │ │ ├── command-line-instructions-mobile.css │ │ ├── contactUs.css │ │ ├── dashboard.css │ │ ├── dependency-list.css │ │ ├── footer.css │ │ ├── get-started-mobile.css │ │ ├── getstarted.css │ │ ├── github-instructions-mobile.css │ │ ├── howtouse.css │ │ ├── index.css │ │ ├── installation.css │ │ ├── landing.css │ │ ├── loader.css │ │ ├── login.css │ │ ├── notfound.css │ │ └── register.css │ ├── theme.tsx │ ├── types.tsx │ └── vite-env.d.ts ├── tsconfig.node.json └── vite.config.ts ├── jest.config.js ├── package-lock.json ├── package.json ├── prisma ├── migrations │ ├── 20221003235959_init │ │ └── migration.sql │ ├── 20221017205059_interim │ │ └── migration.sql │ ├── 20221017211412_update_schema_to_handle_cascading_delete │ │ └── migration.sql │ ├── 20221024190403_temp │ │ └── migration.sql │ ├── 20221024190539_hash_required │ │ └── migration.sql │ └── migration_lock.toml ├── schema.prisma └── test.prisma ├── server ├── controllers │ ├── appController.ts │ ├── userController.ts │ └── webController.ts ├── routes │ ├── appApi.ts │ ├── userApi.ts │ └── webApi.ts └── server.ts ├── setupTests.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/README.md -------------------------------------------------------------------------------- /app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/.eslintrc.json -------------------------------------------------------------------------------- /app/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/README.md -------------------------------------------------------------------------------- /app/devisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/devisible.ts -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/package.json -------------------------------------------------------------------------------- /app/test/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/test/dummy.js -------------------------------------------------------------------------------- /app/test/file.txt: -------------------------------------------------------------------------------- 1 | hopefully, the app can read my size! -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/test_repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/tests/test_repos.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/.babelrc.js -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- 1 | */dist/* -------------------------------------------------------------------------------- /web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/.eslintrc.json -------------------------------------------------------------------------------- /web/.prettierignore: -------------------------------------------------------------------------------- 1 | #ignore artifacts: 2 | node_modules, 3 | prisma -------------------------------------------------------------------------------- /web/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/.prettierrc.json -------------------------------------------------------------------------------- /web/__tests__/Unit_Testing/react-testing/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/__tests__/Unit_Testing/react-testing/App.test.tsx -------------------------------------------------------------------------------- /web/__tests__/__mocks__/fileMock.ts: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /web/__tests__/__mocks__/styleMock.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /web/__tests__/config/importJestDOM.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /web/__tests__/integration/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/__tests__/integration/integration.js -------------------------------------------------------------------------------- /web/__tests__/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/__tests__/jest-setup.js -------------------------------------------------------------------------------- /web/__tests__/jest-teardown.js: -------------------------------------------------------------------------------- 1 | module.exports = async (globalConfig) => { 2 | testServer.close(); 3 | }; 4 | -------------------------------------------------------------------------------- /web/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/index.html -------------------------------------------------------------------------------- /web/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/public/vite.svg -------------------------------------------------------------------------------- /web/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/App.tsx -------------------------------------------------------------------------------- /web/frontend/src/assets/Always-Has-Been.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Always-Has-Been.png -------------------------------------------------------------------------------- /web/frontend/src/assets/ApiToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/ApiToken.png -------------------------------------------------------------------------------- /web/frontend/src/assets/BlueD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/BlueD.png -------------------------------------------------------------------------------- /web/frontend/src/assets/BlueD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/BlueD.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Demo.png -------------------------------------------------------------------------------- /web/frontend/src/assets/Eden.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Eden.jpeg -------------------------------------------------------------------------------- /web/frontend/src/assets/EdenQR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/EdenQR.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/Justin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Justin.jpeg -------------------------------------------------------------------------------- /web/frontend/src/assets/JustinQR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/JustinQR.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/Michael.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Michael.jpeg -------------------------------------------------------------------------------- /web/frontend/src/assets/OrangeD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/OrangeD.png -------------------------------------------------------------------------------- /web/frontend/src/assets/OrangeD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/OrangeD.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/PlotsDev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/PlotsDev.gif -------------------------------------------------------------------------------- /web/frontend/src/assets/RedRepo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/RedRepo.gif -------------------------------------------------------------------------------- /web/frontend/src/assets/RegisterGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/RegisterGif.gif -------------------------------------------------------------------------------- /web/frontend/src/assets/RepoTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/RepoTile.png -------------------------------------------------------------------------------- /web/frontend/src/assets/Tanner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Tanner.jpeg -------------------------------------------------------------------------------- /web/frontend/src/assets/TannerQR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/TannerQR.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/TrackedDeps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/TrackedDeps.gif -------------------------------------------------------------------------------- /web/frontend/src/assets/Transparent_Blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Transparent_Blue.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/Transparent_Orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/Transparent_Orange.svg -------------------------------------------------------------------------------- /web/frontend/src/assets/cicd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/cicd.png -------------------------------------------------------------------------------- /web/frontend/src/assets/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/dashboard.png -------------------------------------------------------------------------------- /web/frontend/src/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /web/frontend/src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /web/frontend/src/assets/michaelQR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/assets/michaelQR.svg -------------------------------------------------------------------------------- /web/frontend/src/components/AboutTheTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/AboutTheTeam.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Account.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/AllDependenciesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/AllDependenciesList.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/ConfirmationModal.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Dashboard.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/DropMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/DropMenu.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Landing.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Loader.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Login.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/MasterDependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/MasterDependencies.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/MasterDependenciesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/MasterDependenciesList.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Navbar.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/NotFound.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Recovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Recovery.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/Register.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/RepoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/RepoItem.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/RepoItemDependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/RepoItemDependencies.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/RepoItemDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/RepoItemDetails.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/TeamMemberCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/TeamMemberCard.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/api/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/api/user.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/charts/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/charts/LineChart.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPages/CommandLineInstructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPages/CommandLineInstructions.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPages/ContactUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPages/ContactUs.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPages/Exporter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPages/Exporter.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPages/GetStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPages/GetStarted.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPages/HowToUse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPages/HowToUse.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/BuiltByDevelopersMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/BuiltByDevelopersMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/CommandLineInstructionsMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/CommandLineInstructionsMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/ContactUsMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/ContactUsMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/ExporterMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/ExporterMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/GetStartedMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/GetStartedMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/GitHubInstructionsMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/GitHubInstructionsMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/landingSubPagesMobile/HowToUseMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/landingSubPagesMobile/HowToUseMobile.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/mocks/mocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/mocks/mocks.tsx -------------------------------------------------------------------------------- /web/frontend/src/components/styledComponents/StyledComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/styledComponents/StyledComponents.ts -------------------------------------------------------------------------------- /web/frontend/src/components/utils/findOutOfSpecRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/utils/findOutOfSpecRepos.ts -------------------------------------------------------------------------------- /web/frontend/src/components/utils/formatBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/utils/formatBytes.ts -------------------------------------------------------------------------------- /web/frontend/src/components/utils/formatTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/utils/formatTime.ts -------------------------------------------------------------------------------- /web/frontend/src/components/utils/jsonVerify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/components/utils/jsonVerify.ts -------------------------------------------------------------------------------- /web/frontend/src/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /web/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/main.tsx -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/abouttheteam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/abouttheteam.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/account.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/built-by-developers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/built-by-developers.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/command-line-instructions-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/command-line-instructions-mobile.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/contactUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/contactUs.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/dashboard.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/dependency-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/dependency-list.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/footer.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/get-started-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/get-started-mobile.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/getstarted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/getstarted.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/github-instructions-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/github-instructions-mobile.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/howtouse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/howtouse.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/index.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/installation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/installation.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/landing.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/loader.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/login.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/notfound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/notfound.css -------------------------------------------------------------------------------- /web/frontend/src/stylesheets/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/stylesheets/register.css -------------------------------------------------------------------------------- /web/frontend/src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/theme.tsx -------------------------------------------------------------------------------- /web/frontend/src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/src/types.tsx -------------------------------------------------------------------------------- /web/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /web/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/frontend/vite.config.ts -------------------------------------------------------------------------------- /web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/jest.config.js -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/package.json -------------------------------------------------------------------------------- /web/prisma/migrations/20221003235959_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/20221003235959_init/migration.sql -------------------------------------------------------------------------------- /web/prisma/migrations/20221017205059_interim/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/20221017205059_interim/migration.sql -------------------------------------------------------------------------------- /web/prisma/migrations/20221017211412_update_schema_to_handle_cascading_delete/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/20221017211412_update_schema_to_handle_cascading_delete/migration.sql -------------------------------------------------------------------------------- /web/prisma/migrations/20221024190403_temp/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/20221024190403_temp/migration.sql -------------------------------------------------------------------------------- /web/prisma/migrations/20221024190539_hash_required/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/20221024190539_hash_required/migration.sql -------------------------------------------------------------------------------- /web/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /web/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/schema.prisma -------------------------------------------------------------------------------- /web/prisma/test.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/prisma/test.prisma -------------------------------------------------------------------------------- /web/server/controllers/appController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/controllers/appController.ts -------------------------------------------------------------------------------- /web/server/controllers/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/controllers/userController.ts -------------------------------------------------------------------------------- /web/server/controllers/webController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/controllers/webController.ts -------------------------------------------------------------------------------- /web/server/routes/appApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/routes/appApi.ts -------------------------------------------------------------------------------- /web/server/routes/userApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/routes/userApi.ts -------------------------------------------------------------------------------- /web/server/routes/webApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/routes/webApi.ts -------------------------------------------------------------------------------- /web/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/server/server.ts -------------------------------------------------------------------------------- /web/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/setupTests.js -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/DEVisible/HEAD/web/tsconfig.json --------------------------------------------------------------------------------