-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
83 lines (83 loc) · 3.08 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "gearbox-contracts",
"description": "Core smart contracts of Gearbox V1",
"version": "1.0.0",
"homepage": "https://gearbox.fi",
"keywords": [
"gearbox"
],
"repository": {
"type": "git",
"url": "https://github.com/Gearbox-protocol/gearbox-contracts"
},
"engines": {
"node": "^16.0"
},
"license": "BUSL-1.1",
"devDependencies": {
"@chainlink/contracts": "^0.1.6",
"@ethersproject/abi": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.4.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.3.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.6",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "^2.6.4",
"hardhat-abi-exporter": "^2.2.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.14",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"tslog": "^3.1.1",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"scripts": {
"build": "yarn clean && yarn compile && yarn update_abi",
"deploy-fork": "yarn build && npx hardhat run scripts/forkDeploy.ts --network localhost",
"deploy-fast": "yarn build && npx hardhat run scripts/fastDeploy.ts --network localhost",
"deploy-kovan": "yarn build && npx hardhat run scripts/configKovanDeploy.ts --network kovan",
"deploy-kovan-fast": "yarn build && npx hardhat run scripts/fastDeploy.ts --network kovan",
"chainlink-test": "npx hardhat run scripts/chainlinkTest.ts --network mainnet",
"faucet": "npx hardhat run scripts/faucetGetData.ts --network mainnet",
"faucet-mint": "npx hardhat run scripts/faucetMint.ts --network kovan",
"merkle": "npx hardhat run scripts/merkle.ts --network kovan",
"charge": "npx hardhat run scripts/charge.ts --network localhost",
"deploy-nft": "npx hardhat run scripts/deploy-nft.ts --network kovan",
"deploy-acc": "npx hardhat run scripts/deployAcc.ts --network localhost",
"size": "yarn clean && yarn compile && node scripts/size.ts",
"clean": "npx hardhat clean",
"fork": "scripts/fork.sh",
"abigen": "scripts/abigen.sh",
"compile": "npx hardhat compile",
"set-lt": "npx hardhat run scripts/setLT.ts --network localhost",
"test": "npx hardhat test",
"mainnet-test": "yarn deploy-fork && yarn charge",
"update_abi": "scripts/abiCopy.sh",
"coverage": "yarn build && npx hardhat coverage --temp artifacts"
},
"dependencies": {
"@diesellabs/gearbox-leverage": "^0.0.95",
"@diesellabs/gearbox-sdk": "^0.0.222",
"@types/yargs-parser": "^20.2.1",
"deep-eql": "^4.0.0",
"ethereumjs-util": "^7.1.0",
"yargs-parser": "^21.0.0"
}
}