-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.2 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
{
"name": "hardhat-project",
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"bignumber.js": "^9.0.2",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.9.2",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"save-dev": "^0.0.1-security",
"solidity-coverage": "^0.7.20",
"wait": "^0.4.2"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"hhnode": "hardhat node",
"deploy:localnet": "hardhat run deploy/deploy.js --network localhost",
"deploy:mainnet": "hardhat --network bsc_mainnet run scripts/deploy.js",
"deploy:testnet": "hardhat --network testnet run scripts/deploy.js",
"deploy:ropsten": "hardhat --network ropsten run scripts/deploy.js",
"claimToken": "hardhat run scripts/fe-communi-claimToken.js"
}
}