-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
40
41
{
"name": "capsules",
"version": "0.1.0",
"private": true,
"scripts": {
"deploy-local": "hardhat run scripts/deploy.ts --network localhost",
"deploy-rinkeby": "hardhat run scripts/deploy.ts --network rinkeby",
"deploy-kovan": "hardhat run scripts/deploy.ts --network kovan",
"deploy-goerli": "hardhat run scripts/deploy.ts --network goerli",
"deploy-mainnet": "hardhat run scripts/deploy.ts --network mainnet",
"test": "npx hardhat test"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.0",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.4.0",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "4.5.0",
"chalk": "^4.1.1",
"fs": "^0.0.1-security",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.8.9",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.8",
"sol-merger": "^3.1.0"
}
}