-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "contracts-indexer",
"version": "1.1.2",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20.x"
},
"scripts": {
"dev": "tsx watch src/app.ts | pino-pretty",
"build": "tsc",
"start": "node dist/app.js",
"lint": "biome check .",
"lint:fix": "biome check . --write"
},
"author": {
"name": "Lumerin",
"email": "developer@lumerin.io",
"url": "https://lumerin.io"
},
"license": "MIT",
"copyright": "Copyright © 2025 Titan Industries (Global) Co. Ltd.",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/sensible": "^5.0.0",
"@fastify/type-provider-typebox": "^4.1.0",
"@sinclair/typebox": "^0.33.22",
"async-mutex": "^0.5.0",
"close-with-grace": "^2.2.0",
"contracts-js": "github:Lumerin-protocol/contracts-js#v2.0.7",
"env-schema": "^5.2.1",
"ethers": "^6.11.1",
"fastify": "^4.26.1",
"pino": "^9.6.0",
"viem": "^2.7.22"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.14.1",
"pino-pretty": "^13.0.0",
"selfsigned": "^2.4.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}