-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 871 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
27
28
29
30
{
"name": "nft_erc20_lending_pool",
"version": "2.0.0",
"main": "index.js",
"author": "kaymen99",
"license": "MIT",
"scripts": {
"deploy": "npx hardhat run scripts/deploy-pool.js",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage --testfiles 'test/*.js'",
"size": "npx hardhat size-contracts"
},
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@openzeppelin/contracts": "^4.9.2",
"chai": "^4.3.10",
"ethers": "^6.8.1",
"hardhat": "^2.19.0",
"hardhat-contract-sizer": "^2.10.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"dotenv": "^16.3.1",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5"
}
}