-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 3 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
{
"name": "@ragetrade/delta-neutral-gmx-vaults",
"version": "1.0.4",
"repository": "https://github.com/RageTrade/delta-neutral-gmx-vaults.git",
"license": "MIT",
"scripts": {
"clean": "rm -rf artifacts && hardhat clean",
"compile": "hardhat compile",
"coverage": "TS_NODE_SKIP_IGNORE=true COVERAGE_CHECK=true hardhat coverage",
"deploy": "TS_NODE_SKIP_IGNORE=true hardhat deploy",
"deploy:arbtest": "yarn deploy --network arbtest",
"deploy:goerli": "hardhat deploy --network goerli && yarn etherscan --network goerli",
"deploy:localhost": "hardhat --network localhost deploy",
"deploy:rinkeby": "hardhat deploy --network rinkeby && yarn etherscan --network rinkeby",
"etherscan": "hardhat etherscan-verify",
"format": "prettier --check contracts test",
"format:fix": "prettier --write contracts test",
"size": "hardhat size-contracts",
"test": "TS_NODE_SKIP_IGNORE=true hardhat test",
"typechain": "hardhat typechain",
"patch-package": "patch-package --patch-dir .patches",
"storage:check": "hardhat storage-layout --check",
"storage:update": "hardhat storage-layout --update"
},
"resolutions": {
"@solidity-parser/parser": "0.15.0"
},
"dependencies": {
"@aave/core-v3": "^1.17.2",
"@aave/periphery-v3": "^1.19.2",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@ragetrade/core": "^1.0.4-arbgoerli.5",
"@rari-capital/solmate": "https://github.com/Rari-Capital/solmate.git#25015a1d18e75921f8cb1bacd4beb9f364e788a9",
"@solidity-parser/parser": "^0.14.3",
"@uniswap/v3-core": "https://github.com/uniswap/v3-core.git#d55e297b938e5b56fd1cf9fe668f5bd385be85b5",
"@uniswap/v3-periphery": "https://github.com/RageTrade/uniswap-v3-periphery.git#2b35edf766db72694a29703b2beb25b10304417d"
},
"devDependencies": {
"@134dd3v/prettier-plugin-solidity": "^1.1.1",
"@anders-t/ethers-ledger": "^1.0.4",
"@defi-wonderland/smock": "^2.3.0",
"@ethersproject/experimental": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@ragetrade/sdk": "^1.0.6",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.3",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.16",
"chai": "^4.3.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.2",
"ethers": "5.7.0",
"fs-extra": "^10.1.0",
"hardhat": "2.12.6",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.11.14",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-storage-layout-changes": "^0.1.2",
"hardhat-tracer": "^2.1.2",
"patch-package": "^6.4.7",
"prettier": "^2.7.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.3"
}
}