-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 931 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": "hardhat-project",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@types/ramda": "^0.27.40",
"chai": "^4.3.4",
"ethers": "^5.0.32",
"hardhat": "^2.4.1",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.0.0-rc.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"axios": "^0.21.1",
"commander": "^7.2.0",
"inquirer": "^8.1.0",
"ramda": "^0.27.1"
}
}