-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nested-finance",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"run": "npx hardhat node",
"export": "hardhat export --export-all exports/deployments.json",
"mainnet:deploy": "hardhat run scripts/deployAll.ts --network mainnet",
"test": "hardhat test",
"test:coverage": "cross-env FORKING=false hardhat coverage",
"test:fork": " hardhat coverage",
"test:gas": "cross-env FORKING=false REPORT_GAS=true hardhat test",
"test:fork:gas": "REPORT_GAS=true hardhat test",
"prettier": "prettier --write test/**/*.[jt]s && prettier --write test/*.[jt]s && prettier --write contracts/* && prettier --write scripts/*",
"lint": "yarn prettier && solhint -c .solhint.json contracts/**/*.sol",
"typechain": "hardhat typechain"
},
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@defi-wonderland/smock": "^2.0.1",
"@ethersproject/abi": "^5.4.1",
"@ethersproject/abstract-provider": "^5.4.1",
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.4.5",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.6",
"hardhat": "^2.9.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-deploy": "^0.7.0-beta.48",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.21",
"mocha": "^9.1.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.7.18",
"synthetix": "^2.50.0-ovm-alpha",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@tenderly/hardhat-tenderly": "^1.0.13",
"inquirer": "^8.1.0"
}
}