{
  "name": "express-ts-starter",
  "version": "0.3.0",
  "description": "Generate typescript express application",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "wspecs/express-ts-starter",
  "scripts": {
    "readme": "node ./node_modules/.bin/node-readme",
    "build:minify": "node dist/lib/minify.js --css --js --debug",
    "build:typescript": "tsc",
    "build": "rm -rf dist && tsc && npm run readme",
    "prod": "npm run build && node dist/index.js --instance prod",
    "dev": "npm run build:typescript && node dist/index.js --instance dev --debug",
    "test": "mocha ./dist/test/*.js",
    "watch": "nodemon",
    "start": "node dist/index.js --instance prod"
  },
  "nodemonConfig": {
    "ignore": [
      "**/*test.ts",
      "**/*spec.ts",
      ".git",
      "node_modules"
    ],
    "watch": [
      "lib",
      "index.ts"
    ],
    "exec": "npm run dev",
    "ext": "ts"
  },
  "bin": {
    "express-ts-starter": "bin/index.js"
  },
  "keywords": [
    "express-ts-starter"
  ],
  "author": {
    "name": "Wendly Saintil",
    "email": "wendlysaintil@gmail.com",
    "url": "https://twitter.com/wendlysaintil"
  },
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "^4.1.3",
    "@types/express": "^4.16.0",
    "@types/mocha": "^5.2.0",
    "@types/node": "^10.0.4",
    "chai": "^4.1.2",
    "mocha": "^5.1.1",
    "node-readme": "^0.1.9"
  },
  "dependencies": {
    "@decorators/di": "^1.0.2",
    "@decorators/express": "^2.3.0",
    "args-finder": "0.0.3",
    "commander": "^2.19.0",
    "dot-object": "^1.7.1",
    "express-starter-config": "^0.4.1",
    "great-logs": "0.0.4",
    "prompts": "^2.0.1",
    "shelljs": "^0.8.3",
    "walkdir": "0.0.12"
  }
}
