forked from Gen-x-academy/chainVerse-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
79 lines (76 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "chainverse-backend",
"version": "1.0.0",
"description": "ChainVerse Academy is a decentralized Web3 education platform built on the Stellar blockchain",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"email:worker": "node src/utils/emailWorker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gen-x-academy/chainVerse-backend.git"
},
"author": "chainVerse Academy",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gen-x-academy/chainVerse-backend/issues"
},
"homepage": "https://github.com/Gen-x-academy/chainVerse-backend#readme",
"dependencies": {
"adm-zip": "^0.5.16",
"aws-sdk": "^2.1692.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.3",
"bullmq": "^5.53.1",
"canvas": "^3.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.17.3",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"isomorphic-dompurify": "^2.25.0",
"joi": "^17.13.3",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"node-cron": "^4.0.7",
"nodemailer": "^6.10.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"pdfkit": "^0.17.0",
"pg": "^8.16.0",
"pg-hstore": "^2.3.4",
"qrcode": "^1.5.4",
"redis": "^4.7.1",
"sanitize-html": "^2.17.0",
"sequelize": "^6.37.7",
"socket.io": "^4.8.1",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"keywords": [],
"devDependencies": {
"@types/supertest": "^6.0.3",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemailer": "^6.9.4",
"nodemon": "^3.1.10",
"supertest": "^7.1.0"
}
}