{
  "$schema": "https://turbo.build/schema.json",
  "ui": "tui",
  "globalDependencies": [".env"],
  "tasks": {
    "build": {
      "outputs": [".next/**", "!.next/cache/**", "dist/**"],
      "dependsOn": ["^build"]
    },
    "start": {
      "outputs": [".next/**", "!.next/cache/**", "dist/**"],
      "dependsOn": ["^start"],
      "persistent": true
    },
    "lint": {
      "dependsOn": ["^lint"]
    },
    "lint:fix": {
      "dependsOn": ["^lint:fix"]
    },
    "config:init": {
      "dependsOn": ["^config:init"],
      "cache": false
    },
    "db": {
      "dependsOn": ["^db"],
      "cache": false
    },
    "dev": {
      "cache": false,
      "persistent": true
    }
  }
}
