{
  "name": "@ctt/crud-api",
  "version": "1.0.0-rc.1.8.10",
  "description": "A microservice boilerplate",
  "main": "lib/index.js",
  "scripts": {
    "bootstrap": "nodemon --delay 250ms --exec NODE_ENV=development ts-node -- src/bootstrap.ts",
    "prebuild": "yarn clean",
    "build": "tsc",
    "postbuild": "yarn prettify:lib",
    "build:watch": "yarn run build --watch src",
    "clean": "rm -rf lib/*",
    "dev": "nodemon --delay 250ms --exec NODE_ENV=development ts-node -- src/index.ts",
    "lint": "eslint 'src/**/**/*.ts'",
    "lint:ci": "eslint 'src/**/*.ts' --format junit -o test/reports/junit/js-lint-results.xml",
    "prepublish": "NODE_ENV=production yarn build",
    "pretest": "yarn lint",
    "prettify:lib": "prettier --write 'lib/**/**/**.*s'",
    "start": "node lib/index.js",
    "test": "jest --runInBand",
    "test:ci": "jest --coverage --reporters=default --reporters=jest-junit --coverageReporters=text-lcov | coveralls",
    "test:watch": "yarn test --watch",
    "validate": "npm ls"
  },
  "jest-junit": {
    "outputDirectory": "./test/reports/junit",
    "outputName": "./js-test-results.xml"
  },
  "devDependencies": {
    "@types/convict": "4.2.1",
    "@types/hapi-pino": "5.2.0",
    "@types/joi": "14.3.4",
    "@types/node": "16.11.7",
    "@types/hapi__hapi": "20.0.10",
    "@types/jest": "25.1.3",
    "@typescript-eslint/eslint-plugin": "2.20.0",
    "@typescript-eslint/parser": "2.20.0",
    "@typescript-eslint/typescript-estree": "2.30.0",
    "coveralls": "3.0.9",
    "eslint": "6.8.0",
    "eslint-config-prettier": "6.10.0",
    "eslint-plugin-import": "2.2.0",
    "eslint-plugin-jest": "23.8.2",
    "eslint-plugin-prettier": "3.1.2",
    "factory-girl": "5.0.4",
    "hapi-auth-jwt2": "8.1.0",
    "husky": "4.2.3",
    "jest": "25.1.0",
    "jest-junit": "10.0.0",
    "lint-staged": "10.0.8",
    "nodemon": "2.0.2",
    "prettier": "1.19.1",
    "ts-jest": "25.2.1",
    "ts-node": "10.7.0",
    "typescript": "4.6.3"
  },
  "dependencies": {
    "@hapi/hapi": "20.2.1",
    "@hapi/inert": "6.0.5",
    "@hapi/vision": "6.1.0",
    "convict": "4.3.1",
    "dotenv": "6.0.0",
    "fast-json-stringify": "2.0.0",
    "hapi-pino": "9.1.2",
    "hapi-require-https": "5.0.0",
    "hapi-swagger": "14.2.4",
    "joi": "17.6.0",
    "knex": "0.19.5",
    "mongoose": "6.3.1",
    "mysql": "2.15.0",
    "pino-pretty": "7.5.1",
    "ramda": "0.25.0",
    "uuid": "3.2.1"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:craftturf/crud-api.git.git#master"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "yarn run test"
    }
  },
  "lint-staged": {
    "**/*.{js, tsx, ts}": [
      "eslint --fix",
      "yarn test"
    ]
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "author": "npm@craftturf.com",
  "license": "SEE LICENSE IN <LICENSE>"
}
