{
  "name": "@tara/mobile",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/tara/mobile",
  "projectType": "application",
  "tags": ["scope:tara", "type:app", "platform:mobile"],
  "targets": {
    "start": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo start"
      }
    },
    "start:ios": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo start --ios"
      }
    },
    "start:android": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo start --android"
      }
    },
    "start:web": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo start --web"
      }
    },
    "build:ios": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "eas build --platform ios"
      }
    },
    "build:android": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "eas build --platform android"
      }
    },
    "build:all": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "eas build --platform all"
      }
    },
    "submit:ios": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "eas submit --platform ios"
      }
    },
    "submit:android": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "eas submit --platform android"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": [
          "apps/tara/mobile/app/**/*.{ts,tsx}",
          "apps/tara/mobile/src/**/*.{ts,tsx}"
        ]
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "tsc --noEmit"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "jest"
      }
    },
    "test:performance": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "jest --testPathPattern=performance"
      }
    },
    "prebuild": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo prebuild"
      }
    },
    "prebuild:clean": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "npx expo prebuild --clean"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "maestro test e2e/flows/"
      },
      "configurations": {
        "smoke": {
          "command": "maestro test e2e/flows/smoke-suite.yaml"
        },
        "regression": {
          "command": "maestro test e2e/flows/regression-suite.yaml"
        }
      }
    },
    "e2e:smoke": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "maestro test e2e/flows/smoke-suite.yaml"
      }
    },
    "e2e:regression": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "maestro test e2e/flows/regression-suite.yaml"
      }
    },
    "e2e:studio": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/mobile",
        "command": "maestro studio"
      }
    }
  }
}
