{
  "name": "@oshun/admin-mobile",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/oshun/admin-mobile",
  "projectType": "application",
  "tags": ["scope:oshun", "type:app", "platform:mobile", "surface:admin"],
  "targets": {
    "start": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "start:ios": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start --ios",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "start:android": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start --android",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "command": "expo export --clear --platform all --output-dir dist",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "build:ios": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eas build --platform ios",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "build:android": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eas build --platform android",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eslint .",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "vitest run --passWithNoTests",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh smoke",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:auth": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh auth",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:step-up": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh step-up",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:review": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh review",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:incidents": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh incidents",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:signoff": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh signoff",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:captures": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/capture-admin-mobile-visuals.sh all",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:captures:dry": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/capture-admin-mobile-visuals.sh --dry-run all",
        "cwd": "apps/oshun/admin-mobile"
      }
    },
    "e2e:regression": {
      "executor": "nx:run-commands",
      "options": {
        "command": "bash ./scripts/run-admin-mobile-maestro.sh regression",
        "cwd": "apps/oshun/admin-mobile"
      }
    }
  }
}
