├── .changeset ├── README.md └── config.json ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── stripe-workflow.png └── workflows │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .thing └── hooks │ └── discord_webhook.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-typescript.cjs │ │ ├── plugin-version.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── Dockerfile ├── LICENSE ├── README.md ├── TODO.md ├── apps ├── bot │ ├── .swcrc │ ├── LICENSE.md │ ├── README.md │ ├── environment.d.ts │ ├── fix-commands │ │ ├── context │ │ │ ├── addToQueue.ts │ │ │ └── getBanner.ts │ │ ├── events │ │ │ ├── guild │ │ │ │ ├── guildMemberAdd.ts │ │ │ │ ├── guildMemberRemove.ts │ │ │ │ ├── messageDeleted.ts │ │ │ │ └── roleAdded.ts │ │ │ ├── interactions │ │ │ │ └── contextMenus.ts │ │ │ ├── moderation │ │ │ │ └── autoMod.ts │ │ │ └── tickets │ │ │ │ ├── handleTicketButton.ts │ │ │ │ └── selectTicket.ts │ │ ├── moderation │ │ │ ├── ban.ts │ │ │ ├── clear.ts │ │ │ ├── setUpLogChannel.ts │ │ │ ├── setUpTicket.ts │ │ │ ├── test.ts │ │ │ ├── ticket.ts │ │ │ └── un-ban.ts │ │ ├── music │ │ │ ├── immortal.ts │ │ │ ├── join.ts │ │ │ ├── loop.ts │ │ │ ├── nowPlaying.ts │ │ │ ├── pause.ts │ │ │ ├── play.ts │ │ │ ├── previous.ts │ │ │ ├── queue.ts │ │ │ ├── resume.ts │ │ │ ├── search.ts │ │ │ ├── shuffle.ts │ │ │ ├── skip.ts │ │ │ └── stop.ts │ │ └── util │ │ │ ├── dashboard.ts │ │ │ ├── help.ts │ │ │ ├── plugins.ts │ │ │ └── reload.ts │ ├── package.json │ ├── src │ │ ├── commands │ │ │ ├── anime │ │ │ │ └── anime.ts │ │ │ ├── fun │ │ │ │ └── meme.ts │ │ │ └── misc │ │ │ │ └── banner.ts │ │ ├── index.ts │ │ ├── listeners │ │ │ └── client │ │ │ │ └── ready.ts │ │ └── utils │ │ │ └── env.ts │ └── tsconfig.json ├── docs │ ├── README.md │ ├── next-env.d.ts │ ├── next-sitemap.config.js │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ └── favicon.ico │ │ ├── images │ │ │ ├── discord_logo.png │ │ │ ├── quanty_lg.jpg │ │ │ ├── quanty_md.jpg │ │ │ └── quanty_sm.jpg │ │ ├── robots.txt │ │ ├── site.webmanifest │ │ ├── sitemap-0.xml │ │ └── sitemap.xml │ ├── src │ │ ├── env │ │ │ ├── client.mjs │ │ │ └── schema.mjs │ │ ├── pages │ │ │ ├── _app.mdx │ │ │ ├── _meta.json │ │ │ ├── getting-started │ │ │ │ ├── _meta.json │ │ │ │ └── new-commands.mdx │ │ │ └── index.mdx │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.cjs │ ├── theme.config.tsx │ └── tsconfig.json └── web │ ├── README.md │ ├── next-env.d.ts │ ├── next-sitemap.config.js │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── images │ │ ├── discord_logo.png │ │ ├── quanty_lg.jpg │ │ ├── quanty_md.jpg │ │ └── quanty_sm.jpg │ ├── robots.txt │ ├── site.webmanifest │ ├── sitemap-0.xml │ └── sitemap.xml │ ├── src │ ├── api.ts │ ├── components │ │ ├── GuildSelectionDropdown.tsx │ │ ├── UserDropdownMenu.tsx │ │ ├── footer.tsx │ │ ├── main-navbar.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ └── navigation-menu.tsx │ ├── env │ │ ├── client.mjs │ │ ├── schema.mjs │ │ └── server.mjs │ ├── layouts │ │ ├── AppLayout.tsx │ │ └── DashboardLayout.tsx │ ├── lib │ │ ├── config │ │ │ └── next-seo.config.ts │ │ ├── getGuildIcon.tsx │ │ ├── guildStore.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth].ts │ │ │ └── trpc │ │ │ │ └── [trpc].ts │ │ ├── dashboard │ │ │ ├── [guildId] │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ └── styles │ │ └── globals.css │ ├── tailwind.config.cjs │ └── tsconfig.json ├── package.json ├── packages ├── api │ ├── environment.d.ts │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── root.ts │ │ ├── router │ │ │ ├── auth.ts │ │ │ ├── guild.ts │ │ │ ├── post.ts │ │ │ └── user.ts │ │ ├── trpc.ts │ │ └── util.ts │ ├── transformer.ts │ └── tsconfig.json ├── auth │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── auth-options.ts │ │ └── get-session.ts │ └── tsconfig.json ├── config │ ├── README.md │ ├── eslint-dashboard.js │ ├── eslint-preset.js │ ├── package.json │ ├── postcss.config.js │ └── tailwind.config.js ├── db │ ├── index.ts │ ├── package.json │ ├── prisma │ │ ├── schema.prisma │ │ └── seed.ts │ └── tsconfig.json ├── lib │ ├── index.ts │ ├── package.json │ ├── src │ │ └── constants.ts │ └── tsconfig.json ├── tsconfig │ ├── README.md │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── quanty.json └── ui │ ├── components │ └── Tooltip.tsx │ ├── index.ts │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.js │ └── tsconfig.json ├── prettier.config.js ├── tsconfig.json ├── turbo.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stripe-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/stripe-workflow.png -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.gitignore -------------------------------------------------------------------------------- /.thing/hooks/discord_webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.thing/hooks/discord_webhook.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarn/plugins/@yarnpkg/plugin-version.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarn/releases/yarn-3.4.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/TODO.md -------------------------------------------------------------------------------- /apps/bot/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/.swcrc -------------------------------------------------------------------------------- /apps/bot/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/LICENSE.md -------------------------------------------------------------------------------- /apps/bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/README.md -------------------------------------------------------------------------------- /apps/bot/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/environment.d.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/context/addToQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/context/addToQueue.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/context/getBanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/context/getBanner.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/guild/guildMemberAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/guild/guildMemberAdd.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/guild/guildMemberRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/guild/guildMemberRemove.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/guild/messageDeleted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/guild/messageDeleted.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/guild/roleAdded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/guild/roleAdded.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/interactions/contextMenus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/interactions/contextMenus.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/moderation/autoMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/moderation/autoMod.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/tickets/handleTicketButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/tickets/handleTicketButton.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/events/tickets/selectTicket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/events/tickets/selectTicket.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/ban.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/clear.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/setUpLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/setUpLogChannel.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/setUpTicket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/setUpTicket.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/test.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/ticket.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/moderation/un-ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/moderation/un-ban.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/immortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/immortal.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/join.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/loop.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/nowPlaying.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/nowPlaying.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/pause.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/play.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/previous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/previous.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/queue.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/resume.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/search.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/shuffle.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/skip.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/music/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/music/stop.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/util/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/util/dashboard.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/util/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/util/help.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/util/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/util/plugins.ts -------------------------------------------------------------------------------- /apps/bot/fix-commands/util/reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/fix-commands/util/reload.ts -------------------------------------------------------------------------------- /apps/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/package.json -------------------------------------------------------------------------------- /apps/bot/src/commands/anime/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/commands/anime/anime.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/meme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/commands/fun/meme.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/misc/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/commands/misc/banner.ts -------------------------------------------------------------------------------- /apps/bot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/index.ts -------------------------------------------------------------------------------- /apps/bot/src/listeners/client/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/listeners/client/ready.ts -------------------------------------------------------------------------------- /apps/bot/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/src/utils/env.ts -------------------------------------------------------------------------------- /apps/bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/bot/tsconfig.json -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- 1 | # Quanty Documentation 2 | -------------------------------------------------------------------------------- /apps/docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/next-env.d.ts -------------------------------------------------------------------------------- /apps/docs/next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/next-sitemap.config.js -------------------------------------------------------------------------------- /apps/docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/next.config.mjs -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/postcss.config.cjs -------------------------------------------------------------------------------- /apps/docs/public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/docs/public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/docs/public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/docs/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /apps/docs/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /apps/docs/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/docs/public/images/discord_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/images/discord_logo.png -------------------------------------------------------------------------------- /apps/docs/public/images/quanty_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/images/quanty_lg.jpg -------------------------------------------------------------------------------- /apps/docs/public/images/quanty_md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/images/quanty_md.jpg -------------------------------------------------------------------------------- /apps/docs/public/images/quanty_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/images/quanty_sm.jpg -------------------------------------------------------------------------------- /apps/docs/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/robots.txt -------------------------------------------------------------------------------- /apps/docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/site.webmanifest -------------------------------------------------------------------------------- /apps/docs/public/sitemap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/sitemap-0.xml -------------------------------------------------------------------------------- /apps/docs/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/public/sitemap.xml -------------------------------------------------------------------------------- /apps/docs/src/env/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/env/client.mjs -------------------------------------------------------------------------------- /apps/docs/src/env/schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/env/schema.mjs -------------------------------------------------------------------------------- /apps/docs/src/pages/_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/pages/_app.mdx -------------------------------------------------------------------------------- /apps/docs/src/pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/pages/_meta.json -------------------------------------------------------------------------------- /apps/docs/src/pages/getting-started/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/pages/getting-started/_meta.json -------------------------------------------------------------------------------- /apps/docs/src/pages/getting-started/new-commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/pages/getting-started/new-commands.mdx -------------------------------------------------------------------------------- /apps/docs/src/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/pages/index.mdx -------------------------------------------------------------------------------- /apps/docs/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/src/styles/globals.css -------------------------------------------------------------------------------- /apps/docs/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/docs/theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/theme.config.tsx -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- 1 | # Quanty Dashboard 2 | -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/next-sitemap.config.js -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/postcss.config.cjs -------------------------------------------------------------------------------- /apps/web/public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/web/public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/web/public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/web/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /apps/web/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /apps/web/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/images/discord_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/images/discord_logo.png -------------------------------------------------------------------------------- /apps/web/public/images/quanty_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/images/quanty_lg.jpg -------------------------------------------------------------------------------- /apps/web/public/images/quanty_md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/images/quanty_md.jpg -------------------------------------------------------------------------------- /apps/web/public/images/quanty_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/images/quanty_sm.jpg -------------------------------------------------------------------------------- /apps/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/robots.txt -------------------------------------------------------------------------------- /apps/web/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/site.webmanifest -------------------------------------------------------------------------------- /apps/web/public/sitemap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/sitemap-0.xml -------------------------------------------------------------------------------- /apps/web/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/public/sitemap.xml -------------------------------------------------------------------------------- /apps/web/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/api.ts -------------------------------------------------------------------------------- /apps/web/src/components/GuildSelectionDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/GuildSelectionDropdown.tsx -------------------------------------------------------------------------------- /apps/web/src/components/UserDropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/UserDropdownMenu.tsx -------------------------------------------------------------------------------- /apps/web/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/footer.tsx -------------------------------------------------------------------------------- /apps/web/src/components/main-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/main-navbar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /apps/web/src/env/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/env/client.mjs -------------------------------------------------------------------------------- /apps/web/src/env/schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/env/schema.mjs -------------------------------------------------------------------------------- /apps/web/src/env/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/env/server.mjs -------------------------------------------------------------------------------- /apps/web/src/layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/layouts/AppLayout.tsx -------------------------------------------------------------------------------- /apps/web/src/layouts/DashboardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/layouts/DashboardLayout.tsx -------------------------------------------------------------------------------- /apps/web/src/lib/config/next-seo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/lib/config/next-seo.config.ts -------------------------------------------------------------------------------- /apps/web/src/lib/getGuildIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/lib/getGuildIcon.tsx -------------------------------------------------------------------------------- /apps/web/src/lib/guildStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/lib/guildStore.tsx -------------------------------------------------------------------------------- /apps/web/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/lib/types.ts -------------------------------------------------------------------------------- /apps/web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/web/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/_app.tsx -------------------------------------------------------------------------------- /apps/web/src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /apps/web/src/pages/api/trpc/[trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/api/trpc/[trpc].ts -------------------------------------------------------------------------------- /apps/web/src/pages/dashboard/[guildId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/dashboard/[guildId]/index.tsx -------------------------------------------------------------------------------- /apps/web/src/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /apps/web/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/pages/index.tsx -------------------------------------------------------------------------------- /apps/web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/web/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/package.json -------------------------------------------------------------------------------- /packages/api/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/environment.d.ts -------------------------------------------------------------------------------- /packages/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/index.ts -------------------------------------------------------------------------------- /packages/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/package.json -------------------------------------------------------------------------------- /packages/api/src/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/root.ts -------------------------------------------------------------------------------- /packages/api/src/router/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/router/auth.ts -------------------------------------------------------------------------------- /packages/api/src/router/guild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/router/guild.ts -------------------------------------------------------------------------------- /packages/api/src/router/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/router/post.ts -------------------------------------------------------------------------------- /packages/api/src/router/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/router/user.ts -------------------------------------------------------------------------------- /packages/api/src/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/trpc.ts -------------------------------------------------------------------------------- /packages/api/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/src/util.ts -------------------------------------------------------------------------------- /packages/api/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/transformer.ts -------------------------------------------------------------------------------- /packages/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/api/tsconfig.json -------------------------------------------------------------------------------- /packages/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/auth/index.ts -------------------------------------------------------------------------------- /packages/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/auth/package.json -------------------------------------------------------------------------------- /packages/auth/src/auth-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/auth/src/auth-options.ts -------------------------------------------------------------------------------- /packages/auth/src/get-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/auth/src/get-session.ts -------------------------------------------------------------------------------- /packages/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/auth/tsconfig.json -------------------------------------------------------------------------------- /packages/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/README.md -------------------------------------------------------------------------------- /packages/config/eslint-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/eslint-dashboard.js -------------------------------------------------------------------------------- /packages/config/eslint-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/eslint-preset.js -------------------------------------------------------------------------------- /packages/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/package.json -------------------------------------------------------------------------------- /packages/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/postcss.config.js -------------------------------------------------------------------------------- /packages/config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/config/tailwind.config.js -------------------------------------------------------------------------------- /packages/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/db/index.ts -------------------------------------------------------------------------------- /packages/db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/db/package.json -------------------------------------------------------------------------------- /packages/db/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/db/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/db/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/db/prisma/seed.ts -------------------------------------------------------------------------------- /packages/db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/db/tsconfig.json -------------------------------------------------------------------------------- /packages/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src/constants' 2 | -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/lib/src/constants.ts -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/lib/tsconfig.json -------------------------------------------------------------------------------- /packages/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/tsconfig/README.md -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/tsconfig/nextjs.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/quanty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/tsconfig/quanty.json -------------------------------------------------------------------------------- /packages/ui/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/ui/components/Tooltip.tsx -------------------------------------------------------------------------------- /packages/ui/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components/Tooltip' 2 | -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/ui/postcss.config.js -------------------------------------------------------------------------------- /packages/ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/ui/tailwind.config.js -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/prettier.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougrocha/quanty/HEAD/yarn.lock --------------------------------------------------------------------------------