-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
53
54
55
56
57
58
{
"name": "ekkozulu-backend",
"version": "1.5.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"keywords": [],
"author": "Undermilli",
"license": "ISC",
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"@sendgrid/mail": "^8.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-rate-limit": "^7.1.5",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"moment-timezone": "^0.5.43",
"mongoose": "^7.4.1",
"mongoose-paginate": "^5.0.3",
"nanoid": "^3.0.0",
"nodemailer": "^6.9.7",
"openai": "^4.47.1",
"otp-generator": "^4.0.1",
"request-ip": "^3.3.0",
"socket.io": "^4.7.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"winston-mongodb": "^5.1.1"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
}
}