{
  "name": "crudity",
  "version": "2.0.13",
  "description": "A production ready CRUD backend server and node http middleware, working with files/mongodb/etc.",
  "bin": "./build/bin/crudity.js",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "files": [
    "build"
  ],
  "engines": {
    "node": ">=12"
  },
  "license": "ISC",
  "keywords": [
    "crud",
    "nodejs",
    "backend",
    "server",
    "http",
    "json",
    "express"
  ],
  "scripts": {
    "start": "npx nodemon src/bin/crudity.ts",
    "start:prod": "node build/src/bin/crudity.js",
    "test": "nyc mocha",
    "lint": "eslint .",
    "clean": "rimraf build",
    "compile": "tsc",
    "prepare": "npm run compile",
    "pretest": "npm run compile",
    "posttest": "npm run lint",
    "release": "standard-version",
    "build:schema": "typescript-json-schema --out schema/crudity.json ./src/interfaces/WebServerOptions.ts WebServerOptions"
  },
  "devDependencies": {
    "@types/cors": "^2.8.13",
    "@types/express": "^4.17.17",
    "@types/lodash": "^4.14.191",
    "@types/mocha": "^10.0.1",
    "@types/morgan": "^1.9.4",
    "@types/node": "^18.13.0",
    "@types/serve-index": "^1.9.1",
    "@typescript-eslint/eslint-plugin": "^5.52.0",
    "@typescript-eslint/parser": "^5.52.0",
    "eslint": "^8.34.0",
    "got": "^11.8.6",
    "mocha": "^10.2.0",
    "nodemon": "^2.0.20",
    "nyc": "^15.1.0",
    "rimraf": "^4.1.2",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.5"
  },
  "dependencies": {
    "cors": "^2.8.5",
    "express": "^4.18.2",
    "lodash": "^4.17.21",
    "mariadb": "^3.1.0",
    "mongodb": "^5.0.1",
    "morgan": "^1.10.0",
    "qs": "^6.11.0",
    "rxjs": "^7.8.0",
    "serve-index": "^1.9.1",
    "typescript-json-schema": "^0.55.0",
    "yaml": "^2.2.1"
  },
  "author": {
    "email": "jlguenego@gmail.com",
    "name": "Jean-Louis GUENEGO",
    "url": "https://jlg-consulting.com"
  }
}
