-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
48 lines (48 loc) · 1.37 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
42
43
44
45
46
47
48
{
"name": "hypervisor",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "hardhat compile",
"test": "bash ./scripts/test.sh",
"flatten": "bash ./scripts/flatten.sh",
"prettier": "prettier --write contracts/*.sol",
"lint": "solhint contracts/*.sol"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.1-solc-0.7-2",
"@uniswap/v3-core": "*",
"@uniswap/v3-periphery": "*",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint-plugin-prettier": "0.0.5",
"solidity-docgen": "^0.5.13"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.16",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"decimal.js": "^10.2.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.3",
"fs-extra": "^7.0.1",
"hardhat": "^2.2.0",
"hardhat-typechain": "^0.3.5",
"hardhat-watcher": "^2.1.1",
"mocha": "^7.2.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "*",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^8.10.2",
"typechain": "^4.0.0",
"typescript": "^4.2.4"
}
}