UNPKG

@wikiccu/nest-auth

Version:

A comprehensive authentication package for NestJS applications with Prisma and PostgreSQL

88 lines (87 loc) 2.39 kB
{ "name": "@wikiccu/nest-auth", "version": "2.0.2", "description": "A comprehensive authentication package for NestJS applications with Prisma and PostgreSQL", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE", "postman-collection.json", "API_DOCUMENTATION.md" ], "scripts": { "build": "tsc", "build:package": "bash scripts/build.sh", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "export-postman": "node scripts/export-postman.js", "prepublishOnly": "npm run build:package" }, "keywords": [ "nestjs", "authentication", "jwt", "prisma", "postgresql", "auth", "login", "register", "password-reset", "email-verification" ], "author": "WikiCCU Team", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/wikiccu/nest-auth.git" }, "bugs": { "url": "https://github.com/wikiccu/nest-auth/issues" }, "homepage": "https://github.com/wikiccu/nest-auth#readme", "peerDependencies": { "@nestjs/common": ">=11.0.0", "@nestjs/core": ">=11.0.0", "@nestjs/jwt": ">=11.0.0", "@nestjs/passport": ">=11.0.0", "@nestjs/config": ">=4.0.0", "@nestjs/swagger": ">=8.0.0", "@prisma/client": ">=5.0.0", "bcryptjs": ">=2.4.3", "class-transformer": ">=0.5.1", "class-validator": ">=0.14.0", "nodemailer": ">=6.9.0", "passport": ">=0.7.0", "passport-jwt": ">=4.0.1", "passport-local": ">=1.0.0", "prisma": ">=5.0.0", "rxjs": ">=7.8.0" }, "devDependencies": { "@nestjs/testing": "^11.0.0", "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@types/passport-jwt": "^3.0.9", "@types/passport-local": "^1.0.35", "@types/bcryptjs": "^2.4.2", "@types/nodemailer": "^6.4.8", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.0", "jest": "^29.7.0", "prettier": "^3.2.0", "ts-jest": "^29.1.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18.0.0" } }