-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 955 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
31
32
33
34
{
"name": "kawa-staking",
"scripts": {
"build": "npx hardhat compile",
"size": "npx hardhat size-contracts",
"clean": "rm -rf artifacts && rm -rf cache && rm -rf types",
"deploy": "npx hardhat run --network testnet scripts/deploy.js",
"deploy-main": "npx hardhat run --network mainnet scripts/deploy.js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.28",
"bn.js": "^5.1.3",
"chai": "^4.3.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.31",
"hardhat": "^2.0.10",
"hardhat-contract-sizer": "^2.0.3",
"rlp": "^2.2.6",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"dotenv": "^8.2.0"
}
}