-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.44 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
{
"name": "hardhat-project",
"scripts": {
"frontend": "npx hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/{KEY} & P1=$! sleep 3 && npx hardhat --network localhost run scripts/frontend.js & wait $P1",
"fork:empty": "npx hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/{KEY}",
"fork": "npx hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/{KEY} & P1=$! sleep 3 && npx hardhat --network localhost run scripts/frontend.js & wait $P1",
"prettier": "prettier --write contracts/*.sol contracts/**/*.sol",
"prettier-diff": "prettier --list-different contracts/*.sol contracts/**/*.sol"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true,
"printWidth": 100,
"trailingComma": "all",
"quoteProps": "consistent",
"semi": true
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@sherlock/v1-core": "git://github.com/sherlock-protocol/sherlock-v1-core#c9aeaf583bde8f4e6a3728df44119b97de7d8608",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"hardhat": "^2.6.4",
"hardhat-docgen": "^1.1.1"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"dotenv": "^8.2.0",
"prettier-plugin-solidity": "^1.0.0-beta.10"
}
}