forked from thepower/PowerHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.58 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "power_wallet",
"version": "1.0.0",
"description": "thepower wallet",
"author": "thepower",
"license": "ISC",
"type": "module",
"scripts": {
"lint": "eslint --ext js,ts,tsx src",
"start": "vite dev --mode dev",
"start-prod": "vite dev --mode prod",
"start-100501": "vite dev --mode c100501",
"start:network": "vite dev --mode network",
"build": "vite build --mode dev",
"build-test": "vite build --mode test",
"build-prod": "vite build --mode prod",
"build-100501": "vite build --mode c100501",
"preview": "vite preview",
"prettier": "prettier --check .",
"prettier:format": "prettier --write .",
"loadLocales": "node --experimental-modules --es-module-specifier-resolution=node src/loadLocales.mjs",
"bundle-size": "vite-bundle-visualizer",
"tar": "tar -C build -zcvf tars/${0}.tar.gz ."
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.78",
"@mui/material": "^5.6.2",
"@mui/styles": "^5.6.2",
"@reown/appkit": "^1.5.3",
"@reown/appkit-adapter-wagmi": "^1.5.3",
"@tanstack/query-persist-client-core": "^5.62.2",
"@tanstack/react-query": "^5.62.2",
"@thepowereco/tssdk": "^2.2.14-canary.0",
"axios": "^1.6.8",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"classnames": "^2.3.1",
"date-fns": "^3.6.0",
"ecpair": "^2.0.1",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"i18next": "^23.2.8",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-countdown": "^2.3.6",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-router-dom": "^6.26.1",
"react-toastify": "^9.1.0",
"viem": "^2.21.54",
"wagmi": "^2.13.3",
"yup": "^0.32.11",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@swc/core": "^1.7.36",
"@swc/plugin-emotion": "^4.0.3",
"@types/bs58": "^4.0.4",
"@types/file-saver": "^2.0.7",
"@types/node": "20.7.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "4.1.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"csv-parse": "^4.16.3",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react": "1.1.7",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"googleapis": "^120.0.0",
"prettier": "3.0.3",
"sass": "^1.80.4",
"typescript": "5.2.2",
"vite": "^5.4.9",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"browserslist": {
"production": [
"chrome > 52",
"opera > 39",
"edge > 14",
"firefox > 52",
"safari > 10.1",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.5.1"
}