-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
{
"name": "@wormhole-foundation/wormhole-monitor-watcher",
"version": "0.0.1",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"check-solana": "ts-node scripts/checkSolana.ts",
"backfill": "ts-node scripts/backfill.ts",
"backfill-arbitrum": "ts-node scripts/backfillArbitrum.ts",
"backfill-near": "ts-node scripts/backfillNear.ts",
"backfill-signed-vaas": "ts-node scripts/backfillSignedVAAs",
"backfill-vaas-by-tx-hash": "ts-node scripts/backfillVAAsByTxHash.ts",
"delete-messages-by-chain": "ts-node scripts/deleteMessagesByChain.ts",
"locate-message-gaps": "ts-node scripts/locateMessageGaps.ts",
"fetch-missing-vaas": "ts-node scripts/fetchMissingVAAs.ts",
"update-found-vaas": "ts-node scripts/updateFoundVAAs.ts",
"read-bigtable": "ts-node scripts/readBigtable.ts",
"read-firestore": "ts-node scripts/readFirestore.ts",
"reconstruct-vaa": "ts-node scripts/reconstructVAA.ts"
},
"dependencies": {
"@celo-tools/celo-ethers-wrapper": "^0.3.0",
"@google-cloud/bigtable": "^4.1.0",
"@google-cloud/pubsub": "^3.4.1",
"@mysten/sui.js": "^0.33.0",
"@solana/web3.js": "^1.73.0",
"@wormhole-foundation/wormhole-monitor-common": "^0.0.1",
"algosdk": "^2.4.0",
"aptos": "^1.4.0",
"axios": "^1.2.1",
"bs58": "^5.0.0",
"dotenv": "^16.0.3",
"firebase-admin": "^11.4.0",
"js-sha512": "^0.8.0",
"near-api-js": "^1.1.0",
"ora": "^5.4.1",
"winston": "^3.8.2",
"winston-loki": "^6.0.7",
"zod": "^3.20.2"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"jest": "^29.3.1",
"prettier": "2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}