-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 907 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
32
33
34
{
"name": "bridge",
"version": "0.3.2",
"description": "Bridge is a communication interface between microservices with kafkajs and express.js.",
"main": "build/index.js",
"repository": "https://github.com/douglasrubims/Bridge.git",
"author": "Douglas Rubim <douglasrubims@gmail.com>",
"license": "MIT",
"private": false,
"types": "./src/@types/index.d.ts",
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"format": "npx @biomejs/biome format src --write"
},
"dependencies": {
"@types/uuid": "^9.0.1",
"axios": "^1.6.8",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@swc/core": "^1.3.46",
"@swc/wasm": "^1.3.46",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^18.15.11",
"typescript": "^5.0.3"
}
}