{
  "name": "root",
  "version": "0.0.1",
  "description": "",
  "author": "",
  "license": "UNLICENSED",
  "private": true,
  "packageManager": "yarn@1.22.22",
  "workspaces": [
    "apps/*",
    "packages/*"
  ],
  "scripts": {
    "dev": "concurrently -n backend,frontend \"yarn dev:backend\" \"yarn dev:frontend\"",
    "dev:backend": "yarn workspace backend start:dev",
    "dev:frontend": "yarn workspace frontend start:dev",
    "build": "yarn build:packages && yarn build:backend && yarn build:frontend",
    "build:backend": "yarn workspace backend build",
    "build:frontend": "yarn workspace frontend build",
    "build:packages": "yarn workspace @blueprint/hello-world build",
    "test": "yarn test:backend && yarn test:frontend",
    "test:backend": "yarn workspace backend test",
    "test:frontend": "yarn workspace frontend test",
    "lint": "yarn lint:backend",
    "lint:fix": "yarn lint:backend:fix",
    "lint:backend": "yarn workspace backend lint",
    "lint:backend:fix": "yarn workspace backend lint:fix",
    "format": "yarn format:backend && yarn format:frontend && yarn format:packages",
    "format:check": "yarn format:backend:check && yarn format:frontend:check && yarn format:packages:check",
    "format:backend": "yarn workspace backend format",
    "format:backend:check": "yarn workspace backend format:check",
    "format:frontend": "yarn workspace frontend format",
    "format:frontend:check": "yarn workspace frontend format:check",
    "format:packages": "yarn workspace @blueprint/hello-world format",
    "format:packages:check": "yarn workspace @blueprint/hello-world format:check",
    "codegen": "graphql-codegen --config codegen.yml",
    "prisma:generate": "yarn workspace backend prisma generate",
    "cleanup:smoke-users": "yarn workspace backend cleanup:smoke-users",
    "smoke:runtime": "node scripts/runtime-smoke.js",
    "smoke:browser:runtime-action-panel": "node ai/commands/runtime-action-panel-browser-smoke.mjs",
    "env:check": "node ai/commands/env-parity-check.mjs",
    "references:validate": "node ai/references/scripts/validate-framework-references.mjs"
  },
  "devDependencies": {
    "@graphql-codegen/cli": "^7.0.0",
    "@graphql-codegen/typescript": "^6.0.1",
    "@graphql-codegen/typescript-apollo-angular": "^5.0.1",
    "@graphql-codegen/typescript-operations": "^6.0.2",
    "concurrently": "^9.2.1",
    "graphql": "^16.14.0",
    "playwright": "1.59.1"
  }
}
