{
  "name": "@oshun/v10-web",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/v10/web/src",
  "projectType": "application",
  "tags": ["scope:v10", "type:app", "platform:web"],
  "targets": {
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "next dev -p 3095 --hostname 127.0.0.1"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/out"],
      "options": {
        "cwd": "apps/v10/web",
        "command": "pnpm run build"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "eslint --no-warn-ignored src e2e playwright.config.ts playwright.pwa.config.ts vitest.config.ts tools"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "tsc --noEmit"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "vitest run --config vitest.config.ts"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "playwright test -c playwright.config.ts"
      }
    },
    "e2e:pwa": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/web",
        "command": "playwright test -c playwright.pwa.config.ts"
      }
    }
  }
}
