forked from PerryTS/perry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 950 Bytes
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
{
"name": "blockchain-demo",
"version": "1.0.0",
"description": "Demo application showcasing blockchain library usage for TypeScript compiler testing",
"type": "module",
"scripts": {
"start": "tsx demo.ts",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "^1.0.0",
"@grpc/grpc-js": "1.14.3",
"@wormhole-foundation/sdk": "4.3.0",
"big.js": "^6.2.2",
"commander": "^13.1.0",
"decimal.js-light": "^2.5.1",
"dotenv": "^16.6.0",
"ethers": "^6.7.1",
"exponential-backoff": "^3.1.1",
"ioredis": "5.8.0",
"jsbi": "^4.3.0",
"lru-cache": "^11.1.0",
"mysql2": "^3.14.1",
"tiny-invariant": "^1.3.3",
"viem": "^2.21.2",
"ws": "^8.18.2"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/ws": "^8.5.6",
"tsx": "^4.0.0",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}