-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ensapi",
"version": "1.5.1",
"private": true,
"type": "module",
"description": "ENSNode's ENS API",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/ensnode.git",
"directory": "apps/ensapi"
},
"homepage": "https://github.com/namehash/ensnode/tree/main/apps/ensapi",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch --env-file ./.env.local src/index.ts",
"test": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "biome check --write .",
"lint:ci": "biome ci",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@ensdomains/ensjs": "^4.0.2",
"@ensnode/datasources": "workspace:*",
"@ensnode/ensnode-schema": "workspace:*",
"@ensnode/ensnode-sdk": "workspace:*",
"@ensnode/ponder-subgraph": "workspace:*",
"@hono/node-server": "^1.19.5",
"@hono/otel": "^0.2.2",
"@hono/zod-openapi": "^1.2.2",
"@namehash/ens-referrals": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.202.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.202.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.202.0",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.34.0",
"@ponder/client": "catalog:",
"@ponder/utils": "catalog:",
"@pothos/core": "^4.10.0",
"@pothos/plugin-dataloader": "^4.4.3",
"@pothos/plugin-relay": "^4.6.2",
"@standard-schema/utils": "^0.3.0",
"dataloader": "^2.2.3",
"date-fns": "catalog:",
"drizzle-orm": "catalog:",
"graphql": "^16.11.0",
"graphql-yoga": "^5.16.0",
"hono": "catalog:",
"p-memoize": "^8.0.0",
"p-retry": "catalog:",
"pg-connection-string": "catalog:",
"pino": "catalog:",
"ponder-enrich-gql-docs-middleware": "^0.1.3",
"superjson": "^2.2.6",
"viem": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@ensnode/shared-configs": "workspace:*",
"@types/node": "catalog:",
"@types/prismjs": "^1.26.6",
"chalk": "^5.6.2",
"graphql-request": "^7.4.0",
"pino-pretty": "^13.1.2",
"prismjs": "^1.30.0",
"tsx": "^4.7.1",
"typescript": "catalog:",
"vitest": "catalog:"
}
}