-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
103 lines (103 loc) · 3.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gitcoin-indexer",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/src/indexer/index.js",
"types": "dist/src/indexer/index.d.ts",
"scripts": {
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts --http --indexer --http-wait-for-sync=false",
"build": "tsc",
"lint": "eslint src && prettier --check src",
"format": "prettier --write src",
"test": "vitest run --reporter verbose",
"test:watch": "vitest watch --reporter verbose",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"deploy:development": "docker buildx build . --platform=linux/amd64 -t registry.fly.io/indexer-development:latest && docker push registry.fly.io/indexer-development:latest && flyctl -c fly.development.toml --app indexer-development deploy -i registry.fly.io/indexer-development:latest"
},
"imports": {
"#abis/*": {
"default": "./src/indexer/abis/*"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pro": "^1.0.4",
"@isaacs/ttlcache": "^1.4.1",
"@sentry/node": "^7.51.0",
"@teamawesome/tiny-batch": "^1.0.7",
"async-retry": "^1.3.3",
"better-sqlite3": "^8.6.0",
"chainsauce": "github:gitcoinco/chainsauce#main",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"diskstats": "^0.1.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"fastq": "^1.15.0",
"fetch-retry": "^5.0.6",
"hot-shots": "^10.0.0",
"into-stream": "^8.0.0",
"kysely": "^0.26.3",
"level": "^8.0.0",
"lru-cache": "^10.1.0",
"make-fetch-happen": "^11.1.1",
"multer": "^1.4.5-lts.1",
"node-worker-threads-pool": "^1.5.1",
"pg": "^8.11.3",
"pino": "^8.14.1",
"pino-http": "^8.5.1",
"pino-pretty": "^10.0.1",
"pluralistic": "github:gitcoinco/pluralistic.js#322323c7440db955966f3cf523bbb84ca60894f9",
"postgraphile": "^4.13.0",
"postgraphile-plugin-connection-filter": "^2.3.0",
"postgres": "^3.4.3",
"serve-index": "^1.9.1",
"sleep-promise": "^9.1.0",
"split2": "^4.2.0",
"statuses-bitmap": "github:gitcoinco/statuses-bitmap#f123d7778e42e16adb98fff2b2ba18c0fee57227",
"stream-to-string": "^1.2.1",
"throttle-debounce": "^5.0.0",
"tmp": "^0.2.1",
"ts-essentials": "^9.4.1",
"ts-is-present": "^1.2.2",
"viem": "^1.16.4",
"write-file-atomic": "^5.0.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/better-sqlite3": "^7.6.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/make-fetch-happen": "^10.0.1",
"@types/memory-cache": "^0.2.2",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.3",
"@types/pg": "^8.10.9",
"@types/serve-index": "^1.9.1",
"@types/split2": "^4.2.0",
"@types/supertest": "^2.0.12",
"@types/throttle-debounce": "^5.0.0",
"@types/tmp": "^0.2.3",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"concurrently": "^8.2.0",
"eslint": "^8.36.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"lefthook": "^1.4.8",
"prettier": "^3.0.1",
"supertest": "^6.3.3",
"tsx": "^3.12.7",
"typescript": "^5.2.2",
"vitest": "0.34.5"
}
}