-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "node-shared-module",
"version": "1.0.0",
"description": "Tips and tricks how to create shared modules between service",
"scripts": {
"cleanup": "rimraf dist",
"compiler": "tsc",
"build": "npm run cleanup && npm run compiler",
"pkg:build": "./node_modules/.bin/lerna run build",
"fetch": "node ./dist/axios/index.js",
"kafka:pub": "node ./dist/kafka/publisher.js",
"kafka:sub": "node ./dist/kafka/subscriber.js",
"rabbitmq:pub": "node ./dist/kafka/publisher.js",
"rabbitmq:sub": "node ./dist/kafka/subscriber.js"
},
"repository": {
"type": "git",
"url": "https://github.com/restuwahyu13/node-shared-modules"
},
"keywords": [
"shared module",
"kafkajs",
"rabbitmq",
"nodejs",
"typescript",
"javascript"
],
"author": "restuwahyu13",
"license": "MIT",
"dependencies": {
"@rebel/axios": "file:./packages/axios",
"@rebel/kafka": "file:./packages/kafka",
"@rebel/rabbitmq": "file:./packages/rabbitmq",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^17.0.35",
"@types/prettier": "^2.6.1",
"@types/rimraf": "^3.0.2",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}