-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
35
36
37
38
39
{
"name": "elyfi-governance",
"version": "1.0.0",
"description": "Elyfi Governance Implmentation",
"main": "index.js",
"author": "elysia-dev",
"license": "MIT",
"dependencies": {
"@typechain/ethers-v5": "^7.0.0",
"@typechain/web3-v1": "^3.0.0",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"typechain": "^5.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@typechain/hardhat": "^2.1.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.9.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.3.0",
"hardhat-deploy": "^0.8.9",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"deploy:mainnet": "hardhat --network mainnet deploy --tags mainnet",
"deploy:testnet": "hardhat --network kovan deploy --tags testnet",
"verify:mainnet": "hardhat --network mainnet etherscan-verify",
"verify:testnet": "hardhat --network kovan etherscan-verify"
}
}