-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.64 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.64 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
117
118
119
120
121
{
"name": "mars-v2-frontend",
"version": "3.0.3",
"homepage": "./",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"build": "yarn install-charting-library && next build",
"dev": "next dev",
"lint": "eslint ./src/ && yarn prettier-check",
"format": "eslint ./src/ --fix && prettier --write ./src/ ",
"prettier-check": "prettier --ignore-path .gitignore --check ./src/",
"start": "next start",
"install-charting-library": "dotenv -e .env.local node install_charting_library.js"
},
"lint-staged": {
"*.ts*": [
"eslint ./src/ --fix",
"prettier --write ./src/"
]
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.37.0",
"@delphi-labs/shuttle-react": "^4.3.0",
"@keplr-wallet/cosmos": "^0.12.285",
"@next/eslint-plugin-next": "^16.0.1",
"@react-native-async-storage/async-storage": "^2.2.0",
"@skip-go/client": "^1.5.9",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-table": "^8.21.3",
"@tippyjs/react": "^4.2.6",
"@vercel/analytics": "^1.5.0",
"@vercel/og": "^0.8.5",
"@web3modal/wagmi": "^5.1.11",
"axios": "^1.13.1",
"bignumber.js": "^9.3.1",
"bitcoinjs-lib": "^7.0.0",
"classnames": "^2.5.1",
"debounce-promise": "^3.1.2",
"graphql-request": "^7.3.1",
"ibc-domains-sdk": "^1.1.0",
"isbot": "^5.1.31",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mobx": "^6.15.0",
"moment": "^2.30.1",
"next": "15.5.4",
"react": "19.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.0",
"react-draggable": "^4.5.0",
"react-helmet-async": "^2.0.5",
"react-qr-code": "^2.0.18",
"react-router-dom": "^7.9.5",
"react-spring": "^10.0.3",
"react-toastify": "^11.0.5",
"react-use-clipboard": "^1.0.9",
"recharts": "^3.3.0",
"sharp": "^0.34.4",
"starknet": "^7.6.4",
"swr": "^2.3.6",
"viem": "^2.38.5",
"wagmi": "^2.19.1",
"zustand": "5.0.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@eslint/compat": "^1.4.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/postcss": "^4.1.16",
"@types/debounce-promise": "^3.1.9",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^24.9.2",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"autoprefixer": "^10.4.21",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-functional": "^9.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"react-native-web": "^0.21.2",
"shelljs": "^0.10.0",
"stream-browserify": "^3.0.0",
"tailwind-scrollbar-hide": "^4.0.0",
"tailwindcss": "3.4.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"overrides": {
"chalk": "5.3.0",
"strip-ansi": "7.1.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
}