{
  "name": "@metis/mobile",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/metis/mobile",
  "projectType": "application",
  "tags": ["scope:metis", "type:app", "platform:mobile"],
  "targets": {
    "start": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start",
        "cwd": "apps/metis/mobile"
      }
    },
    "start:ios": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start --ios",
        "cwd": "apps/metis/mobile"
      }
    },
    "start:android": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start --android",
        "cwd": "apps/metis/mobile"
      }
    },
    "start:web": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo start --web",
        "cwd": "apps/metis/mobile"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "command": "expo export --clear --platform web --output-dir dist",
        "cwd": "apps/metis/mobile"
      }
    },
    "prebuild": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo prebuild",
        "cwd": "apps/metis/mobile"
      }
    },
    "prebuild:clean": {
      "executor": "nx:run-commands",
      "options": {
        "command": "expo prebuild --clean",
        "cwd": "apps/metis/mobile"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eslint app src",
        "cwd": "apps/metis/mobile"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/metis/mobile"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "jest",
        "cwd": "apps/metis/mobile"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "command": "maestro test e2e/flows/smoke.yaml",
        "cwd": "apps/metis/mobile"
      }
    }
  }
}
