forked from mars-protocol/mars-rd-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.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
{
"name": "mars-risk-dashboard",
"version": "1.0.0",
"homepage": "./",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"build": "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"
},
"lint-staged": {
"*.ts*": [
"eslint ./src/ --fix",
"prettier --write ./src/"
]
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@keplr-wallet/cosmos": "^0.12.108",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-table": "^8.19.2",
"@tippyjs/react": "^4.2.6",
"bignumber.js": "^9.1.2",
"classnames": "^2.5.1",
"debounce-promise": "^3.1.2",
"ibc-domains-sdk": "^1.1.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mobile-detect": "^1.4.5",
"mobx": "^6.13.0",
"moment": "^2.30.1",
"next": "^14.2.4",
"react": "18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-helmet-async": "^2.0.5",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.24.1",
"react-spring": "^9.7.4",
"react-toastify": "^10.0.5",
"react-use-clipboard": "^1.0.9",
"recharts": "^2.13.0-alpha.3",
"starknet": "^6.11.0",
"swr": "^2.2.5",
"tailwind-scrollbar-hide": "^1.1.7",
"zustand": "^4.5.4"
},
"devDependencies": {
"@eslint/compat": "^1.0.1",
"@svgr/webpack": "^8.1.0",
"@types/debounce-promise": "^3.1.9",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-functional": "^6.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"shelljs": "^0.8.5",
"tailwindcss": "^3.4.4",
"typescript": "5.5.3",
"typescript-eslint": "^7.16.0"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
}