-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.43 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.43 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
{
"name": "react-wallet-v2",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"prettier": "prettier --check '**/*.{js,ts,jsx,tsx}'",
"prettier:write": "prettier --write '**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@cosmjs/amino": "0.32.3",
"@cosmjs/encoding": "0.32.3",
"@cosmjs/proto-signing": "0.32.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethersproject/providers": "^5.8.0",
"@json-rpc-tools/utils": "1.7.6",
"@kadena/cryptography-utils": "^0.4.0",
"@kadena/types": "^0.6.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@multiversx/sdk-core": "12.18.0",
"@multiversx/sdk-wallet": "4.2.0",
"@mysten/sui": "^1.29.1",
"@near-wallet-selector/wallet-utils": "^8.0.0",
"@nextui-org/react": "1.0.8-beta.5",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^3.0.0",
"@polkadot/keyring": "^10.1.2",
"@polkadot/types": "^9.3.3",
"@polkadot/util": "^10.1.2",
"@polkadot/util-crypto": "^10.1.2",
"@reown/appkit-experimental": "1.6.8",
"@reown/walletkit": "1.3.0-canary-auth-2",
"@rhinestone/module-sdk": "0.1.25",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "1.98.2",
"@stacks/network": "^7.2.0",
"@stacks/transactions": "^7.2.0",
"@stacks/wallet-sdk": "^7.0.6",
"@taquito/local-forging": "^23.0.1",
"@taquito/signer": "^15.1.0",
"@taquito/taquito": "^15.1.0",
"@ton/core": "^0.61.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.3.1",
"@types/semver": "^7.5.8",
"@walletconnect/core": "2.22.4-canary-auth-3",
"@walletconnect/ethereum-provider": "2.22.4-canary-auth-3",
"@walletconnect/sign-client": "2.22.4-canary-auth-3",
"@walletconnect/types": "2.22.4-canary-auth-3",
"@walletconnect/universal-provider": "2.22.4-canary-auth-3",
"@walletconnect/utils": "2.22.4-canary-auth-3",
"@zerodev/ecdsa-validator": "5.3.0",
"@zerodev/presets": "5.3.0",
"@zerodev/sdk": "5.3.1",
"@zerodev/session-key": "5.4.0",
"@zerodev/weighted-ecdsa-validator": "5.3.0",
"axios": "^1.12.2",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"bitcoinjs-message": "^2.2.0",
"borsh": "^1.0.0",
"bs58": "6.0.0",
"cosmos-wallet": "1.2.0",
"crc-32": "^1.2.2",
"ecpair": "^2.1.0",
"ed25519-hd-key": "^1.3.0",
"ethers": "5.7.2",
"framer-motion": "6.5.1",
"graphql": "^16.8.2",
"near-api-js": "^0.45.0",
"near-seed-phrase": "^0.2.1",
"next": "15",
"permissionless": "0.1.43",
"react": "18.2.0",
"react-code-blocks": "0.1.5",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-qr-reader-es6": "2.2.1-2",
"solana-wallet": "^1.0.2",
"tiny-secp256k1": "^2.2.3",
"tronweb": "^6.0.4",
"tweetnacl": "^1.0.3",
"valtio": "1.13.2",
"viem": "2.17.8",
"webauthn-p256": "0.0.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/react": "18.2.61",
"@types/react-dom": "18.2.19",
"eslint": "8.15.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-package-json": "^0.13.1",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "2.6.2",
"typescript": "5.2.2"
}
}