-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 875 Bytes
/
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
{
"name": "node-apache-kafka-api",
"version": "1.0.0",
"description": "Node.js API with Apache Kafka",
"main": "index.js",
"scripts": {
"up": "docker-compose up",
"start:server": "node src/main/server.js",
"start:consumer": "node src/main/consumer.js",
"start:dev": "nodemon src/main/server.js",
"start-consumer:dev": "nodemon src/main/consumer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardopliski/node-apache-kafka.git"
},
"author": "Leonardo Pliskieviski",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardopliski/node-apache-kafka/issues"
},
"homepage": "https://github.com/leonardopliski/node-apache-kafka#readme",
"dependencies": {
"axios": "^0.24.0",
"express": "^4.17.1",
"kafkajs": "^1.15.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}