49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "user-auth",
|
|
"version": "1.0.0",
|
|
"description": "JWT-based user authentication service for template feature management",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"migrate": "node src/migrations/migrate.js",
|
|
"seed": "node src/seeders/seed.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.11.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.6.1",
|
|
"express": "^4.18.0",
|
|
"express-rate-limit": "^6.7.0",
|
|
"helmet": "^6.0.0",
|
|
"joi": "^17.7.0",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"morgan": "^1.10.0",
|
|
"nodemailer": "^7.0.5",
|
|
"pg": "^8.8.0",
|
|
"redis": "^4.6.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.20",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"authentication",
|
|
"jwt",
|
|
"user-management",
|
|
"express",
|
|
"postgresql"
|
|
],
|
|
"author": "Tech4biz Code Generator",
|
|
"license": "MIT"
|
|
}
|