-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.19 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
{
"name": "hashnode-hackathon-contracts",
"version": "1.0.0",
"main": "index.js",
"author": "kelvin <[email protected]>",
"license": "MIT",
"dependencies": {
"@compound-finance/compound-js": "^0.4.2",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@openzeppelin/contracts": "^4.4.2",
"dotenv": "^11.0.0",
"hardhat": "^2.7.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0"
},
"scripts": {
"server": "npx hardhat node",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "hardhat test --network localhost",
"test:wallet": "hardhat test --network hardhat ./test/UserWallet-test.js",
"test:compound": "hardhat test --network hardhat ./test/CompoundController-test.js",
"test:balance": "hardhat test --network localhost ./test/balance-test.js",
"run": "npx hardhat run --network localhost scripts/run.js",
"deploy:kovan": "npx hardhat run --network kovan scripts/run.js",
"fork": "npx hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/7J2rN0j4wC9p7SIKZc4ARaVlgvbQiEVT"
}
}