forked from yuichiroaoki/flash-swap-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "solidity-examples",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/yuichiroaoki/solidity-examples.git",
"author": "yuichiroaoki <yuichiroaoki27@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"accounts": "npx hardhat accounts",
"balance": "npx hardhat balance --account",
"block-number": "npx hardhat block-number",
"deploy": "npx hardhat run scripts/deploy.ts",
"flashswaps": "npx hardhat run scripts/flashswaps.ts",
"borrowDAI": "npx hardhat run scripts/borrowDAI.ts",
"borrowETH": "npx hardhat run scripts/borrowETH.ts",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"account": "npx hardhat accounts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.2",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.3",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.1.1",
"typescript": "^4.3.2"
},
"dependencies": {}
}