-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.78 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
{
"name": "@ragetrade/gmx-vault",
"version": "1.0.0",
"repository": "https://github.com/ragetrade/gmx-vault.git",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"coverage": "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"
},
"resolutions": {
"solidity-coverage/@solidity-parser/parser": "^0.14.0"
},
"dependencies": {
"@134dd3v/arbos-precompiles": "^1.0.4",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@ragetrade/core": "https://github.com/RageTrade/core.git#969ad6b00d8221933cce2a24234206d99dd10ab9",
"@rari-capital/solmate": "https://github.com/Rari-Capital/solmate.git#25015a1d18e75921f8cb1bacd4beb9f364e788a9",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-periphery": "^1.4.0",
"hardhat-dependency-compiler": "^1.1.2"
},
"devDependencies": {
"@134dd3v/prettier-plugin-solidity": "^1.0.0-beta.18",
"@anders-t/ethers-ledger": "^1.0.4",
"@defi-wonderland/smock": "^2.0.7",
"@ethersproject/experimental": "^5.4.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@protodev-rage/hardhat-tenderly": "^1.0.13",
"@ragetrade/sdk": "^0.7.9",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.25",
"@uniswap/v3-sdk": "^3.6.2-optimism-regenesis",
"chai": "^4.3.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "5.6.8",
"fs-extra": "^10.1.0",
"hardhat": "2.9.7",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.10.5",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.1.0-rc.5",
"patch-package": "^6.4.7",
"prettier": "^2.6.2",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
}
}