stack/turbo.json
mantrakp04 19d71796a2 Update dashboard V2 setup and dependencies
- Added new environment variables for Vite in the dashboard V2 `.env.development` file.
- Updated `pnpm-lock.yaml` to include new dependencies for TanStack Start and React Query.
- Enhanced the routing setup in `router.tsx` to integrate React Query with TanStack Router.
- Refactored the `routeTree.gen.ts` to include new routes for the dashboard V2.
- Updated the design guide and documentation for dashboard V2 components and layout.
- Added new SVG assets for branding and social previews in the public directory.
- Adjusted ESLint configuration to relax rules for generated components.
- Improved the `.gitignore` to include the new `tanstack-start` package directory.
2026-04-30 13:46:44 -07:00

117 lines
2.1 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"STACK_*",
"CRON_SECRET",
"NEXT_PUBLIC_*",
"VITE_*",
"NEXT_PUBLIC_SENTRY_*",
"SENTRY_*",
"VERCEL_GIT_COMMIT_SHA",
"NEXT_PUBLIC_POSTHOG_*",
"POSTHOG_*",
"NODE_ENV",
"QUETZAL_*",
"OTEL_*",
"DISCORD_WEBHOOK_URL",
"DISCORD_CHANNEL_ID",
"DISCORD_BOT_TOKEN",
"ENABLE_EXPERIMENTAL_COREPACK"
],
"tasks": {
"build": {
"inputs": [
"$TURBO_DEFAULT$",
".env",
".env.local",
".env.development",
".env.development.local",
".env.production",
".env.production.local",
"tsdown.config.ts"
],
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map"
],
"outputLogs": "new-only"
},
"docker-build": {
"inputs": [
"$TURBO_DEFAULT$",
".env",
".env.local",
".env.development",
".env.development.local",
".env.production",
".env.production.local"
],
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map"
],
"outputLogs": "new-only"
},
"@stackframe/backend#build": {
"dependsOn": [
"codegen"
]
},
"clean": {
"cache": false
},
"dev": {
"persistent": true,
"cache": false
},
"start": {
"persistent": true,
"cache": false
},
"lint": {
"dependsOn": []
},
"codegen": {
"dependsOn": [
"^build"
],
"cache": false
},
"typecheck": {
"dependsOn": []
},
"generate-keys": {
"cache": false
},
"db:migration-gen": {
"cache": false
},
"db:reset": {
"cache": false
},
"db:seed": {
"cache": false
},
"db:init": {
"cache": false
},
"db:migrate": {
"cache": false
}
}
}