nestjs-auth-kit
Version:
A modular and flexible authentication kit for NestJS with JWT, social login, OTP, and password reset.
58 lines (57 loc) • 1.46 kB
JSON
{
"name": "nestjs-auth-kit",
"version": "1.4.6",
"description": "A modular and flexible authentication kit for NestJS with JWT, social login, OTP, and password reset.",
"author": "GalatexSolutions",
"license": "MIT",
"repository": "https://github.com/galatexsolutions/nestjs-auth-kit",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"keywords": [
"nestjs",
"authentication",
"jwt",
"oauth",
"oauth2",
"rbac",
"otp",
"password-reset",
"nestjs-auth",
"nestjs-oauth",
"auth",
"auth-kit"
],
"dependencies": {
"@nestjs/common": "^11.0.10",
"@nestjs/core": "^11.0.10",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/typeorm": "^11.0.0",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.0.0",
"nodemailer": "^6.0.0",
"otplib": "^12.0.0",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/passport": "^1.0.0",
"@types/passport-facebook": "^3.0.0",
"@types/passport-google-oauth20": "^2.0.0",
"@types/passport-jwt": "^4.0.1",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}