{
  "name": "@arete/mobile",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/arete/mobile/src",
  "projectType": "application",
  "tags": ["scope:arete", "type:app", "platform:mobile"],
  "targets": {
    "start": {
      "executor": "nx:run-commands",
      "options": {
        "command": "react-native start",
        "cwd": "apps/arete/mobile"
      }
    },
    "run-android": {
      "executor": "nx:run-commands",
      "options": {
        "command": "react-native run-android",
        "cwd": "apps/arete/mobile"
      }
    },
    "run-ios": {
      "executor": "nx:run-commands",
      "options": {
        "command": "react-native run-ios",
        "cwd": "apps/arete/mobile"
      }
    },
    "build-android": {
      "executor": "nx:run-commands",
      "options": {
        "command": "cd android && ./gradlew assembleRelease",
        "cwd": "apps/arete/mobile"
      }
    },
    "build-ios": {
      "executor": "nx:run-commands",
      "options": {
        "command": "cd ios && xcodebuild -workspace Arete.xcworkspace -scheme Arete -configuration Release",
        "cwd": "apps/arete/mobile"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eslint \"src/**/*.{ts,tsx}\"",
        "cwd": "apps/arete/mobile"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/arete/mobile"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "jest",
        "cwd": "apps/arete/mobile"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "command": "pnpm test:e2e",
        "cwd": "apps/arete/mobile"
      }
    }
  }
}
