{
  "scripts": {
    "start": "node src/app.js",
    "dev": "nodemon src/app.js",
    "migrate": "sequelize-cli db:migrate",
    "migrate:undo": "sequelize-cli db:migrate:undo",
    "migrate:undo:all": "sequelize-cli db:migrate:undo:all",
    "migrate:refresh": "sequelize-cli db:migrate:undo:all && sequelize-cli db:migrate",
    "seed": "sequelize-cli db:seed:all",
    "seed:undo": "sequelize-cli db:seed:undo:all",
    "test": "jest --detectOpenHandles",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage"
  },
  "dependencies": {
    "@faker-js/faker": "^9.0.1",
    "bcryptjs": "^2.4.3",
    "body-parser": "^1.20.2",
    "cors": "^2.8.5",
    "dotenv": "^16.4.6",
    "express": "^4.19.2",
    "express-rate-limit": "^7.4.1",
    "http-status": "^1.8.1",
    "joi": "^17.13.3",
    "jsonwebtoken": "^9.0.2",
    "logger": "^0.0.1",
    "multer": "^1.4.5-lts.1",
    "nodemailer": "^6.9.14",
    "pg": "^8.12.0",
    "pg-hstore": "^2.3.4",
    "sequelize": "^6.37.3",
    "sequelize-cli": "^6.6.2",
    "swagger-jsdoc": "^6.2.8",
    "swagger-ui-express": "^5.0.0",
    "winston": "^3.17.0",
    "winston-daily-rotate-file": "^5.0.0"
  },
  "name": "auth-restapi-sequelize",
  "description": "Simple Nodejs RestAPI for the Authentication using PostgresSql with middleware -Register -Email Verification -Login with JWT token -Refresh Token -Reset Password",
  "version": "1.1.4",
  "main": "app.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ShreyTandel09/auth-api-postresSQL.git"
  },
  "keywords": [
    "Auth",
    "Sequelize",
    "Postgress",
    "JWT"
  ],
  "author": "Shrey Tandel",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/ShreyTandel09/auth-api-postresSQL/issues"
  },
  "homepage": "https://github.com/ShreyTandel09/auth-api-postresSQL#readme",
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "cross-env": "^7.0.3",
    "jest": "^29.7.0",
    "supertest": "^6.3.4"
  }
}
