-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 985 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 985 Bytes
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
{
"name": "kafka-postgres-ingestion",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"consume": "bun src/consumer/index.ts",
"db:gen": "drizzle-kit generate",
"db:drop": "drizzle-kit drop",
"db:migrate": "drizzle-kit migrate",
"produce": "bun src/producer/index.ts"
},
"dependencies": {
"@faker-js/faker": "^10.2.0",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"env-var": "^7.5.0",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"p-queue": "^9.1.0",
"pg": "^8.17.1",
"pino": "^10.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.9",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.0",
"prettier-plugin-packagejson": "^2.5.21",
"prettier-plugin-sort-json": "^4.2.0"
},
"peerDependencies": {
"typescript": "^5"
}
}