forked from sprintertech/maintenance-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 927 Bytes
/
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
{
"dependencies": {
"@buildwithsygma/core": "^1.4.0",
"@buildwithsygma/evm": "^1.5.0",
"@buildwithsygma/substrate": "^1.0.4",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"node-fetch": "^2.7.0",
"ts-node": "^10.9.2",
"web3": "^4.13.0",
"web3-providers-http": "1.10.4"
},
"devDependencies": {
"@types/node": "^22.7.4",
"typescript": "^5.6.2"
},
"scripts": {
"transfer:fungible": "ts-node src/Sygma_Tests/evm-to-evm-fungible/transfer.ts",
"transfer:gmp": "ts-node src/Sygma_Tests/evm-to-evm-gmp/transfer.ts",
"transfer:fungible_and_gmp": "ts-node src/Sygma_Tests/evm-to-evm-fungible_and_gmp/transfer.ts",
"postCall": "ts-node src/Sprinter_Tests/PostCallNoContractCall.ts",
"postCallContract": "ts-node src/Sprinter_Tests/PostCallWithContractCall.ts",
"postSwapCall": "ts-node src/Sprinter_Tests/PostCallSwapNoContractCall.ts"
}
}