-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"name": "token-api",
"description": "Token API",
"version": "3.16.6",
"homepage": "https://github.com/pinax-network/token-api",
"license": "Apache-2.0",
"type": "module",
"authors": [
{
"name": "Etienne Donneger",
"email": "etienne@pinax.network",
"url": "https://github.com/0237h"
},
{
"name": "Denis Carriere",
"email": "denis@pinax.network",
"url": "https://github.com/DenisCarriere/"
},
{
"name": "Mathieu Lefebvre",
"email": "mathieu@pinax.network",
"url": "https://github.com/Matlefebvre1234/"
},
{
"name": "Yaro Shkvorets",
"email": "yaro@pinax.network",
"url": "https://github.com/YaroShkvorets/"
}
],
"scripts": {
"dev": "bun --watch index.ts",
"start": "bun index.ts",
"build": "bun build --compile index.ts --outfile token-api",
"test": "bun test --coverage",
"test:sql": "DB_TESTS=true bun test $(find src/routes -name '*.sql.spec.ts' | sort) --timeout 30000",
"test:perf": "DB_TESTS=true bun test $(find src/routes -name '*.perf.spec.ts' | sort) --timeout 30000",
"fix": "biome check --write --unsafe",
"lint": "bun run tsc --noEmit && biome check ."
},
"dependencies": {
"@clickhouse/client": "^1.12.0",
"@clickhouse/client-web": "^1.12.0",
"@hono/zod-validator": "^0.7.5",
"@pinax/graph-networks-registry": "^0.7.1",
"@web3icons/core": "^4.0.18",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"hono": "^4.8.12",
"hono-openapi": "^1.0.0",
"tslog": "^4.9.3",
"yaml": "^2.8.2",
"zod": "^4.0.15"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@types/bun": "^1.2.19",
"typescript": "^5.9.2"
}
}