-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.81 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
{
"name": "koinos-bridge-ethereum",
"version": "1.0.0",
"main": "index.js",
"author": "Roamin Ro",
"repository": "https://github.com/roaminro/koinos-bridge-ethereum.git",
"license": "MIT",
"private": false,
"scripts": {
"test": "yarn hardhat test --network hardhat",
"compile": "yarn hardhat compile",
"startnode": "npx hardhat node",
"deployHardhat": "npx hardhat run --network localhost scripts/deploy-hardhat.js",
"initTokensHardhat": "npx hardhat run --network localhost scripts/init-tokens-hardhat.js",
"depositTokensHardhat": "npx hardhat run --network localhost scripts/deposit-tokens-hardhat.js",
"completeTransferHardhat": "npx hardhat run --network localhost scripts/complete-transfer.js",
"requestNewSignaturesHardhat": "npx hardhat run --network localhost scripts/request-new-signatures.js",
"deployBscTestnet": "npx hardhat run --network bsctestnet scripts/deploy.js",
"depositBscTestnet": "npx hardhat run --network bsctestnet scripts/deposit-tokens.js",
"deployWrappedTokenBscTestnet": "npx hardhat run --network bsctestnet scripts/deploy-wrapped-token.js",
"addSupportedWrappedTokenBscTestnet": "npx hardhat run --network bsctestnet scripts/add-supported-wrapped-token.js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.9.3",
"i": "^0.3.7",
"npm": "^8.6.0",
"dotenv": "^16.0.3"
},
"dependencies": {}
}