-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "lms",
"version": "1.0.0",
"description": "LMS using node express mongodb",
"main": "app.js",
"scripts": {
"test": "jest --watchAll=true --runInBand --detectOpenHandles",
"start": "nodemon run app.js",
"dev": "nodemon app.js"
},
"author": "Elijah Echekwu",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.3",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-fileupload": "^1.4.3",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^8.1.0",
"nodemailer": "^6.9.8",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"slugify": "^1.6.6",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/register": "^7.23.7",
"jest": "^29.7.0",
"nodemon": "^3.0.3"
}
}