auth/package.json

29 lines
652 B
JSON

{
"name": "farm-auth-service",
"version": "1.0.0",
"description": "Auth service for farm app (OTP + JWT)",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ssm": "^3.948.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"redis": "^4.7.0",
"twilio": "^5.10.6"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}