-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.2 KB
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": "steadefi-codehawks",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "npx hardhat test",
"hardhat-node": "npx hardhat node",
"compile": "npx hardhat compile --show-stack-traces",
"clean": "npx hardhat clean",
"size": "npx hardhat size-contracts",
"deploy:oracle:chainlink": "npx hardhat run --network arbitrumOne scripts/oracles/deploy-oracle-chainlink.ts",
"deploy:oracle:gmx": "npx hardhat run --network arbitrumOne scripts/oracles/deploy-oracle-gmx.ts",
"deploy:lending:stable": "npx hardhat run --network arbitrumOne scripts/lending/deploy-lending-vault-stable.ts",
"deploy:lending:native": "npx hardhat run --network arbitrumOne scripts/lending/deploy-lending-vault-native.ts",
"deploy:lending:token": "npx hardhat run --network arbitrumOne scripts/lending/deploy-lending-vault-token.ts",
"deploy:strategy:gmx:libraries": "npx hardhat run --network arbitrumOne scripts/strategy/gmx/deploy-strategy-gmx-libraries.ts",
"deploy:strategy:gmx": "npx hardhat run --network arbitrumOne scripts/strategy/gmx/deploy-strategy-gmx.ts",
"deploy:swap:uniswap": "npx hardhat run --network arbitrumOne scripts/swaps/deploy-swap-uniswap.ts",
"deploy:swap:trader-joe": "npx hardhat run --network avalanche scripts/swaps/deploy-swap-trader-joe.ts"
},
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "5.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"@types/request": "^2.48.9",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"ethers": "^6.4.0",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
}
}