-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "notification-service",
"version": "1.0.1",
"description": "This is a service to send email notification to the users of crm app",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node -r dotenv/config src/app.js",
"dev": "nodemon -r dotenv/config src/app.js"
},
"author": "Nilanjan Haldar",
"license": "ISC",
"dependencies": {
"helmet": "^8.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"path": "^0.12.7",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^13.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.9",
"prettier": "^3.4.2"
},
"engines": {
"node": ">=20.18.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nil2022/notification_service.git"
},
"keywords": [
"express",
"mongoose",
"node-cron",
"nodemailer",
"nodemon",
"dotenv",
"winston"
],
"bugs": {
"url": "https://github.com/nil2022/notification_service/issues"
},
"homepage": "https://github.com/nil2022/notification_service#readme"
}