-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "inventory-kafka-nodejs",
"version": "1.0.0",
"description": "NodeJS version of a kafka service.",
"main": "index.js",
"scripts": {
"production": "node server.js",
"start": "node server.js",
"test": "jest",
"dev": "nodemon server.js",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-garage-cloud/inventory-kafka-nodejs.git"
},
"keywords": [
"kafka",
"event-stream",
"inventory",
"cloud-native",
"toolkit"
],
"author": "Bryan Kribbs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ibm-garage-cloud/inventory-kafka-nodejs/issues"
},
"homepage": "https://github.com/ibm-garage-cloud/inventory-kafka-nodejs#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"kafkajs": "^1.15.0",
"node-config": "^0.0.2",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"standard": "^16.0.3",
"swagger-jsdoc": "6.1.0",
"swagger-ui": "^3.48.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"jest": "^26.6.3"
}
}