-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "my-auth-project",
"version": "1.0.0",
"description": "Plug-and-play authentication module for Express.js",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"express",
"authentication",
"jwt",
"bcrypt"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.4.1",
"nodemailer": "^8.0.5",
"openai": "^6.34.0",
"zod": "^3.22.4"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}