{
  "name": "koa",
  "version": "4.5.5",
  "private": true,
  "description": "Koa Example",
  "scripts": {
    "start": "npm run build && node lib/app.js",
    "dev": "nodemon --inspect lib/app.js",
    "watch": "tsbb watch --entry ./src/app.ts --no-esm",
    "build": "tsbb build --entry ./src/app.ts --no-esm --bail",
    "test": "tsbb test",
    "coverage": "tsbb test --coverage --bail"
  },
  "keywords": [],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jaywcjlove/tsbb/tree/master/example/koa"
  },
  "nodemonConfig": {
    "ignore": [
      "test/*",
      "node_modules/*"
    ],
    "delay": "2500"
  },
  "devDependencies": {
    "@types/koa": "^2.13.5",
    "nodemon": "~2.0.22",
    "tsbb": "4.5.5"
  },
  "dependencies": {
    "koa": "^2.14.1"
  }
}
