-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.65 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
{
"name": "mantlewallet",
"version": "2.0.0",
"private": false,
"description": "Default wallet app for AssetMantle",
"homepage": "https://wallet.assetmantle.one/",
"main": "pages/index.jsx",
"author": "KOMBOS <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AssetMantle/wallet.git"
},
"bugs": {
"url": "https://github.com/AssetMantle/wallet/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix --dir .",
"prepare": "husky install",
"format": "prettier --write .",
"pre-commit": "yarn lint && yarn format && git add -A ."
},
"dependencies": {
"@chakra-ui/icons": "2.0.11",
"@chakra-ui/react": "2.3.7",
"@cosmjs/amino": "^0.29.3",
"@cosmjs/cosmwasm-stargate": "0.29.3",
"@cosmjs/encoding": "^0.29.5",
"@cosmjs/math": "^0.29.3",
"@cosmjs/proto-signing": "^0.29.3",
"@cosmjs/stargate": "^0.29.3",
"@cosmjs/tendermint-rpc": "^0.29.3",
"@cosmos-kit/core": "^1.0.11",
"@cosmos-kit/cosmos-extension-metamask": "^0.9.0",
"@cosmos-kit/cosmostation": "^0.14.28",
"@cosmos-kit/keplr": "^0.32.28",
"@cosmos-kit/leap": "^0.13.28",
"@cosmos-kit/react": "^1.0.14",
"@cosmos-kit/vectis": "^0.14.28",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@maticnetwork/maticjs": "^3.6.0-beta.3",
"@maticnetwork/maticjs-web3": "^1.0.4",
"@metamask/detect-provider": "^2.0.0",
"@nivo/core": "^0.80.0",
"@nivo/sunburst": "^0.80.0",
"@osmonauts/lcd": "^0.8.0",
"@splidejs/react-splide": "^0.7.12",
"@web3modal/ethereum": "^2.1.1",
"@web3modal/react": "^2.1.1",
"bignumber.js": "^9.1.1",
"bootstrap": "^5.2.2",
"bootstrap-icons": "^1.10.3",
"chain-registry": "^1.7.0",
"cors": "^2.8.5",
"ethers": "^5.7.2",
"framer-motion": "7.6.5",
"next": "12.3.1",
"osmojs": "^16.14.0",
"qrcode": "^1.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.6.0",
"react-slick": "^0.29.0",
"react-table": "^7.8.0",
"react-toastify": "^9.1.1",
"sass": "^1.56.1",
"slick-carousel": "^1.8.1",
"sunburst-chart": "^1.16.3",
"swr": "^1.3.0",
"wagmi": "^0.11.5"
},
"devDependencies": {
"@osmonauts/telescope": "^0.75.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"eslint": "8.27.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"typescript": "4.8.4"
}
}