forked from ckoopmann/liquidity-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "liquidity-analysis",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^5.0.0",
"@types/lodash": "^4.14.86",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@types/numeral": "^2.0.2",
"@types/styled-components": "^5.1.9",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"globby": "^11.0.2",
"hardhat": "^2.0.6",
"hardhat-deploy": "^0.7.0-beta.39",
"hardhat-typechain": "^0.3.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.4",
"ts-generator": "^0.1.1",
"ts-node": "^8.10.1",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0"
},
"dependencies": {
"@balancer-labs/sor": "^1.0.0",
"@dynamic-amm/sdk": "^3.0.9",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@ethersproject/abstract-signer": "5.0.9",
"@ethersproject/bignumber": "5.0.12",
"@ethersproject/providers": "5.0.17",
"@mui/material": "^5.0.4",
"@setprotocol/index-coop-contracts": "0.0.25",
"@setprotocol/index-rebalance-utils": "^0.0.5",
"@setprotocol/set-protocol-v2": "0.0.46",
"@sushiswap/sdk": "^5.0.0-canary.23",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.0.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"@uniswap/v3-sdk": "^3.2.1",
"bignumber.js": "^9.0.1",
"eip-712": "^0.4.3",
"ethereumjs-util": "^7.0.5",
"ethers": "5.0.24",
"hardhat": "^2.6.5",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"styled-components": "^5.3.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"ethereum-waffle": "^3.2.1",
"hardhat": "^2.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}