forked from Cranq-io/uniswap-clone-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@uniswap-v2-app/react-app",
"version": "1.0.0",
"homepage": "./",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@ethersproject/contracts": "^5.6.0",
"@ethersproject/providers": "^5.6.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.1",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^17.0.40",
"@uniswap-v2-app/contracts": "^1.0.0",
"@uniswap/sdk": "^3.0.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@usedapp/core": "^1.1.5",
"ethers": "^5.7.0",
"graphql": "^16.3.0",
"ipfs-deploy": "^11.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"styled-components": "^5.3.3",
"web3": "^1.7.5"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"ipfs": "yarn build && ipfs-deploy build/",
"start": "react-scripts start",
"test": "react-scripts test"
}
}