{
  "name": "metis-admin",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/metis/admin/src",
  "projectType": "application",
  "tags": ["scope:metis", "type:app", "platform:web"],
  "targets": {
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/admin",
        "command": "next dev -p 3021"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/.next"],
      "options": {
        "cwd": "apps/metis/admin",
        "command": "next build --webpack"
      },
      "configurations": {
        "production": {
          "command": "NODE_ENV=production next build --webpack"
        },
        "development": {
          "command": "next build --webpack --debug"
        }
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/metis/admin",
        "command": "next start -p 3021"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/admin",
        "command": "npx eslint src"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "node tools/typecheck/ratchet.mjs --app apps/metis/admin --tsconfig tsconfig.typecheck.json"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/admin",
        "command": "vitest run"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/admin",
        "command": "playwright test"
      }
    }
  }
}
