forked from harvestfi/harvest-front-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.75 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "harvest-ui",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x",
"yarn": "1.22.x"
},
"dependencies": {
"@coinbase/wallet-sdk": "3.0.5",
"@fontsource/dm-sans": "^4.5.8",
"@fontsource/manrope": "^4.5.12",
"@fontsource/roboto-mono": "4.2.2",
"@fontsource/work-sans": "^4.5.10",
"@fortawesome/fontawesome-svg-core": "1.2.34",
"@fortawesome/free-brands-svg-icons": "5.15.3",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"@ledgerhq/connect-kit-loader": "1.1.8",
"@ledgerhq/iframe-provider": "^0.4.3",
"@metamask/detect-provider": "^2.0.0",
"@react-hook/window-size": "3.0.7",
"@safe-global/safe-apps-provider": "^0.17.0",
"@safe-global/safe-apps-sdk": "^7.11.0",
"@walletconnect/web3-provider": "1.5.2",
"@web3-onboard/core": "^2.16.2",
"@web3-onboard/gnosis": "^2.1.9",
"@web3-onboard/injected-wallets": "^2.8.3",
"@web3-onboard/ledger": "^2.4.3",
"@web3-onboard/react": "^2.7.2",
"@web3-onboard/walletconnect": "2.3",
"apexcharts": "^3.35.3",
"axios": "0.21.1",
"axios-retry": "3.1.9",
"babel-plugin-styled-components": "1.12.0",
"bignumber.js": "9.0.1",
"bootstrap": "^5.1.3",
"coingecko-api": "^1.0.10",
"customize-cra": "1.0.0",
"ethers": "5.7.2",
"express": "4.17.3",
"fast-deep-equal": "3.1.3",
"fs-extra": "10.0.0",
"helmet": "5.0.2",
"is-mobile": "3.0.0",
"lodash": "4.17.21",
"lodash-move": "1.1.1",
"pm2": "5.2.0",
"prebuild-webpack-plugin": "1.1.1",
"promise-all-object": "2.0.1",
"promised-loops": "1.1.1",
"prop-types": "15.7.2",
"rc-slider": "^10.6.2",
"react": "^16.13.1",
"react-apexcharts": "^1.4.0",
"react-bootstrap": "^2.4.0",
"react-collapsible": "2.8.1",
"react-countdown": "2.3.1",
"react-countup": "4.3.3",
"react-dom": "^16.13.1",
"react-html-parser": "2.0.2",
"react-icons": "^4.11.0",
"react-interval-hook": "1.1.2",
"react-loading-skeleton": "^3.4.0",
"react-minimal-pie-chart": "^8.3.0",
"react-modal": "^3.15.1",
"react-paginate": "^8.2.0",
"react-query": "4.0.0-beta.23",
"react-responsive": "9.0.0-beta.3",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-select": "4.3.1",
"react-spinners": "^0.13.4",
"react-svg": "14.0.1",
"react-toastify": "7.0.3",
"react-toggle": "4.1.2",
"react-tooltip": "4.2.15",
"react-uuid": "1.0.2",
"recharts": "^2.7.2",
"styled-components": "5.2.1",
"use-deep-compare-effect": "1.6.1",
"use-effect-with-previous": "1.0.7",
"web3": "1.3.3"
},
"scripts": {
"dev": "react-app-rewired start",
"start": "node server.js",
"build": "react-app-rewired build && cp _headers build/_headers",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint": "eslint ./",
"eslint:fix": "eslint --fix ./",
"pm:start": "yarn pm2 start process.json",
"pm:restart-ui": "yarn pm2 restart ui",
"pm:stop": "yarn pm2 stop all",
"pm:delete": "yarn pm2 delete all"
},
"eslintConfig": {
"extends": "react-app"
},
"config-overrides-path": "./rewire-config/index.js",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.2.1",
"react-app-rewired": "2.1.8"
}
}