-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 893 Bytes
/
package.json
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
37
38
39
{
"name": "back-end",
"version": "1.9.0",
"description": "Node.js + MongoDb: JWT Auth + Manage Appointments",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"node.js",
"jwt",
"authentication",
"mongodb"
],
"author": "Claude-47",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.1",
"mongoose-paginate-v2": "^1.7.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nodemon": "^2.0.22",
"serve-favicon": "^2.5.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
}
}