{ "$schema": "https://turborepo.com/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "outputs": [".next/**", "!.next/cache/**"], "env": [ "DATABASE_URL", "BETTER_AUTH_SECRET", "UPSTASH_REDIS_REST_URL", "UPSTASH_REDIS_REST_TOKEN" ] }, "check-types": { "dependsOn": ["^check-types"] }, "dev": { "persistent": true, "cache": false }, "lint": { "dependsOn": ["^lint"], "cache": false }, "lint:fix": { "dependsOn": ["^lint:fix"], "cache": false }, "format": { "dependsOn": ["^format"] } } }