-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.13 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
77
78
{
"name": "clearmacro-provider",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.18.0+sha512.33d83c77da82f49fba836925c6f1b841181ec3132b670639bd012f7075f5c7cf634c5f870147c19aae7478fac01df09d8892e880454896edd23ee9b33757563c",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/src/main.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:ci": "pnpm run test:fixtures:build && vitest run",
"test:fixtures:build": "forge build --root test/fixtures/contracts",
"test:e2e": "vitest run test/e2e/relay-api.e2e.test.ts",
"test:e2e:stack": "RUN_STACK_E2E=1 vitest run test/e2e/relay-stack.e2e.test.ts",
"test:unit": "vitest run test/unit",
"test:integration": "pnpm run test:fixtures:build && vitest run test/integration",
"test:watch": "vitest",
"test:coverage": "pnpm run test:fixtures:build && vitest run --coverage",
"db:migrate": "tsx scripts/migrate.ts",
"oz:bootstrap:anvil": "tsx scripts/bootstrap-oz-anvil-keystore.ts",
"dev:oz-bootstrap": "tsx scripts/bootstrap-dev-oz.ts",
"oz:gen:networks": "tsx scripts/generate-oz-relayer-networks.ts",
"prod:init": "tsx scripts/prod-init.ts",
"prod:up": "bash scripts/prod-up.sh",
"prod:check": "bash scripts/prod-check.sh",
"prod:apply-config": "tsx scripts/prod-compose-admin.ts apply-config",
"prod:apply-config:dry-run": "tsx scripts/prod-compose-admin.ts apply-config --dry-run",
"prod:check-config": "tsx scripts/prod-compose-admin.ts check-config",
"prod:verify-oz-import": "tsx scripts/prod-compose-admin.ts verify-oz-import",
"prod:validate": "tsx scripts/prod-validate.ts",
"prod:fund": "tsx scripts/prod-fund-signer.ts",
"provider:gen:superfluid": "tsx scripts/generate-registry-superfluid.ts",
"abi:sync:clear-macro-forwarder": "tsx scripts/sync-clear-macro-forwarder-abi.ts",
"stack:dev": "docker compose up -d redis anvil oz-relayer",
"stack:dev:down": "docker compose down",
"stack:prod:logs": "docker compose -f compose.prod.yaml logs -f",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@fastify/type-provider-typebox": "^6.1.0",
"@safe-global/api-kit": "^5.0.1",
"@sinclair/typebox": "^0.34.49",
"@superfluid-finance/metadata": "^1.6.2",
"dotenv": "^17.4.2",
"fastify": "^5.8.5",
"ox": "^0.14.20",
"prom-client": "^15.1.3",
"uuid": "^13.0.0",
"viem": "^2.48.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@openzeppelin/contracts": "^5.6.1",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"globals": "^16.5.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"undici": "^8.1.0",
"vitest": "^4.1.5"
}
}