-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.61 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
{
"name": "price-service",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config ./vitest.integration.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"migrate": "PGSSLMODE=require db-migrate up --config ./database.json --env dev",
"migrate:create": "db-migrate create --config ./database.json --sql-file --env dev",
"migrate:down": "PGSSLMODE=require db-migrate down --config ./database.json --env dev",
"warmup": "bun run scripts/warmup-prices.ts",
"backfill:token-address-checksums": "bun run scripts/backfill-token-address-checksums.ts",
"backfill:historical-gaps": "bun run scripts/backfill-historical-gaps.ts",
"replay:historical-gaps": "bun run scripts/replay-historical-gaps.ts",
"backfill:defillama-day-alignment": "bun run scripts/backfill-defillama-day-alignment.ts"
},
"dependencies": {
"@neondatabase/serverless": "0.10.4",
"dotenv": "16.6.1",
"viem": "2.47.6"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@cloudflare/workers-types": "4.20260329.1",
"@types/node": "22.19.15",
"@types/pg": "8.21.0",
"db-migrate": "0.11.14",
"db-migrate-pg": "1.5.2",
"pg": "8.20.0",
"typescript": "5.9.3",
"vitest": "4.1.5",
"wrangler": "4.78.0",
"yearn-configs": "git+https://github.com/yearn/yearn-configs.git#54c521bd45ad526fa5d57fbc223e3b4a4622099e"
}
}