registration-js-vanilla/package.json

17 lines
385 B
JSON
Raw Permalink Normal View History

2023-09-11 11:13:41 +00:00
{
"name": "authentication-api",
"version": "1.0.0",
"description": "A secure RESTful API for user authentication with token-based authentication.",
"main": "server.js",
"scripts": {
"start": "node src/server.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^7.5.0"
}
}