-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "enterprise-backend",
"version": "1.0.0",
"description": "Production-grade enterprise Node.js backend",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"aws-sdk": "^2.1523.0",
"bcryptjs": "^2.4.3",
"bullmq": "^5.1.9",
"cloudinary": "^1.41.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"openai": "^4.24.1",
"pdf-parse": "^1.1.1",
"stripe": "^14.12.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.2.4",
"supertest": "^6.3.4"
}
}