-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "training-platform-backend",
"version": "1.0.0",
"description": "A backend for a training and course platform built with Express.js. Provides APIs for managing courses, blogs, users, authentication, and CMS.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahboube89/Training-Platform-Backend.git"
},
"keywords": [
"express",
"nodejs",
"expressjs",
"backend",
"API",
"mongoDB",
"training",
"courses",
"blog",
"education",
"JWT",
"RESTful API",
"learning-platform",
"user-management"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahboube89/Training-Platform-Backend/issues"
},
"homepage": "https://github.com/mahboube89/Training-Platform-Backend#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"fastest-validator": "^1.19.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"slugify": "^1.6.6",
"validator": "^13.12.0"
}
}