-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "@cosmology/interchain-kit-demo",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"locks:remove": "rm -f yarn.lock",
"locks:create": "generate-lockfile --lockfile ../../yarn.lock --package package.json --write yarn.lock --force",
"locks": "npm run locks:remove && npm run locks:create",
"run-ganache": "bash scripts/run-ganache.sh",
"deploy-contract": "ts-node contract/eip721/deploy.ts"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9"
},
"dependencies": {
"@chain-registry/types": "0.16.0",
"@chain-registry/utils": "1.13.2",
"@chain-registry/v2": "^1.71.7",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmology/telescope": "^1.10.3",
"@interchain-kit/core": "0.0.1-beta.39",
"@interchain-kit/keplr-extension": "0.0.1-beta.39",
"@interchain-kit/leap-extension": "0.0.1-beta.39",
"@interchain-kit/ledger": "0.0.1-beta.39",
"@interchain-kit/react": "0.0.1-beta.39",
"@interchain-ui/react": "^1.23.29",
"@interchain-ui/react-no-ssr": "^0.1.6",
"@keplr-wallet/types": "^0.12.157",
"@metamask/providers": "^18.1.1",
"@tanstack/react-query": "4.29.1",
"bech32": "^2.0.0",
"bignumber.js": "9.1.1",
"chain-registry": "1.20.0",
"decimal.js": "^10.4.3",
"ethers": "^6.13.4",
"interchain-react": "1.6.3",
"interchainjs": "1.6.3",
"json-bigint": "^1.0.0",
"long": "^5.2.3",
"next": "^13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.6.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "4.29.1",
"@types/long": "4.0.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"generate-lockfile": "0.0.12",
"typescript": "^5.1.6"
}
}