-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.1 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
{
"name": "notification-service",
"version": "1.0.0",
"description": "This repository contains the codebase for a notification system, designed for PME's photo editing and ordering app. Our notification system consists of several components working together to deliver notifications to users over three channels (SMS, Email, Push). The system is built using JavaScript and leverages cloud services for scalability and reliability.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProgrammingMadeEasy-Community/notification-service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProgrammingMadeEasy-Community/notification-service/issues"
},
"homepage": "https://github.com/ProgrammingMadeEasy-Community/notification-service#readme",
"dependencies": {
"@azure/service-bus": "^7.9.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mailgun": "^0.5.0",
"mongoose": "^8.2.4"
}
}