-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "substreams-sink-clickhouse",
"version": "0.3.10",
"description": "Substreams Clickhouse Sink",
"type": "module",
"homepage": "https://github.com/pinax-network/substreams-sink-clickhouse",
"license": "MIT",
"authors": [
{
"name": "Julien",
"email": "[email protected]",
"url": "https://github.com/JulienR1"
},
{
"name": "Denis Carriere",
"email": "[email protected]",
"url": "https://github.com/DenisCarriere/"
}
],
"scripts": {
"start": "bun index.ts",
"dev": "bun --watch index.ts",
"pretest": "bunx tsc --noEmit",
"test": "bun test",
"bench": "bun src/**/*.bench.ts",
"build": "bun build --compile ./index.ts --outfile substreams-sink-clickhouse"
},
"dependencies": {
"@clickhouse/client-web": "latest",
"@substreams/sink-database-changes": "^0.3.5",
"@substreams/sink-entity-changes": "^0.3.5",
"commander": "latest",
"dotenv": "latest",
"graphql": "latest",
"log-update": "latest",
"openapi3-ts": "latest",
"p-queue": "latest",
"prom-client": "latest",
"substreams-sink-webhook": "^0.9.2",
"tslog": "latest",
"zod": "latest",
"zod-to-json-schema": "latest"
},
"devDependencies": {
"@types/bun": "latest",
"mitata": "latest",
"typescript": "latest"
}
}