{
  "name": "<%= projectName %>",
  "version": "0.0.1",
  "description": "<%= projectName %>",
  "main": "dist/index.js",
  "scripts": {
    "init": "lerna bootstrap && lerna run build",
    "lint": "lerna run lint",
    "fmt": "prettier --write 'packages/**/*.{ts,tsx}'",
    "build": "lerna run build",
    "dev": "lerna run dev --parallel",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "bump": "lerna version --no-push --no-commit-hooks",
    "pub": "lerna run pub --no-bail",
    "new": "create-lerna-app add-module",
    "prune": "create-lerna-app clean"
  },
  "author": "<%= author %>",
  "license": "ISC",
  "devDependencies": {
    "create-lerna-app": "*",
    "@types/jest": "^24.0.15",
    "chalk": "^2.4.2",
    "husky": "^3.0.0",
    "lerna": "^3.15.0",
    "inquirer": "^6.5.0",
    "fs-extra": "^8.1.0",
    "globby": "^10.0.1",
    "lint-staged": "^9.0.2",
    "lodash.template": "^4.5.0",
    "prettier": "^1.17.1",
    "ts-jest": "^24.0.2",
    "jest": "^24.8.0",
    "tslint": "^5.17.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.5.1",
    "mocha": "^6.0.2",
    "ts-node": "^8.0.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "lerna run lint",
      "prettier --write 'packages/**/*.{ts,tsx}'",
      "git add"
    ]
  }
}
