{
  "$schema": "https://turbo.build/schema.json",
  "extends": ["//"],
  "tasks": {
    "build": {
      "dependsOn": ["pull:env", "^build"],
      "outputs": [".next/**", "!.next/cache/**"],
      "env": [
        "BUILD_STANDALONE",
        "NEXT_PUBLIC_MAINNET_RPC",
        "NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID"
      ]
    },
    "pull:env": {
      "outputs": [".env.local"],
      "cache": false
    },
    "start:dev": {
      "dependsOn": ["pull:env", "^build"],
      "persistent": true,
      "cache": false
    },
    "start:prod": {
      "dependsOn": ["build"],
      "persistent": true,
      "cache": false
    }
  }
}
