-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1 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
{
"name": "upgradable",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat coverage --solcoverjs .solcover.js",
"deploy": "npx hardhat run scripts/deploy.js --network rinkeby",
"upgrade": "npx hardhat run scripts/upgrade.js --network rinkeby",
"verify":"npx hardhat verify --contract contracts/HPToken.sol:HPToken 0xF99Fe3bd99EBC01d8de23286f1bf7474e4f6001e --network rinkeby --constructor-args arguments.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"solidity-coverage": "^0.7.20"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"dotenv": "^16.0.0"
}
}