-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
37 lines (37 loc) · 1004 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
35
36
37
{
"name": "farcaster-indexer",
"author": "Greg Skriloff",
"license": "ISC",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "tsc && node ./dist/index.js",
"dev": "tsc && node ./dist/index.js",
"backfill": "tsc && node ./dist/index.js --backfill",
"kysely:migrate": "tsc && node ./dist/db/migrator.js"
},
"dependencies": {
"@bull-board/express": "^5.16.0",
"@farcaster/hub-nodejs": "^0.11.0",
"bullmq": "^5.7.6",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.4",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"kysely": "^0.27.2",
"pg": "^8.11.3",
"pg-pool": "^3.6.1",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@types/pg-pool": "^2.0.6",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}