This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.77 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
{
"name": "crypto-timelocked-backup",
"version": "1.0.0",
"description": "backup your crypto with timelocked transactions",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"backup-eth-hardhat": "npx hardhat run scripts/ethereum/createBackup.ts --network hardhat",
"backup-eth-goerli": "npx hardhat run scripts/ethereum/createBackup.ts --network goerli",
"backup-eth-mainnet": "npx hardhat run scripts/ethereum/createBackup.ts --network mainnet",
"backup-erc20-hardhat": "npx hardhat run scripts/ethereum/createBackupTokens.ts --network hardhat",
"backup-erc20-goerli": "npx hardhat run scripts/ethereum/createBackupTokens.ts --network goerli",
"backup-erc20-mainnet": "npx hardhat run scripts/ethereum/createBackupTokens.ts --network mainnet",
"backup-bitcoin": "NODE_OPTIONS=--openssl-legacy-provider npx hardhat run scripts/bitcoin/createBackupBitcoin.ts",
"backup-polkadot": "npx hardhat run scripts/dotsama/createDotsamaBackup.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/James-Sangalli/crypto-timelocked-backup.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/James-Sangalli/crypto-timelocked-backup/issues"
},
"homepage": "https://github.com/James-Sangalli/crypto-timelocked-backup#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"typechain": "^8.1.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@polkadot/api": "^9.10.5",
"@types/bitcore-lib": "^0.15.3",
"@types/superagent": "^4.1.16",
"bitcore-lib": "^8.25.40",
"dotenv": "^16.0.3",
"hardhat": "^2.12.0",
"superagent": "^8.0.6"
}
}