{
  "name": "express-query-parser",
  "description": "A parser helps you parse request for your express server",
  "version": "1.3.3",
  "main": "dist/index.js",
  "author": "jackypan1989 <jackypan1989@gmail.com>",
  "keywords": [
    "express",
    "query",
    "parser",
    "query-parser"
  ],
  "license": "MIT",
  "scripts": {
    "lint": "lint-staged",
    "precommit": "yarn lint",
    "tsc": "tsc ./src/index.ts --noEmit --esModuleInterop",
    "tsc-build": "tsc ./src/index.ts --declaration --emitDeclarationOnly --esModuleInterop --outDir dist",
    "build": "ts-node esbuild.ts && yarn tsc-build",
    "start": "ts-node ./src/index.ts",
    "example:build": "cd example && yarn",
    "example:start": "cd example && yarn start"
  },
  "lint-staged": {
    "*": [
      "eslint --fix",
      "git add"
    ]
  },
  "dependencies": {
    "express": "^4.17.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.13",
    "@types/qs": "^6.9.7",
    "@types/ramda": "^0.27.45",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.0.0",
    "esbuild": "^0.13.4",
    "eslint": "^8.0.0",
    "jest": "^27.2.5",
    "lint-staged": "^11.2.3",
    "ts-node": "^10.3.0",
    "typescript": "^4.4.3"
  }
}