{ "$schema": "https://turbo.build/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**", ".expo/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"], "outputs": [] }, "lint:fix": { "dependsOn": ["^build"], "outputs": [] }, "typecheck": { "dependsOn": ["^build"], "outputs": [] }, "test": { "dependsOn": ["^build"], "outputs": [] }, "test:all": { "dependsOn": ["^build"], "outputs": [] }, "test:unit": { "dependsOn": ["^build"], "outputs": [] }, "test:services": { "dependsOn": ["^build"], "outputs": [] }, "test:routes": { "dependsOn": ["^build"], "outputs": [] }, "test:security": { "dependsOn": ["^build"], "outputs": [] }, "test:integration": { "dependsOn": ["^build"], "outputs": [] }, "test:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:unit:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/unit/**"] }, "test:services:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/services/**"] }, "test:routes:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/routes/**"] }, "test:watch": { "cache": false, "persistent": true }, "clean": { "cache": false }, "db:generate": { "cache": false }, "db:migrate": { "cache": false }, "db:push": { "cache": false }, "db:studio": { "cache": false, "persistent": true } } }