├── .github └── dependabot.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── app.config.ts ├── assets ├── css │ └── font.css └── fonts │ └── cal.woff2 ├── components ├── Dashboard │ ├── CollectionActionMenu.vue │ ├── CollectionForm.vue │ ├── CollectionList.vue │ ├── Feedback │ │ └── Details.vue │ ├── Header.vue │ ├── Onboard │ │ ├── CategoryOption.vue │ │ ├── IdeaForm.vue │ │ ├── ProjectForm.vue │ │ ├── TeamsForm.vue │ │ ├── Timeline.vue │ │ └── index.vue │ ├── PageContainer.vue │ ├── ProfileDropdown.vue │ ├── Projects │ │ ├── Card.vue │ │ ├── Header.vue │ │ └── New.vue │ └── Sidebar.vue ├── Home │ ├── Explainer.vue │ ├── Footer.vue │ ├── Hero.vue │ ├── Integrations.vue │ ├── Navbar.vue │ ├── OpenSource.vue │ └── WhatsNewPill.vue ├── Logo.vue └── ThemeToggle.vue ├── composables ├── collection.js ├── email.js └── session.ts ├── drizzle.config.ts ├── lib ├── enums │ └── project.ts └── types │ ├── github.ts │ └── project.ts ├── middleware └── auth.ts ├── nuxt.config.ts ├── package.json ├── pages ├── dashboard │ ├── index.vue │ └── index │ │ ├── [projectId] │ │ ├── index.vue │ │ └── index │ │ │ ├── [feedbackId].vue │ │ │ ├── index.vue │ │ │ └── settings.vue │ │ ├── account.vue │ │ ├── api-keys.vue │ │ ├── billing.vue │ │ ├── index.vue │ │ ├── team.vue │ │ └── webhooks.vue ├── index.vue └── login.vue ├── plugins └── session.server.ts ├── public ├── Grid.png ├── favicon.ico ├── feedbackjar-dashboard.png ├── flare.jpg ├── flare.png ├── hands.svg ├── logo.png └── writing-code.png ├── scripts └── create_feedback.py ├── server ├── api │ ├── auth │ │ └── github.get.ts │ ├── projects │ │ ├── [id].delete.ts │ │ ├── [id].patch.ts │ │ ├── [id] │ │ │ ├── [id].patch.ts │ │ │ ├── feedbacks.get.ts │ │ │ ├── feedbacks.post.ts │ │ │ └── overview.ts │ │ ├── index.get.ts │ │ ├── index.post.ts │ │ └── onboard.patch.ts │ └── session │ │ ├── index.delete.ts │ │ └── index.get.ts ├── db │ ├── migrations │ │ ├── 0000_marvelous_madrox.sql │ │ ├── 0001_rare_black_knight.sql │ │ ├── 0002_clumsy_strong_guy.sql │ │ └── meta │ │ │ ├── 0000_snapshot.json │ │ │ ├── 0001_snapshot.json │ │ │ ├── 0002_snapshot.json │ │ │ └── _journal.json │ ├── query │ │ ├── analytics.ts │ │ ├── feedback.ts │ │ ├── project.ts │ │ └── users.ts │ └── schema.ts ├── plugins │ └── migrations.ts ├── tsconfig.json └── utils │ ├── db.ts │ ├── helper.ts │ ├── session.ts │ └── validate.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/README.md -------------------------------------------------------------------------------- /app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/app.config.ts -------------------------------------------------------------------------------- /assets/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/assets/css/font.css -------------------------------------------------------------------------------- /assets/fonts/cal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/assets/fonts/cal.woff2 -------------------------------------------------------------------------------- /components/Dashboard/CollectionActionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/CollectionActionMenu.vue -------------------------------------------------------------------------------- /components/Dashboard/CollectionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/CollectionForm.vue -------------------------------------------------------------------------------- /components/Dashboard/CollectionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/CollectionList.vue -------------------------------------------------------------------------------- /components/Dashboard/Feedback/Details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Feedback/Details.vue -------------------------------------------------------------------------------- /components/Dashboard/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Header.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/CategoryOption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/CategoryOption.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/IdeaForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/IdeaForm.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/ProjectForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/ProjectForm.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/TeamsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/TeamsForm.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/Timeline.vue -------------------------------------------------------------------------------- /components/Dashboard/Onboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Onboard/index.vue -------------------------------------------------------------------------------- /components/Dashboard/PageContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/PageContainer.vue -------------------------------------------------------------------------------- /components/Dashboard/ProfileDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/ProfileDropdown.vue -------------------------------------------------------------------------------- /components/Dashboard/Projects/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Projects/Card.vue -------------------------------------------------------------------------------- /components/Dashboard/Projects/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Projects/Header.vue -------------------------------------------------------------------------------- /components/Dashboard/Projects/New.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Projects/New.vue -------------------------------------------------------------------------------- /components/Dashboard/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Dashboard/Sidebar.vue -------------------------------------------------------------------------------- /components/Home/Explainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/Explainer.vue -------------------------------------------------------------------------------- /components/Home/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/Footer.vue -------------------------------------------------------------------------------- /components/Home/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/Hero.vue -------------------------------------------------------------------------------- /components/Home/Integrations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/Integrations.vue -------------------------------------------------------------------------------- /components/Home/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/Navbar.vue -------------------------------------------------------------------------------- /components/Home/OpenSource.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/OpenSource.vue -------------------------------------------------------------------------------- /components/Home/WhatsNewPill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Home/WhatsNewPill.vue -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/ThemeToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/components/ThemeToggle.vue -------------------------------------------------------------------------------- /composables/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/composables/collection.js -------------------------------------------------------------------------------- /composables/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/composables/email.js -------------------------------------------------------------------------------- /composables/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/composables/session.ts -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /lib/enums/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/lib/enums/project.ts -------------------------------------------------------------------------------- /lib/types/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/lib/types/github.ts -------------------------------------------------------------------------------- /lib/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/lib/types/project.ts -------------------------------------------------------------------------------- /middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/middleware/auth.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/package.json -------------------------------------------------------------------------------- /pages/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index.vue -------------------------------------------------------------------------------- /pages/dashboard/index/[projectId]/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/[projectId]/index.vue -------------------------------------------------------------------------------- /pages/dashboard/index/[projectId]/index/[feedbackId].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/[projectId]/index/[feedbackId].vue -------------------------------------------------------------------------------- /pages/dashboard/index/[projectId]/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/[projectId]/index/index.vue -------------------------------------------------------------------------------- /pages/dashboard/index/[projectId]/index/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/[projectId]/index/settings.vue -------------------------------------------------------------------------------- /pages/dashboard/index/account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/account.vue -------------------------------------------------------------------------------- /pages/dashboard/index/api-keys.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/api-keys.vue -------------------------------------------------------------------------------- /pages/dashboard/index/billing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/billing.vue -------------------------------------------------------------------------------- /pages/dashboard/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/index.vue -------------------------------------------------------------------------------- /pages/dashboard/index/team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/team.vue -------------------------------------------------------------------------------- /pages/dashboard/index/webhooks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/dashboard/index/webhooks.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/pages/login.vue -------------------------------------------------------------------------------- /plugins/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/plugins/session.server.ts -------------------------------------------------------------------------------- /public/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/Grid.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/feedbackjar-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/feedbackjar-dashboard.png -------------------------------------------------------------------------------- /public/flare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/flare.jpg -------------------------------------------------------------------------------- /public/flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/flare.png -------------------------------------------------------------------------------- /public/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/hands.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/writing-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/public/writing-code.png -------------------------------------------------------------------------------- /scripts/create_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/scripts/create_feedback.py -------------------------------------------------------------------------------- /server/api/auth/github.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/auth/github.get.ts -------------------------------------------------------------------------------- /server/api/projects/[id].delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id].delete.ts -------------------------------------------------------------------------------- /server/api/projects/[id].patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id].patch.ts -------------------------------------------------------------------------------- /server/api/projects/[id]/[id].patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id]/[id].patch.ts -------------------------------------------------------------------------------- /server/api/projects/[id]/feedbacks.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id]/feedbacks.get.ts -------------------------------------------------------------------------------- /server/api/projects/[id]/feedbacks.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id]/feedbacks.post.ts -------------------------------------------------------------------------------- /server/api/projects/[id]/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/[id]/overview.ts -------------------------------------------------------------------------------- /server/api/projects/index.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/index.get.ts -------------------------------------------------------------------------------- /server/api/projects/index.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/index.post.ts -------------------------------------------------------------------------------- /server/api/projects/onboard.patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/projects/onboard.patch.ts -------------------------------------------------------------------------------- /server/api/session/index.delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/session/index.delete.ts -------------------------------------------------------------------------------- /server/api/session/index.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/api/session/index.get.ts -------------------------------------------------------------------------------- /server/db/migrations/0000_marvelous_madrox.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/0000_marvelous_madrox.sql -------------------------------------------------------------------------------- /server/db/migrations/0001_rare_black_knight.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/0001_rare_black_knight.sql -------------------------------------------------------------------------------- /server/db/migrations/0002_clumsy_strong_guy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/0002_clumsy_strong_guy.sql -------------------------------------------------------------------------------- /server/db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /server/db/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /server/db/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /server/db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /server/db/query/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/query/analytics.ts -------------------------------------------------------------------------------- /server/db/query/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/query/feedback.ts -------------------------------------------------------------------------------- /server/db/query/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/query/project.ts -------------------------------------------------------------------------------- /server/db/query/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/query/users.ts -------------------------------------------------------------------------------- /server/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/db/schema.ts -------------------------------------------------------------------------------- /server/plugins/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/plugins/migrations.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /server/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/utils/db.ts -------------------------------------------------------------------------------- /server/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/utils/helper.ts -------------------------------------------------------------------------------- /server/utils/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/utils/session.ts -------------------------------------------------------------------------------- /server/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/server/utils/validate.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayazara/feedbackjar/HEAD/yarn.lock --------------------------------------------------------------------------------