{
  "name": "@lilith/staking-mechanism",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/lilith/svc-staking-mechanism/src",
  "projectType": "application",
  "tags": ["scope:lilith", "type:app", "layer:service"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/lilith/svc-staking-mechanism",
        "command": "tsc"
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/svc-staking-mechanism",
        "command": "tsx watch src/server.ts"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/lilith/svc-staking-mechanism",
        "command": "node dist/server.js"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint"
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/svc-staking-mechanism",
        "command": "vitest run"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "node tools/typecheck/ratchet.mjs --app apps/lilith/svc-staking-mechanism --tsconfig tsconfig.typecheck.json"
      }
    }
  }
}
