-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.79 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
{
"name": "validator",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "imsk17",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "npx @biomejs/biome format src/ --write",
"lint": "npx @biomejs/biome lint src/ --write",
"postinstall": "lefthook install",
"dev": "tsc && node dist/index.js",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@mikro-orm/cli": "^6.1.4",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"lefthook": "^1.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"mikro-orm": {
"useTsNode": true
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.29.1",
"@bogeychan/elysia-polyfills": "^0.6.4",
"@cosmjs/amino": "^0.32.3",
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@dao-xyz/borsh": "^5.2.3",
"@dfinity/agent": "^2.0.0",
"@dfinity/candid": "^2.0.0",
"@dfinity/identity": "^2.0.0",
"@dfinity/identity-secp256k1": "^2.0.0",
"@dfinity/ledger-icp": "^2.4.0",
"@dfinity/principal": "^2.0.0",
"@dfinity/utils": "^2.4.0",
"@ethersproject/providers": "^5.7.0",
"@make-software/ces-js-parser": "^1.3.3",
"@mikro-orm/core": "^6.1.4",
"@mikro-orm/migrations": "^6.1.4",
"@mikro-orm/sqlite": "^6.1.4",
"@multiversx/sdk-core": "^13.2.1",
"@multiversx/sdk-network-providers": "^2.2.1",
"@multiversx/sdk-wallet": "^4.3.0",
"@noble/secp256k1": "^1.7.0",
"@orbs-network/ton-access": "^2.3.3",
"@taquito/michel-codec": "^19.0.2",
"@taquito/signer": "^19.0.2",
"@taquito/taquito": "^19.0.2",
"@taquito/tzip16": "^19.0.2",
"@thalalabs/surf": "^1.7.3",
"@ton/core": "^0.54.0",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.9.0",
"@vechain/connex-driver": "^2.0.8",
"@vechain/connex-framework": "^2.0.8",
"@vechain/web3-providers-connex": "^1.1.2",
"@xp/cosmos-client": "git+https://github.com/XP-NETWORK/cosmos-client#bleeding-edge",
"async-mutex": "^0.5.0",
"axios": "^1.6.7",
"casper-cep78-js-client": "^1.5.1",
"casper-js-sdk": "=2.15.2",
"chalk": "4",
"dotenv": "^16.4.5",
"elysia": "^1.0.25",
"ethers": "^6.10.0",
"express": "^4.19.2",
"fp-ts": "^2.16.6",
"http-status-codes": "^2.3.0",
"io-ts": "^2.2.21",
"io-ts-types": "^0.5.19",
"js-sha3": "^0.9.3",
"libsodium-wrappers-sumo": "^0.7.13",
"monocle-ts": "^2.3.13",
"near-api-js": "^5.0.0",
"newtype-ts": "^0.3.5",
"openapi-client-axios": "^7.5.4",
"secretjs": "=1.12.4",
"ton-crypto": "^3.2.0",
"tonweb": "^0.0.62",
"tslog": "^4.9.3",
"web3-eth-accounts": "^4.1.1",
"xp-decentralized-sdk": "git+https://github.com/XP-NETWORK/xp-decentralized-client-library#bleeding-edge",
"zod": "^3.22.4"
}
}