-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
114 lines (114 loc) · 3.59 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
{
"name": "dao-dashboard",
"version": "1.0.0-rc.1",
"private": true,
"scripts": {
"start": "vite",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 vite build",
"preview": "vite preview",
"i18n:compile": "node scripts/compileLangs.js",
"patch-version": "npm version patch -m \"Upgrade to %s\"",
"postversion": "git push && git push --tags",
"lint": "eslint \"src/**/*.{js,ts,jsx,tsx}\" --max-warnings 0",
"lint:fix": "yarn lint --fix",
"analyze": "cross-env VITE_MODE=analyze vite build"
},
"dependencies": {
"@mdi/font": "^6.7.96",
"@metamask/jazzicon": "^2.0.0",
"@popperjs/core": "^2.11.5",
"@q-dev/form-hooks": "^1.0.0-rc.1",
"@q-dev/gdk-sdk": "^0.12.10",
"@q-dev/q-ui-kit": "^1.0.0-rc.4",
"@q-dev/react-hooks": "^1.0.0-rc.1",
"@q-dev/utils": "^0.1.0",
"@reduxjs/toolkit": "^1.8.3",
"@types/web3": "^1.2.2",
"axios": "^1.2.2",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"chart.js": "^3.8.0",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"detect-browser": "^5.3.0",
"ethers": "^5.6.9",
"framer-motion": "^4.1.17",
"i18next": "^21.8.10",
"i18next-browser-languagedetector": "^6.1.4",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.10",
"mitt": "^3.0.0",
"process": "^0.11.10",
"react": "^17.0.1",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-bootstrap-table2-toolkit": "^2.1.3",
"react-chartjs-2": "^4.2.0",
"react-content-loader": "^6.0.3",
"react-datepicker": "^3.8.0",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.4.6",
"react-i18next": "^11.17.2",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-toastify": "^9.1.2",
"redux": "^4.0.5",
"stream-browserify": "^3.0.0",
"styled-components": "^5.2.1",
"timeago.js": "^4.0.2",
"web3-utils": "^1.8.2"
},
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.44",
"@types/react": "^18.0.12",
"@types/react-bootstrap-table-next": "^4.0.18",
"@types/react-bootstrap-table2-paginator": "^2.1.2",
"@types/react-bootstrap-table2-toolkit": "^2.1.7",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-react": "^1.3.2",
"browserify-zlib": "^0.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"google-spreadsheet": "^3.3.0",
"react-error-overlay": "6.0.9",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-visualizer": "^5.7.1",
"typescript": "^4.7.3",
"vite": "^2.9.9",
"vite-plugin-checker": "^0.4.6",
"vite-plugin-eslint": "^1.6.1",
"web3": "^1.10.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}