{
  "name": "zeppelin",
  "version": "0.0.1",
  "description": "",
  "private": true,
  "scripts": {
    "test": "jest src",
    "start-dev": "ts-node src/index.ts",
    "start-watch": "nodemon",
    "format": "prettier --write \"./**/*.ts\"",
    "typeorm": "ts-node ./node_modules/typeorm/cli.js",
    "build": "rimraf dist && tsc",
    "start-prod": "cross-env NODE_ENV=production node dist/index.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@types/lodash.at": "^4.6.3",
    "@types/moment-timezone": "^0.5.6",
    "ajv": "^6.7.0",
    "cross-env": "^5.2.0",
    "dotenv": "^4.0.0",
    "emoji-regex": "^7.0.1",
    "eris": "github:abalabahaha/eris#dev",
    "escape-string-regexp": "^1.0.5",
    "humanize-duration": "^3.15.0",
    "js-yaml": "^3.13.1",
    "knub": "^20.0.0",
    "last-commit-log": "^2.1.0",
    "lodash.at": "^4.6.0",
    "lodash.chunk": "^4.2.0",
    "lodash.difference": "^4.5.0",
    "lodash.has": "^4.5.2",
    "lodash.intersection": "^4.4.0",
    "lodash.isequal": "^4.5.0",
    "moment-timezone": "^0.5.21",
    "mysql": "^2.16.0",
    "reflect-metadata": "^0.1.12",
    "tlds": "^1.203.1",
    "tmp": "0.0.33",
    "ts-node": "^3.3.0",
    "typeorm": "^0.2.14",
    "typescript": "^3.3.3333",
    "uuid": "^3.3.2"
  },
  "devDependencies": {
    "@babel/core": "^7.3.4",
    "@babel/preset-env": "^7.3.4",
    "@babel/preset-typescript": "^7.3.3",
    "@types/jest": "^24.0.11",
    "@types/node": "^10.12.0",
    "@types/tmp": "0.0.33",
    "babel-jest": "^24.5.0",
    "husky": "^1.3.1",
    "jest": "^24.5.0",
    "lint-staged": "^8.1.5",
    "nodemon": "^1.17.5",
    "prettier": "^1.16.4",
    "rimraf": "^2.6.2",
    "tslint": "^5.13.1",
    "tslint-config-prettier": "^1.18.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "git add"
    ]
  }
}