-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
118 lines (118 loc) · 3.55 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
{
"name": "aptos-explorer",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"pnpm": {
"overrides": {
"axios": ">=1.7.4",
"d3-color": ">=3.1.0"
}
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@aptos-labs/ts-sdk": "1.31.0",
"@aptos-labs/wallet-adapter-mui-design": "^3.0.18",
"@aptos-labs/wallet-adapter-react": "^3.7.4",
"@bitget-wallet/aptos-wallet-adapter": "^0.1.2",
"@blocto/aptos-wallet-adapter-plugin": "^0.2.11",
"@download/blockies": "^1.0.3",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@martianwallet/aptos-wallet-adapter": "^0.0.5",
"@msafe/aptos-wallet-adapter": "^1.1.3",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/system": "^6.1.6",
"@mui/x-date-pickers": "^7.22.1",
"@okwallet/aptos-wallet-adapter": "^0.0.7",
"@pontem/wallet-adapter-plugin": "^0.2.1",
"@rise-wallet/wallet-adapter": "^0.1.2",
"@sentry/react": "^8.36.0",
"@tanstack/react-query": "^5.59.19",
"@tp-lab/aptos-wallet-adapter": "^1.0.1",
"@trustwallet/aptos-wallet-adapter": "^0.1.6",
"@welldone-studio/aptos-wallet-adapter": "^0.1.5",
"aptos": "^1.21.0",
"aptos-node-checker-client": "0.0.5",
"chart.js": "^4.4.6",
"date-fns": "^4.1.0",
"eslint-plugin-html": "^8.1.2",
"graphql": "^16.8.1",
"js-sha3": "^0.9.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"pako": "^2.1.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.53.1",
"react-intersection-observer": "^9.13.1",
"react-json-view": "^1.21.3",
"react-loading-skeleton": "^3.5.0",
"react-number-format": "^5.4.2",
"react-router-dom": "^6.27.0",
"react-simple-maps": "^3.0.0",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.13.3",
"statsig-react": "^2.1.0"
},
"scripts": {
"start": "vite --port 3000",
"dev": "vite --port 3000",
"build": "tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "tsc --noEmit && eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fmt": "prettier --write '**/*.(js|jsx|ts|tsx|json|css|scss|md)'",
"test": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*": [
"prettier --config .prettierrc.json -w",
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.17.13",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.12",
"@types/react-addons-perf": "^15.4.2",
"@types/react-dom": "^18.3.1",
"@types/react-gtm-module": "^2.0.4",
"@types/react-simple-maps": "^3.0.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-results": "^3.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.4"
}
}