@digilogiclabs/create-saas-app 2.11.0 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/generators/template-generator.d.ts.map +1 -1
- package/dist/generators/template-generator.js +15 -8
- package/dist/generators/template-generator.js.map +1 -1
- package/dist/templates/shared/admin/web/src/components/admin-nav.tsx +3 -3
- package/dist/templates/shared/auth/supabase/web/src/lib/auth-session.ts +36 -16
- package/dist/templates/shared/auth/supabase/web/src/middleware.ts +6 -0
- package/dist/templates/shared/cookie-consent/web/components/cookie-consent.tsx +5 -5
- package/dist/templates/shared/design/web/src/components/ui/button.tsx +56 -0
- package/dist/templates/shared/email/web/src/lib/email/client.ts +1 -1
- package/dist/templates/shared/error-pages/web/src/app/error.tsx +13 -11
- package/dist/templates/shared/error-pages/web/src/app/global-error.tsx +2 -0
- package/dist/templates/shared/error-pages/web/src/app/not-found.tsx +6 -6
- package/dist/templates/shared/legal/web/src/app/(legal)/privacy/page.tsx +4 -4
- package/dist/templates/shared/legal/web/src/app/(legal)/terms/page.tsx +4 -4
- package/dist/templates/shared/loading/web/components/skeleton.tsx +4 -4
- package/dist/templates/shared/mock/web/.env.local +55 -0
- package/dist/templates/shared/mock/web/src/components/mock-auth-provider.tsx +72 -0
- package/dist/templates/shared/mock/web/src/components/mock-banner.tsx +29 -0
- package/dist/templates/shared/mock/web/src/lib/mock.ts +147 -0
- package/dist/templates/shared/payments/web/src/app/api/webhooks/stripe/route.ts +10 -4
- package/dist/templates/shared/redis/web/src/lib/redis.ts +1 -1
- package/dist/templates/web/base/template/eslint.config.mjs +14 -0
- package/dist/templates/web/base/template/src/app/auth/callback/route.ts +1 -1
- package/dist/templates/web/base/template/src/app/checkout/page.tsx +76 -103
- package/dist/templates/web/base/template/src/app/dashboard/page.tsx +145 -329
- package/dist/templates/web/base/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/base/template/src/app/login/page.tsx +116 -66
- package/dist/templates/web/base/template/src/app/page.tsx +97 -193
- package/dist/templates/web/base/template/src/app/settings/page.tsx +154 -0
- package/dist/templates/web/base/template/src/app/signup/page.tsx +117 -66
- package/dist/templates/web/base/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/base/template/src/components/shared/header.tsx +229 -63
- package/dist/templates/web/ui-auth/template/eslint.config.mjs +14 -0
- package/dist/templates/web/ui-auth/template/src/app/checkout/page.tsx +3 -3
- package/dist/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +81 -91
- package/dist/templates/web/ui-auth/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth/template/src/app/login/page.tsx +22 -45
- package/dist/templates/web/ui-auth/template/src/app/page.tsx +106 -306
- package/dist/templates/web/ui-auth/template/src/app/setup/page.tsx +387 -402
- package/dist/templates/web/ui-auth/template/src/app/signup/page.tsx +24 -47
- package/dist/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth/template/src/components/shared/header.tsx +229 -94
- package/dist/templates/web/ui-auth-ai/template/src/app/layout.tsx +38 -45
- package/dist/templates/web/ui-auth-ai/template/src/app/login/page.tsx +86 -0
- package/dist/templates/web/ui-auth-ai/template/src/app/page.tsx +107 -193
- package/dist/templates/web/ui-auth-ai/template/src/app/signup/page.tsx +105 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/ai/audio-generator.tsx +144 -140
- package/dist/templates/web/ui-auth-ai/template/src/components/ai/video-generator.tsx +156 -157
- package/dist/templates/web/ui-auth-ai/template/src/components/auth/login-form.tsx +7 -3
- package/dist/templates/web/ui-auth-ai/template/src/components/providers/app-providers.tsx +25 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/shared/footer.tsx +36 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/shared/header.tsx +228 -0
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/button.tsx +5 -5
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/input.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/select.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/textarea.tsx +1 -1
- package/dist/templates/web/ui-auth-ai/template/src/components/ui/theme-toggle.tsx +34 -0
- package/dist/templates/web/ui-auth-ai/template/src/lib/supabase.ts +6 -4
- package/dist/templates/web/ui-auth-ai/template/src/providers/auth-provider.tsx +7 -5
- package/dist/templates/web/ui-auth-payments/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +104 -296
- package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +70 -81
- package/dist/templates/web/ui-auth-payments/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth-payments/template/src/app/login/loading.tsx +9 -9
- package/dist/templates/web/ui-auth-payments/template/src/app/login/page.tsx +4 -104
- package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +69 -337
- package/dist/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +55 -68
- package/dist/templates/web/ui-auth-payments/template/src/app/signup/loading.tsx +13 -13
- package/dist/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +4 -123
- package/dist/templates/web/ui-auth-payments/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +49 -103
- package/dist/templates/web/ui-auth-payments/template/src/components/client/newsletter-signup.tsx +4 -4
- package/dist/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +60 -140
- package/dist/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +25 -28
- package/dist/templates/web/ui-auth-payments/template/src/components/shared/header.tsx +229 -230
- package/dist/templates/web/ui-auth-payments/template/src/lib/actions/auth.ts +245 -245
- package/dist/templates/web/ui-auth-payments/template/src/lib/actions/index.ts +339 -339
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/ai/page.tsx +305 -309
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +62 -312
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +68 -83
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +20 -20
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +140 -394
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +28 -27
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +51 -66
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +50 -79
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +58 -111
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +229 -252
- package/dist/templates/web/ui-auth-payments-ai/template/src/lib/actions/auth.ts +245 -245
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +27 -27
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/layout.tsx +40 -38
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +122 -385
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/setup/page.tsx +340 -344
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/auth-status.tsx +37 -52
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +49 -103
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +60 -140
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +229 -252
- package/dist/templates/web/ui-auth-payments-audio/template/src/lib/actions/auth.ts +3 -3
- package/dist/templates/web/ui-auth-payments-video/template/src/app/billing/page.tsx +63 -192
- package/dist/templates/web/ui-auth-payments-video/template/src/app/checkout/page.tsx +109 -125
- package/dist/templates/web/ui-auth-payments-video/template/src/app/layout.tsx +38 -36
- package/dist/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +9 -109
- package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +132 -392
- package/dist/templates/web/ui-auth-payments-video/template/src/app/setup/page.tsx +346 -350
- package/dist/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +9 -128
- package/dist/templates/web/ui-auth-payments-video/template/src/components/client/login-form.tsx +90 -0
- package/dist/templates/web/ui-auth-payments-video/template/src/components/client/signup-form.tsx +105 -0
- package/dist/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +8 -3
- package/dist/templates/web/ui-auth-payments-video/template/src/components/shared/header.tsx +229 -246
- package/dist/templates/web/ui-only/template/eslint.config.mjs +14 -0
- package/dist/templates/web/ui-only/template/src/app/checkout/page.tsx +2 -2
- package/dist/templates/web/ui-only/template/src/app/login/page.tsx +69 -63
- package/dist/templates/web/ui-only/template/src/app/page.tsx +69 -91
- package/dist/templates/web/ui-only/template/src/app/signup/page.tsx +94 -79
- package/dist/templates/web/ui-only/template/src/components/providers/app-providers.tsx +1 -6
- package/dist/templates/web/ui-only/template/src/components/shared/header.tsx +90 -53
- package/dist/templates/web/ui-package-test/template/package.json +19 -23
- package/dist/templates/web/ui-package-test/template/postcss.config.mjs +8 -0
- package/dist/templates/web/ui-package-test/template/src/app/globals.css +88 -0
- package/dist/templates/web/ui-package-test/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/ui-package-test/template/src/app/page.tsx +46 -106
- package/package.json +1 -1
- package/src/templates/shared/admin/web/src/components/admin-nav.tsx +3 -3
- package/src/templates/shared/auth/supabase/web/src/lib/auth-session.ts +36 -16
- package/src/templates/shared/auth/supabase/web/src/middleware.ts +6 -0
- package/src/templates/shared/cookie-consent/web/components/cookie-consent.tsx +5 -5
- package/src/templates/shared/design/web/src/components/ui/button.tsx +56 -0
- package/src/templates/shared/email/web/src/lib/email/client.ts +1 -1
- package/src/templates/shared/error-pages/web/src/app/error.tsx +13 -11
- package/src/templates/shared/error-pages/web/src/app/global-error.tsx +2 -0
- package/src/templates/shared/error-pages/web/src/app/not-found.tsx +6 -6
- package/src/templates/shared/legal/web/src/app/(legal)/privacy/page.tsx +4 -4
- package/src/templates/shared/legal/web/src/app/(legal)/terms/page.tsx +4 -4
- package/src/templates/shared/loading/web/components/skeleton.tsx +4 -4
- package/src/templates/shared/mock/web/.env.local +55 -0
- package/src/templates/shared/mock/web/src/components/mock-auth-provider.tsx +72 -0
- package/src/templates/shared/mock/web/src/components/mock-banner.tsx +29 -0
- package/src/templates/shared/mock/web/src/lib/mock.ts +147 -0
- package/src/templates/shared/payments/web/src/app/api/webhooks/stripe/route.ts +10 -4
- package/src/templates/shared/redis/web/src/lib/redis.ts +1 -1
- package/src/templates/web/base/template/eslint.config.mjs +14 -0
- package/src/templates/web/base/template/src/app/auth/callback/route.ts +1 -1
- package/src/templates/web/base/template/src/app/checkout/page.tsx +76 -103
- package/src/templates/web/base/template/src/app/dashboard/page.tsx +145 -329
- package/src/templates/web/base/template/src/app/layout.tsx +40 -38
- package/src/templates/web/base/template/src/app/login/page.tsx +116 -66
- package/src/templates/web/base/template/src/app/page.tsx +97 -193
- package/src/templates/web/base/template/src/app/settings/page.tsx +154 -0
- package/src/templates/web/base/template/src/app/signup/page.tsx +117 -66
- package/src/templates/web/base/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/base/template/src/components/shared/header.tsx +229 -63
- package/src/templates/web/ui-auth/template/eslint.config.mjs +14 -0
- package/src/templates/web/ui-auth/template/src/app/checkout/page.tsx +3 -3
- package/src/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +81 -91
- package/src/templates/web/ui-auth/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth/template/src/app/login/page.tsx +22 -45
- package/src/templates/web/ui-auth/template/src/app/page.tsx +106 -306
- package/src/templates/web/ui-auth/template/src/app/setup/page.tsx +387 -402
- package/src/templates/web/ui-auth/template/src/app/signup/page.tsx +24 -47
- package/src/templates/web/ui-auth/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth/template/src/components/shared/header.tsx +229 -94
- package/src/templates/web/ui-auth-ai/template/src/app/layout.tsx +38 -45
- package/src/templates/web/ui-auth-ai/template/src/app/login/page.tsx +86 -0
- package/src/templates/web/ui-auth-ai/template/src/app/page.tsx +107 -193
- package/src/templates/web/ui-auth-ai/template/src/app/signup/page.tsx +105 -0
- package/src/templates/web/ui-auth-ai/template/src/components/ai/audio-generator.tsx +144 -140
- package/src/templates/web/ui-auth-ai/template/src/components/ai/video-generator.tsx +156 -157
- package/src/templates/web/ui-auth-ai/template/src/components/auth/login-form.tsx +7 -3
- package/src/templates/web/ui-auth-ai/template/src/components/providers/app-providers.tsx +25 -0
- package/src/templates/web/ui-auth-ai/template/src/components/shared/footer.tsx +36 -0
- package/src/templates/web/ui-auth-ai/template/src/components/shared/header.tsx +228 -0
- package/src/templates/web/ui-auth-ai/template/src/components/ui/button.tsx +5 -5
- package/src/templates/web/ui-auth-ai/template/src/components/ui/input.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/select.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/textarea.tsx +1 -1
- package/src/templates/web/ui-auth-ai/template/src/components/ui/theme-toggle.tsx +34 -0
- package/src/templates/web/ui-auth-ai/template/src/lib/supabase.ts +6 -4
- package/src/templates/web/ui-auth-ai/template/src/providers/auth-provider.tsx +7 -5
- package/src/templates/web/ui-auth-payments/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +104 -296
- package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +70 -81
- package/src/templates/web/ui-auth-payments/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth-payments/template/src/app/login/loading.tsx +9 -9
- package/src/templates/web/ui-auth-payments/template/src/app/login/page.tsx +4 -104
- package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +69 -337
- package/src/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +55 -68
- package/src/templates/web/ui-auth-payments/template/src/app/signup/loading.tsx +13 -13
- package/src/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +4 -123
- package/src/templates/web/ui-auth-payments/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +49 -103
- package/src/templates/web/ui-auth-payments/template/src/components/client/newsletter-signup.tsx +4 -4
- package/src/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +60 -140
- package/src/templates/web/ui-auth-payments/template/src/components/providers/app-providers.tsx +25 -28
- package/src/templates/web/ui-auth-payments/template/src/components/shared/header.tsx +229 -230
- package/src/templates/web/ui-auth-payments/template/src/lib/actions/auth.ts +245 -245
- package/src/templates/web/ui-auth-payments/template/src/lib/actions/index.ts +339 -339
- package/src/templates/web/ui-auth-payments-ai/template/src/app/ai/page.tsx +305 -309
- package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +62 -312
- package/src/templates/web/ui-auth-payments-ai/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +68 -83
- package/src/templates/web/ui-auth-payments-ai/template/src/app/layout.tsx +40 -38
- package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +20 -20
- package/src/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +140 -394
- package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +28 -27
- package/src/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +51 -66
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +50 -79
- package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +58 -111
- package/src/templates/web/ui-auth-payments-ai/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +229 -252
- package/src/templates/web/ui-auth-payments-ai/template/src/lib/actions/auth.ts +245 -245
- package/src/templates/web/ui-auth-payments-audio/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments-audio/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +27 -27
- package/src/templates/web/ui-auth-payments-audio/template/src/app/layout.tsx +40 -38
- package/src/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +122 -385
- package/src/templates/web/ui-auth-payments-audio/template/src/app/setup/page.tsx +340 -344
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/auth-status.tsx +37 -52
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +49 -103
- package/src/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +60 -140
- package/src/templates/web/ui-auth-payments-audio/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +229 -252
- package/src/templates/web/ui-auth-payments-audio/template/src/lib/actions/auth.ts +3 -3
- package/src/templates/web/ui-auth-payments-video/template/src/app/billing/page.tsx +63 -192
- package/src/templates/web/ui-auth-payments-video/template/src/app/checkout/page.tsx +109 -125
- package/src/templates/web/ui-auth-payments-video/template/src/app/layout.tsx +38 -36
- package/src/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +9 -109
- package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +132 -392
- package/src/templates/web/ui-auth-payments-video/template/src/app/setup/page.tsx +346 -350
- package/src/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +9 -128
- package/src/templates/web/ui-auth-payments-video/template/src/components/client/login-form.tsx +90 -0
- package/src/templates/web/ui-auth-payments-video/template/src/components/client/signup-form.tsx +105 -0
- package/src/templates/web/ui-auth-payments-video/template/src/components/providers/app-providers.tsx +8 -3
- package/src/templates/web/ui-auth-payments-video/template/src/components/shared/header.tsx +229 -246
- package/src/templates/web/ui-only/template/eslint.config.mjs +14 -0
- package/src/templates/web/ui-only/template/src/app/checkout/page.tsx +2 -2
- package/src/templates/web/ui-only/template/src/app/login/page.tsx +69 -63
- package/src/templates/web/ui-only/template/src/app/page.tsx +69 -91
- package/src/templates/web/ui-only/template/src/app/signup/page.tsx +94 -79
- package/src/templates/web/ui-only/template/src/components/providers/app-providers.tsx +1 -6
- package/src/templates/web/ui-only/template/src/components/shared/header.tsx +90 -53
- package/src/templates/web/ui-package-test/template/package.json +19 -23
- package/src/templates/web/ui-package-test/template/postcss.config.mjs +8 -0
- package/src/templates/web/ui-package-test/template/src/app/globals.css +88 -0
- package/src/templates/web/ui-package-test/template/src/app/layout.tsx +27 -0
- package/src/templates/web/ui-package-test/template/src/app/page.tsx +46 -106
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/README.md +0 -655
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app/(tabs)/ai.tsx +0 -683
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +0 -124
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app.json +0 -74
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +0 -25
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/docs/MOBILE-SETUP.md +0 -787
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +0 -25
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +0 -3
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -346
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +0 -37
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -180
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +0 -11
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +0 -122
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -599
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +0 -32
- package/dist/templates/web/base/template/.eslintrc.js +0 -8
- package/dist/templates/web/base/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/base/template/src/test/setup.ts +0 -74
- package/dist/templates/web/base/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth/template/.eslintrc.js +0 -8
- package/dist/templates/web/ui-auth/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-ai/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-ai/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-ai-rag/template/README.md +0 -434
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/KnowledgeManager.tsx +0 -642
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGAnalytics.tsx +0 -466
- package/dist/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGChatInterface.tsx +0 -393
- package/dist/templates/web/ui-auth-payments-ai-rag/template/docs/GETTING-STARTED.md +0 -457
- package/dist/templates/web/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -478
- package/dist/templates/web/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -250
- package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +0 -73
- package/dist/templates/web/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -622
- package/dist/templates/web/ui-auth-payments-ai-rag/template/src/app/ai/page.tsx +0 -396
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-audio/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-audio/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-auth-payments-video/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-auth-payments-video/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-auth-payments-video/template/vitest.config.ts +0 -17
- package/dist/templates/web/ui-only/template/.eslintrc.js +0 -8
- package/dist/templates/web/ui-only/template/src/components/__tests__/example.test.tsx +0 -49
- package/dist/templates/web/ui-only/template/src/test/setup.ts +0 -74
- package/dist/templates/web/ui-only/template/vitest.config.ts +0 -17
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/README.md +0 -655
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app/(tabs)/ai.tsx +0 -683
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +0 -124
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app.json +0 -74
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +0 -25
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/docs/MOBILE-SETUP.md +0 -787
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +0 -25
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +0 -3
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -346
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +0 -37
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -180
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +0 -11
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +0 -122
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -599
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +0 -32
- package/src/templates/web/base/template/.eslintrc.js +0 -8
- package/src/templates/web/base/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/base/template/src/test/setup.ts +0 -74
- package/src/templates/web/base/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth/template/.eslintrc.js +0 -8
- package/src/templates/web/ui-auth/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-ai/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-ai/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-ai/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-ai-rag/template/README.md +0 -434
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/KnowledgeManager.tsx +0 -642
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGAnalytics.tsx +0 -466
- package/src/templates/web/ui-auth-payments-ai-rag/template/components/rag/RAGChatInterface.tsx +0 -393
- package/src/templates/web/ui-auth-payments-ai-rag/template/docs/GETTING-STARTED.md +0 -457
- package/src/templates/web/ui-auth-payments-ai-rag/template/hooks/useRAGSystem.ts +0 -478
- package/src/templates/web/ui-auth-payments-ai-rag/template/lib/rag/config.ts +0 -250
- package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +0 -73
- package/src/templates/web/ui-auth-payments-ai-rag/template/scripts/setup-rag.js +0 -622
- package/src/templates/web/ui-auth-payments-ai-rag/template/src/app/ai/page.tsx +0 -396
- package/src/templates/web/ui-auth-payments-audio/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-audio/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-audio/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-auth-payments-video/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-auth-payments-video/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-auth-payments-video/template/vitest.config.ts +0 -17
- package/src/templates/web/ui-only/template/.eslintrc.js +0 -8
- package/src/templates/web/ui-only/template/src/components/__tests__/example.test.tsx +0 -49
- package/src/templates/web/ui-only/template/src/test/setup.ts +0 -74
- package/src/templates/web/ui-only/template/vitest.config.ts +0 -17
|
@@ -1,250 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
createGenericRAGConfig,
|
|
3
|
-
createPlantCareRAGConfig,
|
|
4
|
-
createEcommerceRAGConfig,
|
|
5
|
-
createEducationRAGConfig
|
|
6
|
-
} from '@digilogiclabs/saas-factory-ai';
|
|
7
|
-
import type {
|
|
8
|
-
RAGConfig,
|
|
9
|
-
GenericRAGDocumentSchema,
|
|
10
|
-
PlantKnowledgeSchema,
|
|
11
|
-
EcommerceKnowledgeSchema,
|
|
12
|
-
EducationKnowledgeSchema
|
|
13
|
-
} from '@digilogiclabs/saas-factory-ai-types';
|
|
14
|
-
|
|
15
|
-
// Environment configuration
|
|
16
|
-
const supabaseConfig = {
|
|
17
|
-
url: process.env.NEXT_PUBLIC_SUPABASE_URL!,
|
|
18
|
-
anonKey: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
|
|
19
|
-
serviceRoleKey: process.env.SUPABASE_SERVICE_ROLE_KEY, // Server-only for embeddings
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
const openAIKey = process.env.OPENAI_API_KEY!;
|
|
23
|
-
|
|
24
|
-
// RAG Configuration Templates
|
|
25
|
-
export const createRAGConfigs = () => {
|
|
26
|
-
const baseNamespace = process.env.NEXT_PUBLIC_APP_NAME || '{{packageName}}';
|
|
27
|
-
|
|
28
|
-
return {
|
|
29
|
-
// Generic AI Assistant
|
|
30
|
-
generic: createGenericRAGConfig<GenericRAGDocumentSchema>(
|
|
31
|
-
baseNamespace,
|
|
32
|
-
supabaseConfig,
|
|
33
|
-
openAIKey,
|
|
34
|
-
{
|
|
35
|
-
retrieval: {
|
|
36
|
-
topK: 6,
|
|
37
|
-
confidenceThreshold: 0.75,
|
|
38
|
-
hybridSearchWeight: { vector: 0.7, text: 0.3 },
|
|
39
|
-
reranking: true // Enable advanced reranking for web
|
|
40
|
-
},
|
|
41
|
-
generation: {
|
|
42
|
-
systemPrompt: `You are an intelligent AI assistant for the ${baseNamespace} platform.
|
|
43
|
-
Use the provided knowledge base to give accurate, comprehensive responses.
|
|
44
|
-
If information isn't in the knowledge base, clearly state this and provide general guidance.
|
|
45
|
-
Format responses with proper markdown for web display.
|
|
46
|
-
Include relevant examples and actionable recommendations.`,
|
|
47
|
-
temperature: 0.3,
|
|
48
|
-
maxTokens: 800,
|
|
49
|
-
streaming: true, // Enable streaming for better UX
|
|
50
|
-
},
|
|
51
|
-
web: {
|
|
52
|
-
enableStreaming: true,
|
|
53
|
-
showSources: true,
|
|
54
|
-
showConfidence: true,
|
|
55
|
-
enableCitations: true,
|
|
56
|
-
maxDisplaySources: 5,
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
),
|
|
60
|
-
|
|
61
|
-
// Plant Care Assistant
|
|
62
|
-
plantCare: createPlantCareRAGConfig(
|
|
63
|
-
`${baseNamespace}-plants`,
|
|
64
|
-
supabaseConfig,
|
|
65
|
-
openAIKey,
|
|
66
|
-
{
|
|
67
|
-
retrieval: {
|
|
68
|
-
topK: 5,
|
|
69
|
-
confidenceThreshold: 0.8,
|
|
70
|
-
hybridSearchWeight: { vector: 0.8, text: 0.2 },
|
|
71
|
-
categoryFilters: ['plant-care', 'diseases', 'pests', 'nutrition']
|
|
72
|
-
},
|
|
73
|
-
generation: {
|
|
74
|
-
systemPrompt: `You are a botanical expert assistant helping users care for their plants.
|
|
75
|
-
Use the comprehensive plant knowledge base to provide specific care instructions, diagnose issues, and suggest solutions.
|
|
76
|
-
Consider seasonal factors, plant growth stages, and environmental conditions.
|
|
77
|
-
Provide practical, step-by-step guidance with clear explanations.
|
|
78
|
-
Include relevant images or diagrams when referencing visual symptoms.
|
|
79
|
-
Format responses with proper markdown including headers, lists, and emphasis.`,
|
|
80
|
-
temperature: 0.2,
|
|
81
|
-
maxTokens: 1000,
|
|
82
|
-
streaming: true,
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
),
|
|
86
|
-
|
|
87
|
-
// E-commerce Assistant
|
|
88
|
-
ecommerce: createEcommerceRAGConfig(
|
|
89
|
-
`${baseNamespace}-store`,
|
|
90
|
-
supabaseConfig,
|
|
91
|
-
openAIKey,
|
|
92
|
-
{
|
|
93
|
-
retrieval: {
|
|
94
|
-
topK: 8,
|
|
95
|
-
confidenceThreshold: 0.7,
|
|
96
|
-
hybridSearchWeight: { vector: 0.6, text: 0.4 },
|
|
97
|
-
includePriceFilters: true,
|
|
98
|
-
includeAvailability: true
|
|
99
|
-
},
|
|
100
|
-
generation: {
|
|
101
|
-
systemPrompt: `You are a knowledgeable shopping assistant for the ${baseNamespace} store.
|
|
102
|
-
Help customers find products, compare options, answer questions about specifications and pricing.
|
|
103
|
-
Provide personalized recommendations based on their needs, budget, and preferences.
|
|
104
|
-
Always mention current stock status, pricing, and any active promotions.
|
|
105
|
-
Include product comparisons in table format when helpful.
|
|
106
|
-
Format responses with proper markdown and highlight key information.`,
|
|
107
|
-
temperature: 0.4,
|
|
108
|
-
maxTokens: 700,
|
|
109
|
-
streaming: true,
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
),
|
|
113
|
-
|
|
114
|
-
// Education Assistant
|
|
115
|
-
education: createEducationRAGConfig(
|
|
116
|
-
`${baseNamespace}-learning`,
|
|
117
|
-
supabaseConfig,
|
|
118
|
-
openAIKey,
|
|
119
|
-
{
|
|
120
|
-
retrieval: {
|
|
121
|
-
topK: 6,
|
|
122
|
-
confidenceThreshold: 0.8,
|
|
123
|
-
hybridSearchWeight: { vector: 0.75, text: 0.25 },
|
|
124
|
-
gradeLevel: 'adaptive', // Adapt to user level
|
|
125
|
-
subject: 'multi-domain'
|
|
126
|
-
},
|
|
127
|
-
generation: {
|
|
128
|
-
systemPrompt: `You are an educational tutor assistant for the ${baseNamespace} learning platform.
|
|
129
|
-
Help students understand concepts, solve problems, and develop critical thinking skills.
|
|
130
|
-
Adapt explanations to the appropriate learning level and style.
|
|
131
|
-
Provide step-by-step solutions with clear reasoning.
|
|
132
|
-
Include examples, analogies, and practice exercises when helpful.
|
|
133
|
-
Use proper academic formatting with mathematical notation when needed.
|
|
134
|
-
Encourage exploration and deeper understanding.`,
|
|
135
|
-
temperature: 0.3,
|
|
136
|
-
maxTokens: 900,
|
|
137
|
-
streaming: true,
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
)
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
|
|
144
|
-
// Default configuration selector
|
|
145
|
-
export const getRAGConfigForDomain = (domain: string): RAGConfig<any> => {
|
|
146
|
-
const configs = createRAGConfigs();
|
|
147
|
-
|
|
148
|
-
switch (domain.toLowerCase()) {
|
|
149
|
-
case 'plants':
|
|
150
|
-
case 'plant-care':
|
|
151
|
-
case 'gardening':
|
|
152
|
-
case 'botanical':
|
|
153
|
-
return configs.plantCare;
|
|
154
|
-
|
|
155
|
-
case 'store':
|
|
156
|
-
case 'shop':
|
|
157
|
-
case 'ecommerce':
|
|
158
|
-
case 'products':
|
|
159
|
-
case 'retail':
|
|
160
|
-
return configs.ecommerce;
|
|
161
|
-
|
|
162
|
-
case 'education':
|
|
163
|
-
case 'learning':
|
|
164
|
-
case 'courses':
|
|
165
|
-
case 'study':
|
|
166
|
-
case 'academic':
|
|
167
|
-
return configs.education;
|
|
168
|
-
|
|
169
|
-
default:
|
|
170
|
-
return configs.generic;
|
|
171
|
-
}
|
|
172
|
-
};
|
|
173
|
-
|
|
174
|
-
// Web-specific optimizations
|
|
175
|
-
export const webRAGOptions = {
|
|
176
|
-
// Performance settings
|
|
177
|
-
performance: {
|
|
178
|
-
debounceMs: 200, // Faster debounce for web
|
|
179
|
-
maxConcurrentRequests: 3,
|
|
180
|
-
timeout: 15000, // 15 second timeout
|
|
181
|
-
enableRequestCaching: true,
|
|
182
|
-
cacheExpiryMs: 300000, // 5 minutes
|
|
183
|
-
},
|
|
184
|
-
|
|
185
|
-
// Web UX settings
|
|
186
|
-
ui: {
|
|
187
|
-
enableStreaming: true,
|
|
188
|
-
showTypingIndicator: true,
|
|
189
|
-
showConfidenceScores: true,
|
|
190
|
-
showSources: true,
|
|
191
|
-
showCitations: true,
|
|
192
|
-
maxDisplaySources: 5,
|
|
193
|
-
enableExport: true,
|
|
194
|
-
enableShare: true,
|
|
195
|
-
enableFeedback: true,
|
|
196
|
-
},
|
|
197
|
-
|
|
198
|
-
// Search and filtering
|
|
199
|
-
search: {
|
|
200
|
-
enableAdvancedFilters: true,
|
|
201
|
-
enableFacetedSearch: true,
|
|
202
|
-
enableAutocomplete: true,
|
|
203
|
-
enableSearchHistory: true,
|
|
204
|
-
maxSearchHistory: 20,
|
|
205
|
-
},
|
|
206
|
-
|
|
207
|
-
// Analytics and monitoring
|
|
208
|
-
analytics: {
|
|
209
|
-
trackQueries: true,
|
|
210
|
-
trackResponseTime: true,
|
|
211
|
-
trackUserSatisfaction: true,
|
|
212
|
-
enableABTesting: true,
|
|
213
|
-
},
|
|
214
|
-
|
|
215
|
-
// Admin features
|
|
216
|
-
admin: {
|
|
217
|
-
enableKnowledgeManagement: true,
|
|
218
|
-
enableBulkOperations: true,
|
|
219
|
-
enableAnalyticsDashboard: true,
|
|
220
|
-
enableUserManagement: true,
|
|
221
|
-
enableSystemHealth: true,
|
|
222
|
-
}
|
|
223
|
-
};
|
|
224
|
-
|
|
225
|
-
// Environment-specific configurations
|
|
226
|
-
export const getEnvironmentConfig = () => {
|
|
227
|
-
const isDevelopment = process.env.NODE_ENV === 'development';
|
|
228
|
-
const isProduction = process.env.NODE_ENV === 'production';
|
|
229
|
-
|
|
230
|
-
return {
|
|
231
|
-
logging: {
|
|
232
|
-
level: isDevelopment ? 'debug' : 'info',
|
|
233
|
-
enableConsole: isDevelopment,
|
|
234
|
-
enableRemote: isProduction,
|
|
235
|
-
},
|
|
236
|
-
|
|
237
|
-
security: {
|
|
238
|
-
enableRateLimit: isProduction,
|
|
239
|
-
rateLimitRpm: isProduction ? 60 : 300, // Requests per minute
|
|
240
|
-
enableInputSanitization: true,
|
|
241
|
-
enableOutputFiltering: true,
|
|
242
|
-
},
|
|
243
|
-
|
|
244
|
-
features: {
|
|
245
|
-
enableExperimentalFeatures: isDevelopment,
|
|
246
|
-
enableBetaFeatures: !isProduction,
|
|
247
|
-
enableDebugMode: isDevelopment,
|
|
248
|
-
}
|
|
249
|
-
};
|
|
250
|
-
};
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "{{packageName}}",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"description": "{{description}} - Full-Stack AI Platform with RAG Knowledge Base (UI v0.18.2 + Auth v1.0.0 + Payments + AI v4.0.0)",
|
|
5
|
-
"private": true,
|
|
6
|
-
"scripts": {
|
|
7
|
-
"dev": "next dev",
|
|
8
|
-
"build": "next build",
|
|
9
|
-
"start": "next start",
|
|
10
|
-
"lint": "next lint",
|
|
11
|
-
"type-check": "tsc --noEmit",
|
|
12
|
-
"test": "vitest",
|
|
13
|
-
"test:ui": "vitest --ui",
|
|
14
|
-
"test:run": "vitest run",
|
|
15
|
-
"setup:rag": "node scripts/setup-rag.js",
|
|
16
|
-
"seed:knowledge": "node scripts/seed-knowledge.js",
|
|
17
|
-
"db:types": "supabase gen types --local > types/supabase.ts",
|
|
18
|
-
"db:reset": "supabase db reset",
|
|
19
|
-
"db:push": "supabase db push"
|
|
20
|
-
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"next": "^15.0.0",
|
|
23
|
-
"react": "^19.0.0",
|
|
24
|
-
"react-dom": "^19.0.0",
|
|
25
|
-
"@digilogiclabs/saas-factory-ui": "^1.4.0",
|
|
26
|
-
"@digilogiclabs/saas-factory-ai": "^4.0.2",
|
|
27
|
-
"@digilogiclabs/saas-factory-ai-types": "^4.0.2",
|
|
28
|
-
"stripe": "^14.0.0",
|
|
29
|
-
"@stripe/react-stripe-js": "^2.0.0",
|
|
30
|
-
"@stripe/stripe-js": "^2.0.0",
|
|
31
|
-
"tailwindcss": "^3.3.0",
|
|
32
|
-
"autoprefixer": "^10.4.16",
|
|
33
|
-
"postcss": "^8.4.31",
|
|
34
|
-
"clsx": "^2.0.0",
|
|
35
|
-
"class-variance-authority": "^0.7.0",
|
|
36
|
-
"tailwind-merge": "^2.0.0",
|
|
37
|
-
"next-themes": "^0.2.1",
|
|
38
|
-
"lucide-react": "^0.542.0",
|
|
39
|
-
"zod": "^4.1.0",
|
|
40
|
-
"@supabase/supabase-js": "^2.0.0",
|
|
41
|
-
"@supabase/ssr": "^0.5.0",
|
|
42
|
-
"react-hook-form": "^7.48.2",
|
|
43
|
-
"@hookform/resolvers": "^3.3.2",
|
|
44
|
-
"sonner": "^1.4.3",
|
|
45
|
-
"recharts": "^2.8.0",
|
|
46
|
-
"framer-motion": "^11.0.0",
|
|
47
|
-
"@radix-ui/react-dialog": "^1.0.5",
|
|
48
|
-
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
49
|
-
"@radix-ui/react-tabs": "^1.0.4",
|
|
50
|
-
"@radix-ui/react-toast": "^1.1.5",
|
|
51
|
-
"@radix-ui/react-tooltip": "^1.0.7",
|
|
52
|
-
"@radix-ui/react-progress": "^1.0.3",
|
|
53
|
-
"@radix-ui/react-separator": "^1.0.3"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"typescript": "^5.0.0",
|
|
57
|
-
"@types/node": "^20.0.0",
|
|
58
|
-
"@types/react": "^19.0.0",
|
|
59
|
-
"@types/react-dom": "^19.0.0",
|
|
60
|
-
"eslint": "^8.0.0",
|
|
61
|
-
"eslint-config-next": "^15.0.0",
|
|
62
|
-
"prettier": "^3.0.0",
|
|
63
|
-
"vitest": "^1.0.0",
|
|
64
|
-
"@vitejs/plugin-react": "^4.0.0",
|
|
65
|
-
"@testing-library/react": "^16.0.0",
|
|
66
|
-
"@testing-library/jest-dom": "^6.0.0",
|
|
67
|
-
"@testing-library/user-event": "^14.0.0",
|
|
68
|
-
"jsdom": "^24.0.0"
|
|
69
|
-
},
|
|
70
|
-
"engines": {
|
|
71
|
-
"node": ">=18.0.0"
|
|
72
|
-
}
|
|
73
|
-
}
|