-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "@dhedge/v2-sdk",
"version": "1.10.6",
"license": "MIT",
"description": "🛠 An SDK for building applications on top of dHEDGE V2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"fork:polygon": "hardhat node --port 8542 --fork $(grep POLYGON_URL .env | cut -d '=' -f2)",
"fork:optimism": "hardhat node --port 8544 --fork $(grep OPTIMISM_URL .env | cut -d '=' -f2)",
"fork:arbitrum": "hardhat node --port 8540 --fork $(grep ARBITRUM_URL .env | cut -d '=' -f2)",
"fork:base": "hardhat node --port 8546 --fork $(grep BASE_URL .env | cut -d '=' -f2)"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.178",
"hardhat": "2.19.3",
"husky": "^7.0.1",
"jest": "^28.1.3",
"size-limit": "^5.0.1",
"ts-jest": "^28.0.8",
"tsdx": "^0.14.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@balancer-labs/sor": "^2.0.0-beta.3",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/providers": "5.0.12",
"@lyrafinance/lyra-js": "^0.0.20",
"@sushiswap/sdk": "5.0.0-canary.7",
"@uniswap/sdk-core": "3.0.1",
"@uniswap/v3-sdk": "^3.8.2",
"axios": "^0.21.4",
"bignumber.js": "^9.0.2",
"dotenv": "^10.0.0",
"ethers": "^5.4.1",
"jsbi": "^3.1.4",
"lodash": "^4.17.21",
"web3-utils": "^1.7.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
}
}