-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
46
47
48
{
"name": "futarchy-external-api",
"module": "index.ts",
"type": "module",
"private": true,
"version": "2.0.0",
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "8.20.0",
"@types/supertest": "7.2.0"
},
"scripts": {
"dev": "bun --watch src/main.ts",
"build": "tsc",
"start": "bun dist/main.js",
"prestart": "bun run build",
"test": "bun test",
"backfill": "bun run scripts/backfill.ts",
"backfill:daily": "bun run scripts/backfill.ts daily",
"backfill:hourly": "bun run scripts/backfill.ts hourly",
"backfill:ten-minute": "bun run scripts/backfill.ts ten-minute",
"backfill:v06": "bun run scripts/backfillV06.ts",
"safe-update": "bun run scripts/safe-update.ts",
"safe-update:dry": "bun run scripts/safe-update.ts --dry-run",
"compare:dune-vs-v06": "bun run scripts/compareDuneVsV06.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@coral-xyz/anchor": "0.32.1",
"@metadaoproject/programs": "0.1.0-alpha.2",
"@solana/spl-token": "0.4.14",
"@solana/web3.js": "1.98.4",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"bn.js": "5.2.2",
"dotenv": "17.3.1",
"express": "5.1.0",
"nodemon": "3.1.14",
"pg": "8.20.0",
"prom-client": "15.1.3",
"supertest": "7.2.2",
"ts-node": "10.9.2"
}
}