-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
83 lines (83 loc) · 2.58 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
{
"name": "white-whale-migaloo-frontend",
"homepage": "/",
"version": "1.2.5",
"scripts": {
"dev": "next dev",
"build": "git rev-parse HEAD | xargs -I '{}' echo '{\"version\": \"{}\"}' > app_version.json && next build",
"prep-build": "next build",
"start": "next start",
"lint": "npx eslint . --fix",
"unimported": "npx unimported",
"prettier:write": "prettier --write .",
"prettier": "prettier \"**/*.{ts,md}\" --list-different",
"format:yaml": "prettier --check \"**/*.{yml}\" --write",
"format:code": "prettier \"**/*.{ts,md}\" --write",
"typecheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@cosmjs/encoding": "0.32.2",
"@cosmjs/launchpad": "0.27.1",
"@cosmjs/proto-signing": "0.32.2",
"@cosmos-kit/cosmostation": "^2.8.0",
"@cosmos-kit/keplr": "^2.8.0",
"@cosmos-kit/galaxy-station": "^2.6.2",
"@cosmos-kit/leap": "^2.8.0",
"@cosmos-kit/ninji": "^2.8.0",
"@cosmos-kit/okxwallet": "^2.6.0",
"@cosmos-kit/react-lite": "^2.8.0",
"@cosmos-kit/shell": "^2.8.0",
"@cosmos-kit/station": "^2.7.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@injectivelabs/sdk-ts": "1.14.13",
"@next/bundle-analyzer": "^14.2.3",
"@nick134-bit/nicks-injectivejs": "^0.0.3",
"@tanstack/react-table": "^8.16.0",
"@terra-money/feather.js": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"bignumber.js": "^9.1.2",
"chain-registry": "^1.63.61",
"dayjs": "^1.11.11",
"eslint-plugin-import-helpers": "^1.3.1",
"intercept-stdout": "^0.1.2",
"isomorphic-unfetch": "^4.0.2",
"jsoneditor": "^10.0.3",
"junoblocks": "^0.2.93",
"lodash": "^4.17.21",
"next": "14.2.3",
"numeral": "^2.0.6",
"react": "^18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-query": "^3.39.3",
"recharts": "^2.12.7",
"recoil": "^0.7.7"
},
"devDependencies": {
"@keplr-wallet/types": "^0.12.88",
"@types/react": "18.2.57",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"lint-staged": {
"**/*.{ts,md,tsx}": "prettier --write"
},
"peerDependencies": {
"prop-types": "15.8.1"
}
}