-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 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
29
{
"name": "notification-system",
"version": "1.0.0",
"description": "HNG Task 4 - Distributed Notification System with Microservices",
"scripts": {
"setup": "bash infrastructure/scripts/setup.sh",
"dev": "docker-compose up",
"dev:build": "docker-compose up --build",
"down": "docker-compose down",
"clean": "bash infrastructure/scripts/cleanup.sh",
"logs": "docker compose logs -f",
"gateway": "cd services/api-gateway && npm run dev",
"email": "cd services/email-service && npm run start:dev",
"user": "cd services/user-service && npm run start:dev",
"push": "cd services/push-service && python main.py",
"template": "cd services/template-service && python main.py"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeEnthusiast09/notification-system/issues"
},
"homepage": "https://github.com/CodeEnthusiast09/notification-system#readme",
"dependencies": {
"redis-cli": "^2.1.2"
}
}