{
  "name": "@bellona/remote-gateway",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/bellona/remote-gateway/src",
  "projectType": "application",
  "tags": ["scope:bellona", "type:app", "layer:service", "surface:remote-control"],
  "targets": {
    "build": {
      "executor": "@nx/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "apps/bellona/remote-gateway/dist",
        "main": "apps/bellona/remote-gateway/src/main.ts",
        "tsConfig": "apps/bellona/remote-gateway/tsconfig.app.json",
        "packageJson": "apps/bellona/remote-gateway/package.json",
        "assets": ["apps/bellona/remote-gateway/README.md"]
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/bellona/remote-gateway",
        "command": "tsx watch src/main.ts"
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/bellona/remote-gateway",
        "command": "tsx src/main.ts"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/bellona/remote-gateway",
        "command": "tsx src/main.ts"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/bellona/remote-gateway",
        "command": "tsc --noEmit -p tsconfig.app.json"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["apps/bellona/remote-gateway/**/*.ts"]
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/bellona/remote-gateway",
        "command": "vitest run --config vitest.config.ts"
      }
    }
  }
}
