-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
95 lines (95 loc) · 2.9 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
{
"name": "uniswapcalculator",
"version": "1.0.0",
"author": "chunrapeepat",
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@nfront/global-styles": "^1.2.1",
"@react-hook/window-size": "^3.0.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/axios": "^0.14.0",
"@types/bignumber.js": "^5.0.0",
"@types/d3": "^7.0.0",
"@types/jest": "^26.0.24",
"@types/js-search": "^1.4.0",
"@types/node": "^16.4.2",
"@types/react": "^17.0.15",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.12.1",
"@types/react-slider": "^1.3.1",
"@types/styled-components": "^5.1.11",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.2.0",
"@uniswap/v3-sdk": "^3.9.0",
"antd": "^5.2.3",
"apexcharts": "^3.37.1",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^2.0.7",
"bignumber.js": "^9.0.1",
"d3": "^7.0.0",
"fuse.js": "^6.4.6",
"gatsby": "^5.2.0",
"gatsby-plugin-fontawesome-css": "^1.2.0",
"gatsby-plugin-global-styles": "^1.0.17",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-styled-components": "^6.2.0",
"js-search": "^2.0.0",
"numbro": "^2.3.6",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^18.2.0",
"react-loading": "^2.0.3",
"react-modal": "^3.14.3",
"react-scripts": "4.0.3",
"react-slider": "^1.3.1",
"react-switch": "^7.0.0",
"react-tooltip": "^4.2.21",
"react-twitter-embed": "^4.0.4",
"styled-components": "^5.3.0",
"typescript": "^4.3.5",
"web-vitals": "^1.0.1",
"web3": "^1.8.0"
},
"scripts": {
"generate-token-image-uri-mapping": "node ./scripts/generateTokenImageURI.js",
"generate-contract-address-mapping": "node ./scripts/generateTokenAddressMaping.js",
"generate": "yarn generate-token-image-uri-mapping && yarn generate-contract-address-mapping",
"start": "gatsby develop -p 3000 -o",
"build": "yarn generate && gatsby build",
"deploy": "firebase deploy",
"serve": "serve public"
},
"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"
]
},
"devDependencies": {
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0"
}
}