-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
83 lines (83 loc) · 2.88 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
{
"name": "beefy-bi",
"scripts": {
"test": "LOG_LEVEL=error TZ=UTC jest --maxConcurrency=1",
"build": "tsc",
"infra:start": "cd ./deploy && docker compose -p dev-databarn -f docker-compose.dev.yml up -d",
"infra:logs": "cd ./deploy && docker compose -p dev-databarn -f docker-compose.dev.yml logs -f",
"infra:stop": "cd ./deploy && docker compose -p dev-databarn -f docker-compose.dev.yml down",
"grafana:open": "open http://localhost:3000",
"pg:console": "docker exec -it dev-databarn-timescaledb-1 psql -U beefy",
"db:migrate": "TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true ts-node ./src/script/run.ts db:migrate",
"redis:console": "docker exec -it dev-databarn-redis-1 redis-cli",
"redis:clear": "docker exec -it dev-databarn-redis-1 redis-cli flushall",
"test:outdated": "ncu",
"test:unused-exports": "ts-unused-exports ./tsconfig.json",
"test:all": "npm run build && npm run test && npm run test:unused-exports",
"test:ts": "tsc --noEmit"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@types/async-lock": "^1.4.0",
"@types/deep-freeze": "^0.1.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.7",
"@types/pg": "^8.6.6",
"@types/pg-format": "^1.0.2",
"@types/uuid": "^9.0.1",
"@types/yargs": "^17.0.23",
"deep-freeze": "^0.0.1",
"jest": "^29.5.0",
"npm-check-updates": "^16.8.0",
"pino-pretty": "^10.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-unused-exports": "^9.0.4",
"typescript": "^5.0.2"
},
"dependencies": {
"@fastify/auth": "^4.3.0",
"@fastify/awilix": "^3.0.1",
"@fastify/bearer-auth": "^9.0.0",
"@fastify/caching": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/helmet": "^10.1.0",
"@fastify/postgres": "^5.2.0",
"@fastify/rate-limit": "^8.0.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@fastify/under-pressure": "^8.2.0",
"abstract-cache": "^1.0.1",
"abstract-cache-redis": "^2.0.0",
"async-lock": "^1.4.0",
"axios": "^1.3.4",
"blockchain-addressbook": "^0.47.106",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"ethereum-multicall": "^2.16.1",
"ethers": "^5.7.2",
"exponential-backoff": "^3.1.1",
"fastify": "^4.15.0",
"fluent-json-schema": "^4.1.0",
"ioredis": "^5.3.1",
"json-schema-to-ts": "^2.7.2",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pg": "^8.10.0",
"pg-connection-string": "^2.5.0",
"pg-format": "^1.0.4",
"pino": "^8.11.0",
"prettier": "^2.8.7",
"read-last-lines": "^1.8.0",
"redis": "^4.6.5",
"redlock": "^5.0.0-beta.2",
"rxjs": "^7.8.0",
"simple-git": "^3.17.0",
"uuid": "^9.0.0",
"viem": "^2.21.55",
"yargs": "^17.7.1"
}
}