-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
34 lines (34 loc) · 1.05 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": "eth-anchor-contracts",
"license": "MIT",
"scripts": {
"test": "hardhat test",
"testnode": "ganache-cli -m test test test test test test test test test test test test -b 0.5",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"deploy-core": "hardhat run ./scripts/deploy-core.ts",
"deploy-exts": "hardhat run ./scripts/deploy-exts.ts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.4.2",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"ganache-cli": "^6.12.2",
"hardhat": "^2.0.5",
"hardhat-gas-reporter": "^1.0.4",
"solc": "0.7.6",
"solidity-coverage": "^0.7.16",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
}
}