{
  "name": "@oya/svc-dock",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/oya/svc-dock/src",
  "projectType": "application",
  "tags": ["scope:oya", "type:app"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/oya/svc-dock",
        "command": "esbuild src/main.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/main.js --external:fastify --external:zod --tsconfig=tsconfig.app.json"
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/oya/svc-dock",
        "command": "tsx watch src/main.ts"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/oya/svc-dock",
        "command": "node dist/main.js"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["apps/oya/svc-dock/**/*.ts"]
      }
    },
    "test": {
      "executor": "@nx/vite:test",
      "options": {
        "config": "apps/oya/svc-dock/vitest.config.ts"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/oya/svc-dock",
        "command": "tsc --noEmit -p tsconfig.app.json"
      }
    }
  }
}
