-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
37 lines (37 loc) · 953 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": "@usecannon/indexer",
"version": "2.20.0",
"description": "Injects Cannon data from raw data sources into Redis",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./dist",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/usecannon/cannon.git",
"directory": "packages/indexer"
},
"dependencies": {
"@usecannon/builder": "workspace:*",
"@usecannon/cli": "workspace:*",
"@usecannon/repo": "workspace:*",
"bullmq": "^5.31.2",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"lodash": "^4.17.21",
"redis": "^4.6.13",
"viem": "^2.21.15"
},
"devDependencies": {
"@types/connect-busboy": "^1.0.3",
"@types/lodash": "^4.14.202",
"@types/morgan": "^1.9.9",
"ts-node": "^10.9.2"
}
}