-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "mee-node",
"private": true,
"version": "1.2.0",
"author": "Biconomy",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"format": "biome check --write",
"format:check": "biome check",
"prebuild": "rimraf ./dist",
"build": "npx tsc --project tsconfig.build.json",
"postbuild": "tsc-alias -p tsconfig.build.json",
"start": "bun src/main.ts",
"start:dev": "bun --watch src/dev.ts",
"start:prod": "bun run ./dist/main.js",
"test:unit": "vitest run --project unit",
"test:unit:watch": "vitest watch --project unit",
"test:e2e": "vitest run --project e2e",
"test:e2e:watch": "vitest watch --project e2e"
},
"dependencies": {
"@chainlink/env-enc": "^1.0.5",
"@lifi/sdk": "^3.7.9",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.67.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.205.0",
"@opentelemetry/resources": "^2.1.0",
"@opentelemetry/sdk-node": "^0.205.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"@openzeppelin/merkle-tree": "1.0.8",
"@rhinestone/module-sdk": "0.2.7",
"async-mutex": "^0.5.0",
"axios": "^1.9.0",
"bullmq": "^5.8.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "5.1.0",
"ioredis": "5.6.1",
"msgpackr": "1.11.2",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"reflect-metadata": "0.2.2",
"remeda": "2.21.2",
"semver": "^7.7.3",
"typedi": "0.10.0",
"uuid": "^10.0.0",
"viem": "^2.45.1",
"zod": "3.24.3",
"zod-openapi": "4.2.4"
},
"devDependencies": {
"@biconomy/abstractjs": "^1.0.13",
"@biomejs/biome": "1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "5.0.1",
"@types/node": "22.15.17",
"@types/node-fetch": "^2.6.12",
"@types/node-schedule": "^2.1.7",
"@types/semver": "^7.7.1",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"rimraf": "^6.0.1",
"supertest": "^7.1.0",
"ts-node": "^10.9.2",
"tsc-alias": "1.8.15",
"tsconfig-paths": "4.2.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.0-beta.1"
}
}