virastack 0.0.1 → 1.0.1
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/LICENSE +1 -1
- package/README.md +94 -18
- package/bin/virastack.js +7 -0
- package/package.json +43 -9
- package/src/commands/add.js +64 -0
- package/src/commands/init.js +286 -0
- package/src/i18n.js +231 -0
- package/src/index.js +64 -0
- package/src/utils/args.js +60 -0
- package/src/utils/copy-template.js +81 -0
- package/src/utils/exec.js +29 -0
- package/src/utils/git.js +38 -0
- package/src/utils/is-online.js +14 -0
- package/src/utils/package-info.js +12 -0
- package/src/utils/package-manager.js +33 -0
- package/src/utils/setup-env.js +25 -0
- package/src/utils/telemetry.js +86 -0
- package/src/utils/tools.js +48 -0
- package/src/utils/update-package-json.js +44 -0
- package/src/utils/update-readme.js +25 -0
- package/src/utils/validate-project-name.js +26 -0
- package/templates/nextjs/.changeset/README.md +8 -0
- package/templates/nextjs/.changeset/config.json +11 -0
- package/templates/nextjs/.env.example +6 -0
- package/templates/nextjs/.env.local +6 -0
- package/templates/nextjs/.eslintcache +1 -0
- package/templates/nextjs/.github/workflows/ci.yml +41 -0
- package/templates/nextjs/.husky/commit-msg +1 -0
- package/templates/nextjs/.husky/pre-commit +1 -0
- package/templates/nextjs/.husky/pre-push +1 -0
- package/templates/nextjs/.prettierignore +6 -0
- package/templates/nextjs/.prettierrc +42 -0
- package/templates/nextjs/.vscode/extensions.json +7 -0
- package/templates/nextjs/.vscode/settings.json +20 -0
- package/templates/nextjs/LICENSE +21 -0
- package/templates/nextjs/README.md +202 -0
- package/templates/nextjs/_gitignore +45 -0
- package/templates/nextjs/commitlint.config.js +6 -0
- package/templates/nextjs/eslint.config.mjs +27 -0
- package/templates/nextjs/knip.config.js +25 -0
- package/templates/nextjs/next-env.d.ts +6 -0
- package/templates/nextjs/next.config.ts +39 -0
- package/templates/nextjs/package.json +115 -0
- package/templates/nextjs/pnpm-lock.yaml +6467 -0
- package/templates/nextjs/pnpm-workspace.yaml +3 -0
- package/templates/nextjs/postcss.config.mjs +7 -0
- package/templates/nextjs/public/favicon.ico +0 -0
- package/templates/nextjs/public/llms.txt +96 -0
- package/templates/nextjs/public/logo.png +0 -0
- package/templates/nextjs/public/logo.webp +0 -0
- package/templates/nextjs/public/og.png +0 -0
- package/templates/nextjs/src/app/error.tsx +34 -0
- package/templates/nextjs/src/app/favicon.ico +0 -0
- package/templates/nextjs/src/app/global-error.tsx +32 -0
- package/templates/nextjs/src/app/layout.tsx +37 -0
- package/templates/nextjs/src/app/loading.tsx +12 -0
- package/templates/nextjs/src/app/manifest.ts +22 -0
- package/templates/nextjs/src/app/not-found.tsx +18 -0
- package/templates/nextjs/src/app/page.tsx +5 -0
- package/templates/nextjs/src/app/robots.ts +13 -0
- package/templates/nextjs/src/app/sitemap.ts +14 -0
- package/templates/nextjs/src/components/shared/ThemeToggle.tsx +30 -0
- package/templates/nextjs/src/components/ui/avatar.tsx +54 -0
- package/templates/nextjs/src/components/ui/button.tsx +46 -0
- package/templates/nextjs/src/components/ui/dialog.tsx +107 -0
- package/templates/nextjs/src/components/ui/field.tsx +24 -0
- package/templates/nextjs/src/components/ui/index.ts +27 -0
- package/templates/nextjs/src/components/ui/input.tsx +23 -0
- package/templates/nextjs/src/components/ui/label.tsx +17 -0
- package/templates/nextjs/src/components/ui/skeleton.tsx +13 -0
- package/templates/nextjs/src/components/ui/table.tsx +94 -0
- package/templates/nextjs/src/components/ui/tabs.tsx +46 -0
- package/templates/nextjs/src/config/seo.config.ts +37 -0
- package/templates/nextjs/src/config/site.config.ts +15 -0
- package/templates/nextjs/src/constants/index.ts +5 -0
- package/templates/nextjs/src/env.ts +41 -0
- package/templates/nextjs/src/features/landing/api/get-users.api.ts +7 -0
- package/templates/nextjs/src/features/landing/api/index.ts +2 -0
- package/templates/nextjs/src/features/landing/api/query-keys.ts +7 -0
- package/templates/nextjs/src/features/landing/components/CartDemo.tsx +66 -0
- package/templates/nextjs/src/features/landing/components/Features.tsx +39 -0
- package/templates/nextjs/src/features/landing/components/Hero.tsx +65 -0
- package/templates/nextjs/src/features/landing/components/LandingPage.tsx +17 -0
- package/templates/nextjs/src/features/landing/components/ProjectFormDemo.tsx +62 -0
- package/templates/nextjs/src/features/landing/components/Reveal.tsx +83 -0
- package/templates/nextjs/src/features/landing/components/Showcase.tsx +66 -0
- package/templates/nextjs/src/features/landing/components/UsersDemo.tsx +188 -0
- package/templates/nextjs/src/features/landing/data/features.data.tsx +47 -0
- package/templates/nextjs/src/features/landing/data/index.ts +1 -0
- package/templates/nextjs/src/features/landing/helpers/get-initials.ts +15 -0
- package/templates/nextjs/src/features/landing/helpers/index.ts +7 -0
- package/templates/nextjs/src/features/landing/helpers/motion.ts +21 -0
- package/templates/nextjs/src/features/landing/hooks/index.ts +1 -0
- package/templates/nextjs/src/features/landing/hooks/use-users.ts +16 -0
- package/templates/nextjs/src/features/landing/icons/index.ts +6 -0
- package/templates/nextjs/src/features/landing/icons/nextjs.tsx +68 -0
- package/templates/nextjs/src/features/landing/icons/react-hook-form.tsx +18 -0
- package/templates/nextjs/src/features/landing/icons/react.tsx +20 -0
- package/templates/nextjs/src/features/landing/icons/tailwind.tsx +14 -0
- package/templates/nextjs/src/features/landing/icons/tanstack.tsx +321 -0
- package/templates/nextjs/src/features/landing/icons/typescript.tsx +16 -0
- package/templates/nextjs/src/features/landing/index.ts +1 -0
- package/templates/nextjs/src/features/landing/schemas/index.ts +1 -0
- package/templates/nextjs/src/features/landing/schemas/project.schema.ts +7 -0
- package/templates/nextjs/src/features/landing/stores/counter.store.ts +18 -0
- package/templates/nextjs/src/features/landing/stores/index.ts +1 -0
- package/templates/nextjs/src/features/landing/types/index.ts +1 -0
- package/templates/nextjs/src/features/landing/types/user.types.ts +9 -0
- package/templates/nextjs/src/helpers/format-date.ts +13 -0
- package/templates/nextjs/src/helpers/index.ts +1 -0
- package/templates/nextjs/src/hooks/index.ts +5 -0
- package/templates/nextjs/src/lib/api.ts +97 -0
- package/templates/nextjs/src/lib/query-client.ts +18 -0
- package/templates/nextjs/src/lib/utils.ts +12 -0
- package/templates/nextjs/src/providers/Providers.tsx +15 -0
- package/templates/nextjs/src/providers/QueryProvider.tsx +19 -0
- package/templates/nextjs/src/providers/ThemeProvider.tsx +9 -0
- package/templates/nextjs/src/providers/index.ts +1 -0
- package/templates/nextjs/src/proxy.ts +6 -0
- package/templates/nextjs/src/schemas/index.ts +5 -0
- package/templates/nextjs/src/stores/index.ts +5 -0
- package/templates/nextjs/src/styles/tailwind.css +122 -0
- package/templates/nextjs/src/types/site-config.types.ts +10 -0
- package/templates/nextjs/tsconfig.json +45 -0
- package/templates/nextjs/tsconfig.tsbuildinfo +1 -0
- package/templates/tanstack/.changeset/README.md +8 -0
- package/templates/tanstack/.changeset/config.json +11 -0
- package/templates/tanstack/.env.example +6 -0
- package/templates/tanstack/.env.local +6 -0
- package/templates/tanstack/.eslintcache +1 -0
- package/templates/tanstack/.github/workflows/ci.yml +41 -0
- package/templates/tanstack/.husky/commit-msg +1 -0
- package/templates/tanstack/.husky/pre-commit +1 -0
- package/templates/tanstack/.husky/pre-push +1 -0
- package/templates/tanstack/.prettierignore +7 -0
- package/templates/tanstack/.prettierrc +41 -0
- package/templates/tanstack/.vscode/extensions.json +7 -0
- package/templates/tanstack/.vscode/settings.json +22 -0
- package/templates/tanstack/LICENSE +21 -0
- package/templates/tanstack/README.md +204 -0
- package/templates/tanstack/_gitignore +52 -0
- package/templates/tanstack/commitlint.config.js +6 -0
- package/templates/tanstack/eslint.config.js +28 -0
- package/templates/tanstack/knip.config.js +22 -0
- package/templates/tanstack/package.json +130 -0
- package/templates/tanstack/pnpm-lock.yaml +5835 -0
- package/templates/tanstack/pnpm-workspace.yaml +3 -0
- package/templates/tanstack/public/favicon.ico +0 -0
- package/templates/tanstack/public/llms.txt +86 -0
- package/templates/tanstack/public/logo.png +0 -0
- package/templates/tanstack/public/logo.webp +0 -0
- package/templates/tanstack/public/og.png +0 -0
- package/templates/tanstack/src/components/shared/DefaultCatchBoundary.tsx +36 -0
- package/templates/tanstack/src/components/shared/NotFound.tsx +18 -0
- package/templates/tanstack/src/components/shared/Pending.tsx +13 -0
- package/templates/tanstack/src/components/shared/ThemeToggle.tsx +31 -0
- package/templates/tanstack/src/components/ui/avatar.tsx +52 -0
- package/templates/tanstack/src/components/ui/button.tsx +47 -0
- package/templates/tanstack/src/components/ui/dialog.tsx +107 -0
- package/templates/tanstack/src/components/ui/field.tsx +24 -0
- package/templates/tanstack/src/components/ui/index.ts +27 -0
- package/templates/tanstack/src/components/ui/input.tsx +23 -0
- package/templates/tanstack/src/components/ui/label.tsx +17 -0
- package/templates/tanstack/src/components/ui/skeleton.tsx +13 -0
- package/templates/tanstack/src/components/ui/table.tsx +94 -0
- package/templates/tanstack/src/components/ui/tabs.tsx +46 -0
- package/templates/tanstack/src/config/seo.config.ts +52 -0
- package/templates/tanstack/src/config/site.config.ts +15 -0
- package/templates/tanstack/src/constants/index.ts +5 -0
- package/templates/tanstack/src/env.ts +47 -0
- package/templates/tanstack/src/features/landing/api/get-users.api.ts +7 -0
- package/templates/tanstack/src/features/landing/api/index.ts +2 -0
- package/templates/tanstack/src/features/landing/api/query-keys.ts +7 -0
- package/templates/tanstack/src/features/landing/components/CartDemo.tsx +66 -0
- package/templates/tanstack/src/features/landing/components/Features.tsx +39 -0
- package/templates/tanstack/src/features/landing/components/Hero.tsx +63 -0
- package/templates/tanstack/src/features/landing/components/LandingPage.tsx +17 -0
- package/templates/tanstack/src/features/landing/components/ProjectFormDemo.tsx +63 -0
- package/templates/tanstack/src/features/landing/components/Reveal.tsx +83 -0
- package/templates/tanstack/src/features/landing/components/Showcase.tsx +66 -0
- package/templates/tanstack/src/features/landing/components/UsersDemo.tsx +191 -0
- package/templates/tanstack/src/features/landing/data/features.data.tsx +45 -0
- package/templates/tanstack/src/features/landing/data/index.ts +1 -0
- package/templates/tanstack/src/features/landing/helpers/get-initials.ts +15 -0
- package/templates/tanstack/src/features/landing/helpers/index.ts +7 -0
- package/templates/tanstack/src/features/landing/helpers/motion.ts +21 -0
- package/templates/tanstack/src/features/landing/hooks/index.ts +1 -0
- package/templates/tanstack/src/features/landing/hooks/use-users.ts +19 -0
- package/templates/tanstack/src/features/landing/icons/index.ts +5 -0
- package/templates/tanstack/src/features/landing/icons/react-hook-form.tsx +18 -0
- package/templates/tanstack/src/features/landing/icons/react.tsx +20 -0
- package/templates/tanstack/src/features/landing/icons/tailwind.tsx +14 -0
- package/templates/tanstack/src/features/landing/icons/tanstack.tsx +321 -0
- package/templates/tanstack/src/features/landing/icons/typescript.tsx +16 -0
- package/templates/tanstack/src/features/landing/index.ts +1 -0
- package/templates/tanstack/src/features/landing/schemas/index.ts +1 -0
- package/templates/tanstack/src/features/landing/schemas/project.schema.ts +7 -0
- package/templates/tanstack/src/features/landing/stores/counter.store.ts +18 -0
- package/templates/tanstack/src/features/landing/stores/index.ts +1 -0
- package/templates/tanstack/src/features/landing/types/index.ts +1 -0
- package/templates/tanstack/src/features/landing/types/user.types.ts +9 -0
- package/templates/tanstack/src/helpers/format-date.ts +13 -0
- package/templates/tanstack/src/helpers/index.ts +1 -0
- package/templates/tanstack/src/hooks/index.ts +5 -0
- package/templates/tanstack/src/lib/api.ts +97 -0
- package/templates/tanstack/src/lib/query-client.ts +18 -0
- package/templates/tanstack/src/lib/utils.ts +13 -0
- package/templates/tanstack/src/providers/Providers.tsx +12 -0
- package/templates/tanstack/src/providers/ThemeProvider.tsx +98 -0
- package/templates/tanstack/src/providers/devtools.tsx +6 -0
- package/templates/tanstack/src/providers/index.ts +1 -0
- package/templates/tanstack/src/providers/root-provider.ts +9 -0
- package/templates/tanstack/src/routeTree.gen.ts +123 -0
- package/templates/tanstack/src/router.tsx +27 -0
- package/templates/tanstack/src/routes/__root.tsx +78 -0
- package/templates/tanstack/src/routes/index.tsx +13 -0
- package/templates/tanstack/src/routes/robots[.]txt.ts +21 -0
- package/templates/tanstack/src/routes/site[.]webmanifest.ts +32 -0
- package/templates/tanstack/src/routes/sitemap[.]xml.ts +27 -0
- package/templates/tanstack/src/schemas/index.ts +5 -0
- package/templates/tanstack/src/start.ts +20 -0
- package/templates/tanstack/src/stores/index.ts +5 -0
- package/templates/tanstack/src/styles/tailwind.css +123 -0
- package/templates/tanstack/src/types/site-config.types.ts +10 -0
- package/templates/tanstack/tsconfig.json +25 -0
- package/templates/tanstack/tsr.config.json +3 -0
- package/templates/tanstack/vite.config.ts +12 -0
- package/templates-i18n/nextjs/.changeset/README.md +8 -0
- package/templates-i18n/nextjs/.changeset/config.json +11 -0
- package/templates-i18n/nextjs/.env.example +6 -0
- package/templates-i18n/nextjs/.eslintcache +1 -0
- package/templates-i18n/nextjs/.github/workflows/ci.yml +41 -0
- package/templates-i18n/nextjs/.husky/commit-msg +1 -0
- package/templates-i18n/nextjs/.husky/pre-commit +1 -0
- package/templates-i18n/nextjs/.husky/pre-push +1 -0
- package/templates-i18n/nextjs/.prettierignore +6 -0
- package/templates-i18n/nextjs/.prettierrc +42 -0
- package/templates-i18n/nextjs/.vscode/extensions.json +7 -0
- package/templates-i18n/nextjs/.vscode/settings.json +20 -0
- package/templates-i18n/nextjs/LICENSE +21 -0
- package/templates-i18n/nextjs/README.md +202 -0
- package/templates-i18n/nextjs/_gitignore +45 -0
- package/templates-i18n/nextjs/commitlint.config.js +6 -0
- package/templates-i18n/nextjs/eslint.config.mjs +27 -0
- package/templates-i18n/nextjs/knip.config.js +29 -0
- package/templates-i18n/nextjs/next-env.d.ts +6 -0
- package/templates-i18n/nextjs/next.config.ts +42 -0
- package/templates-i18n/nextjs/package.json +117 -0
- package/templates-i18n/nextjs/pnpm-lock.yaml +6854 -0
- package/templates-i18n/nextjs/pnpm-workspace.yaml +3 -0
- package/templates-i18n/nextjs/postcss.config.mjs +7 -0
- package/templates-i18n/nextjs/public/favicon.ico +0 -0
- package/templates-i18n/nextjs/public/llms.txt +96 -0
- package/templates-i18n/nextjs/public/logo.png +0 -0
- package/templates-i18n/nextjs/public/logo.webp +0 -0
- package/templates-i18n/nextjs/public/og.png +0 -0
- package/templates-i18n/nextjs/src/app/[locale]/error.tsx +34 -0
- package/templates-i18n/nextjs/src/app/[locale]/layout.tsx +60 -0
- package/templates-i18n/nextjs/src/app/[locale]/loading.tsx +12 -0
- package/templates-i18n/nextjs/src/app/[locale]/not-found.tsx +18 -0
- package/templates-i18n/nextjs/src/app/[locale]/page.tsx +10 -0
- package/templates-i18n/nextjs/src/app/favicon.ico +0 -0
- package/templates-i18n/nextjs/src/app/global-error.tsx +32 -0
- package/templates-i18n/nextjs/src/app/manifest.ts +22 -0
- package/templates-i18n/nextjs/src/app/robots.ts +13 -0
- package/templates-i18n/nextjs/src/app/sitemap.ts +14 -0
- package/templates-i18n/nextjs/src/components/shared/LanguageSwitcher.tsx +48 -0
- package/templates-i18n/nextjs/src/components/shared/ThemeToggle.tsx +30 -0
- package/templates-i18n/nextjs/src/components/ui/avatar.tsx +54 -0
- package/templates-i18n/nextjs/src/components/ui/button.tsx +46 -0
- package/templates-i18n/nextjs/src/components/ui/dialog.tsx +107 -0
- package/templates-i18n/nextjs/src/components/ui/field.tsx +24 -0
- package/templates-i18n/nextjs/src/components/ui/index.ts +27 -0
- package/templates-i18n/nextjs/src/components/ui/input.tsx +23 -0
- package/templates-i18n/nextjs/src/components/ui/label.tsx +17 -0
- package/templates-i18n/nextjs/src/components/ui/skeleton.tsx +13 -0
- package/templates-i18n/nextjs/src/components/ui/table.tsx +94 -0
- package/templates-i18n/nextjs/src/components/ui/tabs.tsx +46 -0
- package/templates-i18n/nextjs/src/config/seo.config.ts +37 -0
- package/templates-i18n/nextjs/src/config/site.config.ts +15 -0
- package/templates-i18n/nextjs/src/constants/index.ts +5 -0
- package/templates-i18n/nextjs/src/env.ts +41 -0
- package/templates-i18n/nextjs/src/features/landing/api/get-users.api.ts +7 -0
- package/templates-i18n/nextjs/src/features/landing/api/index.ts +2 -0
- package/templates-i18n/nextjs/src/features/landing/api/query-keys.ts +7 -0
- package/templates-i18n/nextjs/src/features/landing/components/CartDemo.tsx +68 -0
- package/templates-i18n/nextjs/src/features/landing/components/Features.tsx +84 -0
- package/templates-i18n/nextjs/src/features/landing/components/Hero.tsx +76 -0
- package/templates-i18n/nextjs/src/features/landing/components/LandingPage.tsx +17 -0
- package/templates-i18n/nextjs/src/features/landing/components/ProjectFormDemo.tsx +64 -0
- package/templates-i18n/nextjs/src/features/landing/components/Reveal.tsx +83 -0
- package/templates-i18n/nextjs/src/features/landing/components/Showcase.tsx +83 -0
- package/templates-i18n/nextjs/src/features/landing/components/UsersDemo.tsx +191 -0
- package/templates-i18n/nextjs/src/features/landing/data/features.data.tsx +47 -0
- package/templates-i18n/nextjs/src/features/landing/data/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/helpers/get-initials.ts +15 -0
- package/templates-i18n/nextjs/src/features/landing/helpers/index.ts +7 -0
- package/templates-i18n/nextjs/src/features/landing/helpers/motion.ts +21 -0
- package/templates-i18n/nextjs/src/features/landing/hooks/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/hooks/use-users.ts +16 -0
- package/templates-i18n/nextjs/src/features/landing/icons/index.ts +6 -0
- package/templates-i18n/nextjs/src/features/landing/icons/nextjs.tsx +68 -0
- package/templates-i18n/nextjs/src/features/landing/icons/react-hook-form.tsx +18 -0
- package/templates-i18n/nextjs/src/features/landing/icons/react.tsx +20 -0
- package/templates-i18n/nextjs/src/features/landing/icons/tailwind.tsx +14 -0
- package/templates-i18n/nextjs/src/features/landing/icons/tanstack.tsx +321 -0
- package/templates-i18n/nextjs/src/features/landing/icons/typescript.tsx +16 -0
- package/templates-i18n/nextjs/src/features/landing/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/schemas/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/schemas/project.schema.ts +9 -0
- package/templates-i18n/nextjs/src/features/landing/stores/counter.store.ts +18 -0
- package/templates-i18n/nextjs/src/features/landing/stores/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/types/index.ts +1 -0
- package/templates-i18n/nextjs/src/features/landing/types/user.types.ts +9 -0
- package/templates-i18n/nextjs/src/helpers/format-date.ts +13 -0
- package/templates-i18n/nextjs/src/helpers/index.ts +1 -0
- package/templates-i18n/nextjs/src/hooks/index.ts +5 -0
- package/templates-i18n/nextjs/src/i18n/request.ts +16 -0
- package/templates-i18n/nextjs/src/i18n/routing.ts +11 -0
- package/templates-i18n/nextjs/src/lib/api.ts +97 -0
- package/templates-i18n/nextjs/src/lib/query-client.ts +18 -0
- package/templates-i18n/nextjs/src/lib/utils.ts +12 -0
- package/templates-i18n/nextjs/src/messages/en.json +55 -0
- package/templates-i18n/nextjs/src/messages/tr.json +55 -0
- package/templates-i18n/nextjs/src/providers/Providers.tsx +15 -0
- package/templates-i18n/nextjs/src/providers/QueryProvider.tsx +19 -0
- package/templates-i18n/nextjs/src/providers/ThemeProvider.tsx +9 -0
- package/templates-i18n/nextjs/src/providers/index.ts +1 -0
- package/templates-i18n/nextjs/src/proxy.ts +16 -0
- package/templates-i18n/nextjs/src/schemas/index.ts +5 -0
- package/templates-i18n/nextjs/src/stores/index.ts +5 -0
- package/templates-i18n/nextjs/src/styles/tailwind.css +122 -0
- package/templates-i18n/nextjs/src/types/site-config.types.ts +10 -0
- package/templates-i18n/nextjs/tsconfig.json +45 -0
- package/templates-i18n/nextjs/tsconfig.tsbuildinfo +1 -0
- package/templates-i18n/tanstack/.changeset/README.md +8 -0
- package/templates-i18n/tanstack/.changeset/config.json +11 -0
- package/templates-i18n/tanstack/.env.example +6 -0
- package/templates-i18n/tanstack/.eslintcache +1 -0
- package/templates-i18n/tanstack/.github/workflows/ci.yml +41 -0
- package/templates-i18n/tanstack/.husky/commit-msg +1 -0
- package/templates-i18n/tanstack/.husky/pre-commit +1 -0
- package/templates-i18n/tanstack/.husky/pre-push +1 -0
- package/templates-i18n/tanstack/.prettierignore +7 -0
- package/templates-i18n/tanstack/.prettierrc +41 -0
- package/templates-i18n/tanstack/.vscode/extensions.json +7 -0
- package/templates-i18n/tanstack/.vscode/settings.json +22 -0
- package/templates-i18n/tanstack/LICENSE +21 -0
- package/templates-i18n/tanstack/README.md +204 -0
- package/templates-i18n/tanstack/_gitignore +52 -0
- package/templates-i18n/tanstack/commitlint.config.js +6 -0
- package/templates-i18n/tanstack/eslint.config.js +29 -0
- package/templates-i18n/tanstack/knip.config.js +26 -0
- package/templates-i18n/tanstack/messages/en.json +65 -0
- package/templates-i18n/tanstack/messages/tr.json +65 -0
- package/templates-i18n/tanstack/package.json +132 -0
- package/templates-i18n/tanstack/pnpm-lock.yaml +5998 -0
- package/templates-i18n/tanstack/pnpm-workspace.yaml +3 -0
- package/templates-i18n/tanstack/project.inlang/README.md +157 -0
- package/templates-i18n/tanstack/project.inlang/settings.json +9 -0
- package/templates-i18n/tanstack/public/favicon.ico +0 -0
- package/templates-i18n/tanstack/public/llms.txt +86 -0
- package/templates-i18n/tanstack/public/logo.png +0 -0
- package/templates-i18n/tanstack/public/logo.webp +0 -0
- package/templates-i18n/tanstack/public/og.png +0 -0
- package/templates-i18n/tanstack/src/components/shared/DefaultCatchBoundary.tsx +36 -0
- package/templates-i18n/tanstack/src/components/shared/LanguageSwitcher.tsx +57 -0
- package/templates-i18n/tanstack/src/components/shared/NotFound.tsx +18 -0
- package/templates-i18n/tanstack/src/components/shared/Pending.tsx +13 -0
- package/templates-i18n/tanstack/src/components/shared/ThemeToggle.tsx +31 -0
- package/templates-i18n/tanstack/src/components/ui/avatar.tsx +52 -0
- package/templates-i18n/tanstack/src/components/ui/button.tsx +47 -0
- package/templates-i18n/tanstack/src/components/ui/dialog.tsx +107 -0
- package/templates-i18n/tanstack/src/components/ui/field.tsx +24 -0
- package/templates-i18n/tanstack/src/components/ui/index.ts +27 -0
- package/templates-i18n/tanstack/src/components/ui/input.tsx +23 -0
- package/templates-i18n/tanstack/src/components/ui/label.tsx +17 -0
- package/templates-i18n/tanstack/src/components/ui/skeleton.tsx +13 -0
- package/templates-i18n/tanstack/src/components/ui/table.tsx +94 -0
- package/templates-i18n/tanstack/src/components/ui/tabs.tsx +46 -0
- package/templates-i18n/tanstack/src/config/seo.config.ts +52 -0
- package/templates-i18n/tanstack/src/config/site.config.ts +15 -0
- package/templates-i18n/tanstack/src/constants/index.ts +5 -0
- package/templates-i18n/tanstack/src/env.ts +47 -0
- package/templates-i18n/tanstack/src/features/landing/api/get-users.api.ts +7 -0
- package/templates-i18n/tanstack/src/features/landing/api/index.ts +2 -0
- package/templates-i18n/tanstack/src/features/landing/api/query-keys.ts +7 -0
- package/templates-i18n/tanstack/src/features/landing/components/CartDemo.tsx +67 -0
- package/templates-i18n/tanstack/src/features/landing/components/Features.tsx +79 -0
- package/templates-i18n/tanstack/src/features/landing/components/Hero.tsx +68 -0
- package/templates-i18n/tanstack/src/features/landing/components/LandingPage.tsx +17 -0
- package/templates-i18n/tanstack/src/features/landing/components/ProjectFormDemo.tsx +64 -0
- package/templates-i18n/tanstack/src/features/landing/components/Reveal.tsx +83 -0
- package/templates-i18n/tanstack/src/features/landing/components/Showcase.tsx +81 -0
- package/templates-i18n/tanstack/src/features/landing/components/UsersDemo.tsx +191 -0
- package/templates-i18n/tanstack/src/features/landing/data/features.data.tsx +45 -0
- package/templates-i18n/tanstack/src/features/landing/data/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/helpers/get-initials.ts +15 -0
- package/templates-i18n/tanstack/src/features/landing/helpers/index.ts +7 -0
- package/templates-i18n/tanstack/src/features/landing/helpers/motion.ts +21 -0
- package/templates-i18n/tanstack/src/features/landing/hooks/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/hooks/use-users.ts +19 -0
- package/templates-i18n/tanstack/src/features/landing/icons/index.ts +5 -0
- package/templates-i18n/tanstack/src/features/landing/icons/react-hook-form.tsx +18 -0
- package/templates-i18n/tanstack/src/features/landing/icons/react.tsx +20 -0
- package/templates-i18n/tanstack/src/features/landing/icons/tailwind.tsx +14 -0
- package/templates-i18n/tanstack/src/features/landing/icons/tanstack.tsx +321 -0
- package/templates-i18n/tanstack/src/features/landing/icons/typescript.tsx +16 -0
- package/templates-i18n/tanstack/src/features/landing/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/schemas/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/schemas/project.schema.ts +10 -0
- package/templates-i18n/tanstack/src/features/landing/stores/counter.store.ts +18 -0
- package/templates-i18n/tanstack/src/features/landing/stores/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/types/index.ts +1 -0
- package/templates-i18n/tanstack/src/features/landing/types/user.types.ts +9 -0
- package/templates-i18n/tanstack/src/helpers/format-date.ts +13 -0
- package/templates-i18n/tanstack/src/helpers/index.ts +1 -0
- package/templates-i18n/tanstack/src/hooks/index.ts +5 -0
- package/templates-i18n/tanstack/src/lib/api.ts +97 -0
- package/templates-i18n/tanstack/src/lib/query-client.ts +18 -0
- package/templates-i18n/tanstack/src/lib/utils.ts +13 -0
- package/templates-i18n/tanstack/src/paraglide/README.md +162 -0
- package/templates-i18n/tanstack/src/providers/Providers.tsx +12 -0
- package/templates-i18n/tanstack/src/providers/ThemeProvider.tsx +98 -0
- package/templates-i18n/tanstack/src/providers/devtools.tsx +6 -0
- package/templates-i18n/tanstack/src/providers/index.ts +1 -0
- package/templates-i18n/tanstack/src/providers/root-provider.ts +9 -0
- package/templates-i18n/tanstack/src/routeTree.gen.ts +179 -0
- package/templates-i18n/tanstack/src/router.tsx +27 -0
- package/templates-i18n/tanstack/src/routes/$lang/index.tsx +13 -0
- package/templates-i18n/tanstack/src/routes/$lang.tsx +22 -0
- package/templates-i18n/tanstack/src/routes/__root.tsx +80 -0
- package/templates-i18n/tanstack/src/routes/index.tsx +13 -0
- package/templates-i18n/tanstack/src/routes/robots[.]txt.ts +21 -0
- package/templates-i18n/tanstack/src/routes/site[.]webmanifest.ts +32 -0
- package/templates-i18n/tanstack/src/routes/sitemap[.]xml.ts +27 -0
- package/templates-i18n/tanstack/src/schemas/index.ts +5 -0
- package/templates-i18n/tanstack/src/server.ts +10 -0
- package/templates-i18n/tanstack/src/start.ts +20 -0
- package/templates-i18n/tanstack/src/stores/index.ts +5 -0
- package/templates-i18n/tanstack/src/styles/tailwind.css +123 -0
- package/templates-i18n/tanstack/src/types/site-config.types.ts +10 -0
- package/templates-i18n/tanstack/tsconfig.json +26 -0
- package/templates-i18n/tanstack/tsr.config.json +3 -0
- package/templates-i18n/tanstack/vite.config.ts +31 -0
- package/index.js +0 -3
- package/public/start.jpg +0 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://inlang.com/schema/inlang-message-format",
|
|
3
|
+
"hero_badge": "Premium UI/UX · Agent-ready · Zero bloat",
|
|
4
|
+
"hero_title_1": "ViraStack",
|
|
5
|
+
"hero_title_2": "Start",
|
|
6
|
+
"hero_desc_1": "Built with ",
|
|
7
|
+
"hero_desc_2": ", ",
|
|
8
|
+
"hero_desc_3": ", and ",
|
|
9
|
+
"hero_desc_4": " - wired together with ",
|
|
10
|
+
"hero_desc_5": ", ",
|
|
11
|
+
"hero_desc_6": ", and ",
|
|
12
|
+
"hero_desc_7": " so you can ship a polished product from day one.",
|
|
13
|
+
"github": "Star on GitHub",
|
|
14
|
+
"theme": "Theme",
|
|
15
|
+
"language": "Language",
|
|
16
|
+
"features_title": "Features",
|
|
17
|
+
"features_subtitle": "Everything you need to build a modern web application, already configured with the best practices.",
|
|
18
|
+
"feature_1_title": "TanStack Start",
|
|
19
|
+
"feature_1_desc": "Full-stack React framework with SSR, streaming, and powerful routing features.",
|
|
20
|
+
"feature_2_title": "Type-Safe Everything",
|
|
21
|
+
"feature_2_desc": "End-to-end type safety from environment variables to API responses with TypeScript and Zod.",
|
|
22
|
+
"feature_3_title": "TanStack Query",
|
|
23
|
+
"feature_3_desc": "Server-state caching and synchronization, plus URL state via nuqs - all wired and ready to use.",
|
|
24
|
+
"feature_4_title": "Tailwind & shadcn/ui",
|
|
25
|
+
"feature_4_desc": "shadcn/ui patterns on Base UI primitives - Tailwind CSS v4, accessible, and fully yours to own.",
|
|
26
|
+
"feature_5_title": "React Hook Form",
|
|
27
|
+
"feature_5_desc": "Performant, flexible, and extensible forms with easy-to-use validation integration.",
|
|
28
|
+
"feature_6_title": "ViraStack AI",
|
|
29
|
+
"feature_6_desc": "Pre-configured agent context - coding rules, design skills, and AGENTS.md so any AI assistant matches this codebase.",
|
|
30
|
+
"showcase_title": "Showcase",
|
|
31
|
+
"showcase_subtitle": "Experience the seamless integration of UI components and state management.",
|
|
32
|
+
"showcase_project_title": "New Project",
|
|
33
|
+
"showcase_project_desc_1": "Validated forms with ",
|
|
34
|
+
"showcase_project_desc_2": " and ",
|
|
35
|
+
"showcase_project_desc_3": ".",
|
|
36
|
+
"showcase_state_title": "Global State",
|
|
37
|
+
"showcase_state_desc_1": "Shared client state managed with ",
|
|
38
|
+
"showcase_state_desc_2": ".",
|
|
39
|
+
"showcase_footer_license": "© {year} {name}. MIT Licensed.",
|
|
40
|
+
"showcase_footer_built": "Last updated on {date}.",
|
|
41
|
+
"users_title": "Recent Users",
|
|
42
|
+
"users_desc_1": "Fetch and cache data with ",
|
|
43
|
+
"users_desc_2": ", synced to the URL via ",
|
|
44
|
+
"users_desc_3": ".",
|
|
45
|
+
"users_search": "Search users...",
|
|
46
|
+
"users_refresh": "Refresh",
|
|
47
|
+
"users_refreshing": "Refreshing...",
|
|
48
|
+
"users_col_user": "User",
|
|
49
|
+
"users_col_city": "City",
|
|
50
|
+
"users_error_status": "Request failed with status {status}.",
|
|
51
|
+
"users_error_network": "Failed to load users. Check your network connection.",
|
|
52
|
+
"users_empty": "No users found.",
|
|
53
|
+
"project_label": "Project Name",
|
|
54
|
+
"project_placeholder": "virastack-app",
|
|
55
|
+
"project_desc": "Use 3–50 characters for the project name.",
|
|
56
|
+
"project_submit": "Create Project",
|
|
57
|
+
"project_submitting": "Creating…",
|
|
58
|
+
"project_success": "Created project: {name}",
|
|
59
|
+
"project_validation_min": "Project name must be at least 3 characters.",
|
|
60
|
+
"project_validation_max": "Project name must be at most 50 characters.",
|
|
61
|
+
"cart_item_name": "Cotton T-Shirt",
|
|
62
|
+
"cart_item_variant": "White / XL",
|
|
63
|
+
"cart_item_total": "Total",
|
|
64
|
+
"cart_clear": "Clear"
|
|
65
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://inlang.com/schema/inlang-message-format",
|
|
3
|
+
"hero_badge": "Premium UI/UX · Yapay zeka uyumlu · Sıfır fazlalık",
|
|
4
|
+
"hero_title_1": "ViraStack",
|
|
5
|
+
"hero_title_2": "Start",
|
|
6
|
+
"hero_desc_1": "",
|
|
7
|
+
"hero_desc_2": ", ",
|
|
8
|
+
"hero_desc_3": " ve ",
|
|
9
|
+
"hero_desc_4": " ile oluşturuldu - ilk günden mükemmel bir ürün çıkarabilmeniz için ",
|
|
10
|
+
"hero_desc_5": ", ",
|
|
11
|
+
"hero_desc_6": " ve ",
|
|
12
|
+
"hero_desc_7": " ile birbirine bağlandı.",
|
|
13
|
+
"github": "GitHub'da Yıldızla",
|
|
14
|
+
"theme": "Tema",
|
|
15
|
+
"language": "Dil",
|
|
16
|
+
"features_title": "Özellikler",
|
|
17
|
+
"features_subtitle": "Modern bir web uygulaması oluşturmak için ihtiyacınız olan her şey, en iyi uygulamalarla önceden yapılandırıldı.",
|
|
18
|
+
"feature_1_title": "TanStack Start",
|
|
19
|
+
"feature_1_desc": "SSR, akış ve güçlü yönlendirme özelliklerine sahip tam yığın React framework'ü.",
|
|
20
|
+
"feature_2_title": "Her Şey Tip Güvenli",
|
|
21
|
+
"feature_2_desc": "TypeScript ve Zod ile ortam değişkenlerinden API yanıtlarına kadar uçtan uca tip güvenliği.",
|
|
22
|
+
"feature_3_title": "TanStack Query",
|
|
23
|
+
"feature_3_desc": "Sunucu durumu önbelleğe alma ve senkronizasyon, artı nuqs aracılığıyla URL durumu - hepsi bağlı ve kullanıma hazır.",
|
|
24
|
+
"feature_4_title": "Tailwind ve shadcn/ui",
|
|
25
|
+
"feature_4_desc": "Base UI temel öğeleri üzerinde shadcn/ui desenleri - Tailwind CSS v4, erişilebilir ve tamamen size ait.",
|
|
26
|
+
"feature_5_title": "React Hook Form",
|
|
27
|
+
"feature_5_desc": "Kullanımı kolay doğrulama entegrasyonuna sahip yüksek performanslı, esnek ve genişletilebilir formlar.",
|
|
28
|
+
"feature_6_title": "ViraStack AI",
|
|
29
|
+
"feature_6_desc": "Önceden yapılandırılmış ajan bağlamı - herhangi bir AI asistanının bu kod tabanıyla eşleşmesi için kodlama kuralları, tasarım becerileri ve AGENTS.md.",
|
|
30
|
+
"showcase_title": "Vitrin",
|
|
31
|
+
"showcase_subtitle": "Kullanıcı arayüzü bileşenleri ile durum yönetiminin kusursuz entegrasyonunu deneyimleyin.",
|
|
32
|
+
"showcase_project_title": "Yeni Proje",
|
|
33
|
+
"showcase_project_desc_1": "",
|
|
34
|
+
"showcase_project_desc_2": " ve ",
|
|
35
|
+
"showcase_project_desc_3": " ile doğrulanmış formlar.",
|
|
36
|
+
"showcase_state_title": "Global Durum",
|
|
37
|
+
"showcase_state_desc_1": "",
|
|
38
|
+
"showcase_state_desc_2": " ile yönetilen paylaşılan istemci durumu.",
|
|
39
|
+
"showcase_footer_license": "© {year} {name}. MIT Lisanslı.",
|
|
40
|
+
"showcase_footer_built": "Son güncelleme tarihi: {date}.",
|
|
41
|
+
"users_title": "Son Kullanıcılar",
|
|
42
|
+
"users_desc_1": "",
|
|
43
|
+
"users_desc_2": " ile verileri çekip önbelleğe alın, ",
|
|
44
|
+
"users_desc_3": " ile URL'e eşitleyin.",
|
|
45
|
+
"users_search": "Kullanıcıları ara...",
|
|
46
|
+
"users_refresh": "Yenile",
|
|
47
|
+
"users_refreshing": "Yenileniyor...",
|
|
48
|
+
"users_col_user": "Kullanıcı",
|
|
49
|
+
"users_col_city": "Şehir",
|
|
50
|
+
"users_error_status": "İstek {status} durumu ile başarısız oldu.",
|
|
51
|
+
"users_error_network": "Kullanıcılar yüklenemedi. Lütfen internet bağlantınızı kontrol edin.",
|
|
52
|
+
"users_empty": "Kullanıcı bulunamadı.",
|
|
53
|
+
"project_label": "Proje Adı",
|
|
54
|
+
"project_placeholder": "virastack-app",
|
|
55
|
+
"project_desc": "Proje adı için 3-50 karakter kullanın.",
|
|
56
|
+
"project_submit": "Proje Oluştur",
|
|
57
|
+
"project_submitting": "Oluşturuluyor…",
|
|
58
|
+
"project_success": "Proje oluşturuldu: {name}",
|
|
59
|
+
"project_validation_min": "Proje adı en az 3 karakter olmalıdır.",
|
|
60
|
+
"project_validation_max": "Proje adı en fazla 50 karakter olabilir.",
|
|
61
|
+
"cart_item_name": "Pamuklu Tişört",
|
|
62
|
+
"cart_item_variant": "Beyaz / XL",
|
|
63
|
+
"cart_item_total": "Toplam",
|
|
64
|
+
"cart_clear": "Temizle"
|
|
65
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "virastack",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Premium TanStack Start + React 19 + Tailwind CSS 4 boilerplate focused on clean architecture, UI/UX, and agent-ready developer experience.",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Ömer Gülçiçek (ViraStack)",
|
|
9
|
+
"email": "iletisim@omergulcicek.com",
|
|
10
|
+
"url": "https://omergulcicek.com"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"virastack": {
|
|
14
|
+
"template": "tanstack",
|
|
15
|
+
"version": "1.0.0",
|
|
16
|
+
"i18n": true,
|
|
17
|
+
"url": "https://virastack.com"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://virastack.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/virastack/start.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/virastack/start/issues"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=20.9.0"
|
|
29
|
+
},
|
|
30
|
+
"imports": {
|
|
31
|
+
"#/*": "./src/*"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite dev --port 3000",
|
|
35
|
+
"build": "vite build",
|
|
36
|
+
"start": "vite preview --port 3000",
|
|
37
|
+
"preview": "vite preview --port 3000",
|
|
38
|
+
"generate-routes": "tsr generate",
|
|
39
|
+
"clean": "rimraf dist .tanstack .output",
|
|
40
|
+
"format": "prettier --write .",
|
|
41
|
+
"format:check": "prettier --check .",
|
|
42
|
+
"knip": "knip",
|
|
43
|
+
"lint": "eslint . --cache",
|
|
44
|
+
"lint:fix": "eslint . --fix --cache && prettier --write .",
|
|
45
|
+
"lint:ci": "eslint . --max-warnings=0 && prettier --check .",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"prepare": "husky",
|
|
48
|
+
"changeset": "changeset",
|
|
49
|
+
"changeset:version": "changeset version",
|
|
50
|
+
"changeset:publish": "changeset publish"
|
|
51
|
+
},
|
|
52
|
+
"lint-staged": {
|
|
53
|
+
"*.{ts,tsx,js,jsx}": [
|
|
54
|
+
"eslint --fix --cache",
|
|
55
|
+
"prettier --write"
|
|
56
|
+
],
|
|
57
|
+
"*.{css,md,json}": [
|
|
58
|
+
"prettier --write"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"virastack",
|
|
63
|
+
"tanstack-start",
|
|
64
|
+
"tanstack-router",
|
|
65
|
+
"react-boilerplate",
|
|
66
|
+
"react",
|
|
67
|
+
"tanstack",
|
|
68
|
+
"cursor-rules",
|
|
69
|
+
"clean-architecture",
|
|
70
|
+
"typescript",
|
|
71
|
+
"tanstack-query",
|
|
72
|
+
"tailwindcss",
|
|
73
|
+
"base-ui",
|
|
74
|
+
"dx"
|
|
75
|
+
],
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@base-ui/react": "^1.6.0",
|
|
78
|
+
"@fontsource-variable/inter": "^5.3.0",
|
|
79
|
+
"@hookform/resolvers": "^5.4.0",
|
|
80
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
81
|
+
"@tanstack/react-devtools": "^0.10.9",
|
|
82
|
+
"@tanstack/react-query": "^5.101.4",
|
|
83
|
+
"@tanstack/react-query-devtools": "^5.101.4",
|
|
84
|
+
"@tanstack/react-router": "^1.170.18",
|
|
85
|
+
"@tanstack/react-router-devtools": "^1.167.0",
|
|
86
|
+
"@tanstack/react-router-ssr-query": "^1.167.1",
|
|
87
|
+
"@tanstack/react-start": "^1.168.32",
|
|
88
|
+
"class-variance-authority": "^0.7.1",
|
|
89
|
+
"clsx": "^2.1.1",
|
|
90
|
+
"framer-motion": "^12.42.2",
|
|
91
|
+
"lucide-react": "^1.26.0",
|
|
92
|
+
"nuqs": "^2.9.1",
|
|
93
|
+
"react": "^19.2.0",
|
|
94
|
+
"react-dom": "^19.2.0",
|
|
95
|
+
"react-hook-form": "^7.82.0",
|
|
96
|
+
"sonner": "^2.0.7",
|
|
97
|
+
"tailwind-merge": "^3.6.0",
|
|
98
|
+
"tailwindcss": "^4.1.18",
|
|
99
|
+
"usehooks-ts": "^3.1.1",
|
|
100
|
+
"zod": "^4.4.3",
|
|
101
|
+
"zustand": "^5.0.14"
|
|
102
|
+
},
|
|
103
|
+
"devDependencies": {
|
|
104
|
+
"@changesets/cli": "^2.31.1",
|
|
105
|
+
"@commitlint/cli": "^21.2.1",
|
|
106
|
+
"@commitlint/config-conventional": "^21.2.0",
|
|
107
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
|
108
|
+
"@inlang/paraglide-js": "^2.23.0",
|
|
109
|
+
"@tanstack/eslint-config": "^0.4.0",
|
|
110
|
+
"@tanstack/router-cli": "^1.167.21",
|
|
111
|
+
"@types/node": "^22.10.2",
|
|
112
|
+
"@types/react": "^19.2.0",
|
|
113
|
+
"@types/react-dom": "^19.2.0",
|
|
114
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
115
|
+
"eslint": "^9.20.0",
|
|
116
|
+
"husky": "^9.1.7",
|
|
117
|
+
"knip": "^6.29.0",
|
|
118
|
+
"lint-staged": "^17.2.0",
|
|
119
|
+
"prettier": "^3.8.1",
|
|
120
|
+
"prettier-plugin-tailwindcss": "^0.8.1",
|
|
121
|
+
"rimraf": "^6.1.3",
|
|
122
|
+
"tw-animate-css": "^1.4.0",
|
|
123
|
+
"typescript": "^6.0.2",
|
|
124
|
+
"vite": "^8.0.0"
|
|
125
|
+
},
|
|
126
|
+
"pnpm": {
|
|
127
|
+
"onlyBuiltDependencies": [
|
|
128
|
+
"esbuild",
|
|
129
|
+
"lightningcss"
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
}
|