-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "kafka-producer",
"version": "1.0.6",
"description": "Kafka producer app",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "nodemon --experimental-modules index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Siddharth Rawat <[email protected]>, Rishab Agarwal <[email protected]>, Karan Wadhwa <[email protected]>",
"license": "MIT",
"private": "true",
"dependencies": {
"app-root-path": "^3.1.0",
"dotenv": "^16.3.1",
"kafkajs": "^2.2.4",
"winston": "^3.11.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
}
}