-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 946 Bytes
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
{
"name": "kafka-node-project",
"version": "1.0.0",
"description": "A professional, application-oriented Kafka project using Node.js, Zookeeper, and Docker for real-time event streaming.",
"main": "index.js",
"scripts": {
"test": "jest",
"create:topics": "node topics/createTopics.js",
"start:producer": "node producer/eventProducer.js",
"start:notification": "node consumer/notificationConsumer.js",
"start:logging": "node consumer/loggingConsumer.js",
"start:analytics": "node consumer/analyticsConsumer.js",
"start:db": "node consumer/dbConsumer.js",
"start:bridge": "node server/websocketBridge.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.3.1",
"express": "^4.22.1",
"jest": "^29.7.0",
"kafkajs": "^2.2.4",
"pg": "^8.20.0",
"socket.io": "^4.8.3",
"zod": "^3.25.76"
}
}