-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 920 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": "nestjs-kafka",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config ./test/jest.config.json",
"test:ci": "jest --config ./test/jest.config.json --ci",
"start": "nest start -c ./test/mock/nest-cli.json --watch"
},
"author": "Trí Võ",
"license": "ISC",
"dependencies": {
"@kafkajs/confluent-schema-registry": "^3.3.0",
"kafkajs": "^2.2.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.1.2",
"@nestjs/common": "^9.1.4",
"@nestjs/core": "^9.1.4",
"@nestjs/platform-express": "^9.1.4",
"@nestjs/testing": "^9.1.4",
"@types/supertest": "^2.0.12",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}