-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.37 KB
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
53
54
55
56
57
58
59
60
61
62
{
"name": "wayforge-backend",
"version": "1.0.0",
"description": "AI-Powered Learning Pathway Generation Backend",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"deploy": "npm run start"
},
"keywords": [
"learning",
"ai",
"pathways",
"education",
"personalization",
"adaptive learning"
],
"author": "Rushan Haque",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"compression": "^1.7.4",
"morgan": "^1.10.0",
"dotenv": "^16.3.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"redis": "^4.6.8",
"node-cron": "^3.0.3",
"axios": "^1.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.6",
"nodemailer": "^6.9.7",
"socket.io": "^4.7.4"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"@types/node": "^20.8.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rushanhaque/wayforge.git"
},
"bugs": {
"url": "https://github.com/rushanhaque/wayforge/issues"
},
"homepage": "https://wayforge.ai"
}