{
  "name": "p2p-painel",
  "version": "0.1.0",
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "tsc -p tsconfig.build.json",
    "build:web": "npm --prefix web install && npm --prefix web run build",
    "build:all": "npm run build && npm run build:web",
    "dev": "node --env-file=.env --import tsx --watch src/main.ts",
    "start": "node --env-file=.env --import tsx src/main.ts",
    "start:prod": "node --env-file=.env dist/main.js",
    "worker:pricing": "node --env-file=.env --import tsx src/workers/pricing.ts",
    "worker:chat": "node --env-file=.env --import tsx src/workers/chat.ts",
    "migrate": "node --env-file=.env --import tsx scripts/migrate.ts",
    "smoke:infra": "node --env-file=.env --import tsx scripts/smoke-infra.ts",
    "create-user": "node --env-file=.env --import tsx scripts/create-user.ts",
    "test:account": "node --env-file=.env --import tsx scripts/test-binance-account.ts"
  },
  "dependencies": {
    "@fastify/cors": "^10.0.1",
    "@fastify/jwt": "^10.1.0",
    "@fastify/static": "^9.1.3",
    "fastify": "^5.1.0",
    "fastify-plugin": "^5.0.1",
    "ioredis": "^5.4.1",
    "mysql2": "^3.11.4",
    "undici": "^6.21.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/node": "^25.9.1",
    "tsx": "^4.19.2",
    "typescript": "^6.0.3"
  }
}
