forked from harvestfi/harvest-front-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 KB
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
{
"name": "harvest-ui",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.x",
"yarn": "1.22.x"
},
"dependencies": {
"@fontsource/dm-sans": "^5.2.5",
"@fontsource/manrope": "^5.2.5",
"@fontsource/roboto-mono": "^5.2.5",
"@fontsource/work-sans": "^5.2.5",
"@ledgerhq/iframe-provider": "^0.4.3",
"@react-hook/window-size": "^3.1.1",
"@safe-global/safe-apps-provider": "^0.18.6",
"@safe-global/safe-apps-sdk": "^9.1.0",
"axios": "^1.5.0",
"axios-retry": "^4.5.0",
"bignumber.js": "^9.0.1",
"bootstrap": "^5.1.3",
"dotenv": "^16.5.0",
"ethers": "^6.14.3",
"express": "^5.1.0",
"fast-deep-equal": "^3.1.3",
"fs-extra": "^11.3.0",
"helmet": "^8.1.0",
"is-mobile": "^5.0.0",
"lodash": "^4.17.21",
"prebuild-webpack-plugin": "^1.1.1",
"process": "^0.11.10",
"promise-all-object": "^2.0.1",
"promised-loops": "^1.1.1",
"prop-types": "^15.8.1",
"query-string": "^9.2.0",
"rc-slider": "^11.1.8",
"react": "^19.1.0",
"react-apexcharts": "^1.4.0",
"react-bootstrap": "^2.4.0",
"react-collapsible": "^2.10.0",
"react-countup": "^6.5.3",
"react-dom": "^19.1.0",
"react-html-parser": "^2.0.2",
"react-icons": "^5.5.0",
"react-interval-hook": "^1.1.5",
"react-loading-skeleton": "^3.4.0",
"react-paginate": "^8.2.0",
"react-responsive": "^10.0.1",
"react-router-dom": "^7.6.1",
"react-spinners": "^0.17.0",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.1",
"react-uuid": "^2.0.0",
"recharts": "^2.7.2",
"styled-components": "^6.1.18",
"thirdweb": "^5.118.2",
"use-deep-compare-effect": "^1.8.1",
"use-effect-with-previous": "^1.0.7",
"viem": "^2.38.5"
},
"scripts": {
"dev": "webpack serve --config webpack.config.js --mode development",
"start": "node server.js",
"build": "webpack --config webpack.config.js && cp _headers build/_headers",
"eslint": "eslint ./",
"eslint:fix": "eslint --fix ./"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.27.3",
"@babel/eslint-parser": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@eslint/js": "^9.27.0",
"babel-loader": "^10.0.0",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"prettier": "^3.5.3",
"style-loader": "^4.0.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}