-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 KB
/
package.json
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
{
"name": "ssp-relay",
"version": "1.6.2",
"description": "SSP Relay",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "tsc && tsx index.ts",
"test": "nyc --reporter=lcov ts-mocha -p tsconfig.json tests/**/*.spec.ts --exit",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"type-check": "tsc",
"backup": "tsx backup.js"
},
"author": "Tadeas Kmenta",
"license": "MIT",
"resolutions": {
"viem": "2.23.3",
"elliptic": ">=6.5.7",
"esbuild": "~0.25.0"
},
"overrides": {
"viem": "2.23.3",
"elliptic": ">=6.5.7",
"esbuild": "~0.25.0",
"@ethersproject/providers": {
"ws": ">=7.5.0"
}
},
"dependencies": {
"@runonflux/aa-schnorr-multisig-sdk": "1.2.0",
"@runonflux/utxo-lib": "1.0.1",
"alchemy-sdk": "3.5.3",
"apicache": "1.6.3",
"axios": "1.7.9",
"bchaddrjs": "0.5.2",
"bignumber.js": "9.1.2",
"compression": "1.8.0",
"config": "3.3.12",
"cors": "2.8.5",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"firebase-admin": "13.1.0",
"freshdesk-client": "1.9.1",
"lru-cache": "11.0.2",
"mongodb": "6.13.0",
"morgan": "1.10.0",
"node-cmd": "5.0.0",
"qs": "6.14.0",
"socket.io": "4.8.1",
"viem": "2.23.3"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@types/chai": "5.0.1",
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/mocha": "10.0.10",
"@types/morgan": "1.9.9",
"chai": "4.5.0",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.15.0",
"mocha": "11.1.0",
"node-mocks-http": "1.16.2",
"nyc": "17.1.0",
"prettier": "3.5.1",
"sinon": "19.0.2",
"ts-mocha": "10.0.0",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}