-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.94 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
60
61
{
"name": "@farcaster/replicator",
"version": "0.3.0",
"description": "Replicate Farcaster hub data into Postgres",
"author": "",
"license": "",
"private": true,
"type": "commonjs",
"bugs": {
"url": "https://github.com/farcasterxyz/hub-monorepo/issues"
},
"homepage": "https://github.com/farcasterxyz/hub-monorepo/blob/main/apps/replicator/README.md",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"lint": "biome format src/ --write && biome check src/ --apply",
"preconsole": "npm run build",
"console": "node ./build/app.js console",
"premigrate": "npm run build",
"migrate": "node ./build/app.js migrate",
"prestart": "npm run build",
"start": "node ./build/app.js start",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@bull-board/api": "^5.8.4",
"@bull-board/fastify": "^5.8.4",
"@commander-js/extra-typings": "^11.0.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@farcaster/fishery": "^2.2.3",
"@farcaster/hub-nodejs": "^0.11.0",
"bullmq": "^4.11.4",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"ethers": "^6.11.0",
"fastify": "^4.23.2",
"fastq": "^1.15.0",
"hot-shots": "^10.0.0",
"humanize-duration": "^3.30.0",
"ioredis": "^5.3.2",
"kysely": "^0.26.3",
"pg": "^8.11.3",
"pg-cursor": "^2.10.3",
"pino": "^8.12.1",
"pino-pretty": "^10.0.0",
"protobufjs": "^7.2.6",
"sql-formatter": "^13.0.0",
"tiny-typed-emitter": "^2.1.0",
"viem": "^1.12.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/humanize-duration": "^3.27.1",
"@types/pg": "^8.10.3",
"@types/pg-cursor": "^2.7.0",
"tsx": "~3.12.5",
"typescript": "^5.2.2"
}
}