-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
53
54
55
56
57
58
59
{
"name": "dafka-consumer",
"version": "13.2.8",
"description": "Dockerized kafka consumer",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/osskit/dafka-consumer.git"
},
"author": "osskit",
"license": "MIT",
"bugs": {
"url": "https://github.com/osskit/dafka-consumer/issues"
},
"homepage": "https://github.com/osskit/dafka-consumer#readme",
"scripts": {
"pretest": "bazel build //src:image.tar && docker load -i bazel-bin/src/image.tar",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config tests/jest.config.ts --runInBand",
"format": "prettier --write '**/*.{ts,js,json,java}'",
"logs": "docker-compose -f tests/dafka.yml logs",
"prepare": "husky"
},
"dependencies": {
"@osskit/fetch-enhancers": "^4.1.0",
"@osskit/tsconfig": "^0.0.6",
"@osskit/wiremock-client": "^4.3.1",
"@testcontainers/kafka": "^10.15.0",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.149",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.16.3",
"@types/node-fetch": "^2.5.2",
"@types/uuid": "^3.4.4",
"delay": "^6.0.0",
"dockerode": "^4.0.2",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-config": "^29.3.1",
"js-sha256": "^0.11.0",
"kafka-node": "4.1.3",
"kafkajs": "^2.2.4",
"lint-staged": "^15.2.2",
"lodash": "^4.17.15",
"lodash-es": "^4.17.21",
"node-fetch": "^2.6.0",
"p-retry": "^5.1.2",
"prettier": "^2.3.2",
"prettier-plugin-java": "^2.1.0",
"testcontainers": "^10.15.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^1.10.0",
"typescript": "^5.0.4",
"uuid": "^3.3.2"
},
"lint-staged": {
"*.{ts,js,json,java}": "prettier --write"
}
}