{
  "name": "v4-online-services",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/v4/online-services/src",
  "projectType": "application",
  "tags": ["scope:v4", "layer:service", "type:rust-app"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo build --manifest-path apps/v4/Cargo.toml -p online-services"
      },
      "inputs": ["v4Production", "^v4Production"],
      "dependsOn": ["^build"]
    },
    "test": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo test --manifest-path apps/v4/Cargo.toml -p online-services"
      },
      "inputs": ["v4Test", "^v4Production"]
    },
    "lint": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo fmt --manifest-path apps/v4/Cargo.toml -p online-services -- --check"
      },
      "inputs": ["v4Production"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo check --manifest-path apps/v4/Cargo.toml -p online-services"
      },
      "inputs": ["v4Production", "^v4Production"]
    }
  }
}
