create-quadrokit 0.1.0 → 0.2.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/README.md +2 -2
- package/biome.monorepo.json +67 -0
- package/dist/index.js +239 -0
- package/package.json +11 -4
- package/templates/README.md +37 -0
- package/templates/admin-shell/.cursor/rules/commitlint-conventional.mdc +47 -0
- package/templates/admin-shell/.env.example +2 -0
- package/templates/admin-shell/biome.json +12 -0
- package/templates/admin-shell/index.html +12 -0
- package/templates/admin-shell/package.json +45 -0
- package/templates/admin-shell/postcss.config.js +6 -0
- package/templates/admin-shell/src/components/AppShell.tsx +68 -0
- package/templates/admin-shell/src/i18n.ts +12 -0
- package/templates/admin-shell/src/lib/quadro-client.ts +4 -0
- package/templates/admin-shell/src/locales/en.json +15 -0
- package/templates/admin-shell/src/main.tsx +15 -0
- package/templates/admin-shell/src/pages/AgenciesPage.tsx +69 -0
- package/templates/admin-shell/src/pages/HomePage.tsx +67 -0
- package/templates/admin-shell/src/router.tsx +15 -0
- package/templates/admin-shell/src/stores/useSidebarHint.ts +12 -0
- package/templates/admin-shell/src/vite-env.d.ts +9 -0
- package/templates/admin-shell/tailwind.config.ts +7 -0
- package/templates/admin-shell/tsconfig.app.json +16 -0
- package/templates/admin-shell/tsconfig.json +4 -0
- package/templates/admin-shell/tsconfig.node.json +10 -0
- package/templates/admin-shell/vite.config.ts +25 -0
- package/templates/dashboard/.cursor/rules/commitlint-conventional.mdc +47 -0
- package/templates/dashboard/.env.example +2 -0
- package/templates/dashboard/biome.json +12 -0
- package/templates/dashboard/index.html +12 -0
- package/templates/dashboard/package.json +45 -0
- package/templates/dashboard/postcss.config.js +6 -0
- package/templates/dashboard/src/components/AppShell.tsx +44 -0
- package/templates/dashboard/src/i18n.ts +12 -0
- package/templates/dashboard/src/lib/quadro-client.ts +4 -0
- package/templates/dashboard/src/locales/en.json +15 -0
- package/templates/dashboard/src/main.tsx +15 -0
- package/templates/dashboard/src/pages/AgenciesPage.tsx +69 -0
- package/templates/dashboard/src/pages/HomePage.tsx +67 -0
- package/templates/dashboard/src/router.tsx +15 -0
- package/templates/dashboard/src/stores/useSidebarHint.ts +12 -0
- package/templates/dashboard/src/vite-env.d.ts +9 -0
- package/templates/dashboard/tailwind.config.ts +7 -0
- package/templates/dashboard/tsconfig.app.json +16 -0
- package/templates/dashboard/tsconfig.json +4 -0
- package/templates/dashboard/tsconfig.node.json +10 -0
- package/templates/dashboard/vite.config.ts +25 -0
- package/templates/ecommerce/.cursor/rules/commitlint-conventional.mdc +47 -0
- package/templates/ecommerce/.env.example +2 -0
- package/templates/ecommerce/biome.json +12 -0
- package/templates/ecommerce/index.html +12 -0
- package/templates/ecommerce/package.json +45 -0
- package/templates/ecommerce/postcss.config.js +6 -0
- package/templates/ecommerce/src/components/AppShell.tsx +44 -0
- package/templates/ecommerce/src/i18n.ts +12 -0
- package/templates/ecommerce/src/lib/quadro-client.ts +4 -0
- package/templates/ecommerce/src/locales/en.json +20 -0
- package/templates/ecommerce/src/main.tsx +15 -0
- package/templates/ecommerce/src/pages/AgenciesPage.tsx +69 -0
- package/templates/ecommerce/src/pages/HomePage.tsx +52 -0
- package/templates/ecommerce/src/router.tsx +15 -0
- package/templates/ecommerce/src/stores/useSidebarHint.ts +12 -0
- package/templates/ecommerce/src/vite-env.d.ts +9 -0
- package/templates/ecommerce/tailwind.config.ts +7 -0
- package/templates/ecommerce/tsconfig.app.json +16 -0
- package/templates/ecommerce/tsconfig.json +4 -0
- package/templates/ecommerce/tsconfig.node.json +10 -0
- package/templates/ecommerce/vite.config.ts +25 -0
- package/templates/website/.cursor/rules/commitlint-conventional.mdc +47 -0
- package/templates/website/.env.example +2 -0
- package/templates/website/biome.json +12 -0
- package/templates/website/index.html +12 -0
- package/templates/website/package.json +45 -0
- package/templates/website/postcss.config.js +6 -0
- package/templates/website/src/components/AppShell.tsx +44 -0
- package/templates/website/src/i18n.ts +12 -0
- package/templates/website/src/lib/quadro-client.ts +4 -0
- package/templates/website/src/locales/en.json +21 -0
- package/templates/website/src/main.tsx +15 -0
- package/templates/website/src/pages/AgenciesPage.tsx +69 -0
- package/templates/website/src/pages/HomePage.tsx +83 -0
- package/templates/website/src/router.tsx +15 -0
- package/templates/website/src/stores/useSidebarHint.ts +12 -0
- package/templates/website/src/vite-env.d.ts +9 -0
- package/templates/website/tailwind.config.ts +7 -0
- package/templates/website/tsconfig.app.json +16 -0
- package/templates/website/tsconfig.json +4 -0
- package/templates/website/tsconfig.node.json +10 -0
- package/templates/website/vite.config.ts +25 -0
- package/vendor/generated/client.gen.ts +2725 -0
- package/vendor/generated/meta.json +5 -0
- package/vendor/generated/types.gen.ts +991 -0
- package/src/index.ts +0 -237
- package/tsconfig.json +0 -9