-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 6.26 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 6.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "open-audit",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"dev:ws": "node --max-old-space-size=512 --expose-gc -r ts-node/register --project tsconfig.server.json server.ts",
"start:ws": "node --max-old-space-size=1024 --max-semi-space-size=64 --initial-old-space-size=128 --optimize-for-size dist/server.js",
"profile:heap": "node --expose-gc --max-old-space-size=512 -r tsx/cjs scripts/profile-heap.ts",
"build": "next build",
"build:native": "npm run --prefix native/soroban-xdr-decode build",
"build:native:debug": "npm run --prefix native/soroban-xdr-decode build:debug",
"build:native:docker": "npm run --prefix native/soroban-xdr-decode build:docker",
"build:all": "npm run build:native && npm run build",
"start": "next start",
"start:pm2": "pm2 start ecosystem.config.js",
"stop:pm2": "pm2 stop ecosystem.config.js",
"restart:pm2": "pm2 restart ecosystem.config.js",
"logs:pm2": "pm2 logs",
"monit:pm2": "pm2 monit",
"docker:build": "docker-compose -f docker-compose.microservices.yml build",
"docker:up": "docker-compose -f docker-compose.microservices.yml up -d",
"docker:down": "docker-compose -f docker-compose.microservices.yml down",
"docker:logs": "docker-compose -f docker-compose.microservices.yml logs -f",
"lint": "next lint",
"lint:registry": "tsx scripts/lint-registry.ts",
"validate:registry": "node scripts/validate-registry.js",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:security": "vitest run lib/translator/__tests__/parser-security.test.ts",
"test:fuzz": "vitest run lib/translator/__tests__/fuzz-xdr-parser.test.ts",
"test:secure-parser": "vitest run lib/translator/__tests__/secure-xdr-parser.test.ts",
"test:all-security": "vitest run lib/translator/__tests__/parser-security.test.ts lib/translator/__tests__/fuzz-xdr-parser.test.ts lib/translator/__tests__/secure-xdr-parser.test.ts",
"test:resilience": "vitest run lib/resilience",
"test:resilience:watch": "vitest lib/resilience",
"test:resilience:coverage": "vitest run --coverage lib/resilience",
"test:wasm": "vitest run lib/wasm-sandbox",
"test:wasm:watch": "vitest lib/wasm-sandbox",
"test:wasm:manual": "node scripts/test-wasm-sandbox.js",
"test:wasm:benchmark": "node scripts/test-wasm-sandbox.js benchmark",
"validate:blueprints": "vitest run lib/translator/__tests__/soroswap-router.test.ts lib/translator/__tests__/blend-pool.test.ts lib/translator/__tests__/soroswap-blend-real-events.test.ts lib/translator/tests/registry.test.ts",
"wasm:build-examples": "cd lib/wasm-sandbox/examples/rust && ./build-all.sh",
"build:cli": "tsc cli/open-audit-cli.ts --outDir dist --module commonjs --target es2020 --moduleResolution node --esModuleInterop --resolveJsonModule --skipLibCheck",
"cli": "node dist/cli/open-audit-cli.js",
"cli:test": "bash cli/test-cli.sh",
"cli:example": "npm run build:cli && node dist/cli/open-audit-cli.js test --hex 0x74726e7312345678 --spec cli/examples/token-transfer.json --verbose",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:seed": "ts-node prisma/seed.ts",
"db:studio": "prisma studio",
"retention": "ts-node --project tsconfig.server.json scripts/retention.ts",
"retention:dry-run": "ts-node --project tsconfig.server.json scripts/retention.ts --dry-run",
"worker:evm-bridge": "ts-node --project tsconfig.server.json src/worker/evm-bridge-indexer.ts"
},
"dependencies": {
"@clickhouse/client": "^1.0.0",
"@mswjs/interceptors": "^0.41.9",
"@opencensus/core": "^0.1.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.219.0",
"@opentelemetry/instrumentation-http": "^0.219.0",
"@opentelemetry/sdk-node": "^0.219.0",
"@opentelemetry/shim-opencensus": "^0.220.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.17",
"@radix-ui/react-toast": "^1.2.17",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/node": "^10.59.0",
"bull": "^4.11.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"commander": "^15.0.0",
"cssesc": "^3.0.0",
"dotenv": "^16.4.5",
"follow-redirects": "^1.16.0",
"graphql": "^17.0.1",
"headers-polyfill": "^5.0.1",
"ioredis": "^5.11.1",
"isarray": "^2.0.5",
"lucide-react": "^0.378.0",
"next": "16.2.10",
"node-cron": "^3.0.3",
"path-to-regexp": "^8.4.2",
"pino": "^8.17.2",
"prisma": "^5.22.0",
"prom-client": "^15.1.3",
"react": "^18",
"react-dom": "^18",
"react-force-graph-3d": "^1.25.0",
"react-syntax-highlighter": "^16.1.1",
"redis": "^4.6.12",
"rettime": "^0.11.11",
"sha.js": "^2.4.12",
"stellar-sdk": "^12.1.0",
"swagger-ui-react": "^5.32.6",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.21.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bull": "^4.10.4",
"@types/ioredis": "^4.28.10",
"@types/js-yaml": "^4.0",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/swagger-ui-react": "^5.18.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^3.2.7",
"ajv": "^8.20.0",
"autoprefixer": "^10.0.1",
"eslint": "^9.15.0",
"eslint-config-next": "16.2.10",
"form-data": "^4.0.6",
"happy-dom": "^20.10.6",
"jsdom": "^27.0.1",
"msw": "^2.14.6",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"three": "^0.179.0",
"to-buffer": "^1.2.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5",
"until-async": "^3.0.2",
"util-deprecate": "^1.0.2",
"vitest": "^3.2.7",
"vitest-axe": "^0.1.0",
"ws": "^8.18.0"
},
"overrides": {
"form-data": "^4.0.6",
"glob": "^10.5.0",
"js-yaml": "^4.1.2",
"minimatch": "^9.0.7",
"tsx": "^4.7.0",
"typescript": "^5",
"vitest": "^3.2.7"
}
}