-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.93 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
{
"name": "beefy-lrt-api",
"version": "1.0.0",
"license": "gpl-3.0",
"private": true,
"scripts": {
"prepare": "husky",
"build": "tsc",
"start": "node build/src/index.js",
"dev": "ts-node-dev --require=dotenv/config src/index.ts",
"format": "biome check src/**/*.{ts,graphql}",
"format:fix": "biome check --write --unsafe src/**/*.{ts,graphql}",
"package:check": "ncu",
"package:fix": "ncu -u && npm install",
"postinstall": "npm --silent run codegen",
"codegen": "npx graphclient build",
"lint-staged": "lint-staged"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/etag": "^5.1.0",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/under-pressure": "^8.3.0",
"@graphprotocol/client-cli": "^3.0.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/lodash-es": "^4.17.12",
"async-lock": "^1.4.1",
"blockchain-addressbook": "^0.47.67",
"csv-stringify": "^6.5.0",
"date-fns": "^3.6.0",
"decimal.js": "^10.4.3",
"fastify": "^4.26.2",
"fluent-json-schema": "^4.2.1",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pino": "^8.19.0",
"viem": "^2.21.40"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/async-lock": "^1.4.2",
"@types/node": "^20.11.30",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"pino-pretty": "^11.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"engines": {
"node": "^20.10.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,graphql,json}": "biome format --write"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}