forked from y3fers0n/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.72 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
{
"name": "example",
"version": "2.11.10",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export",
"postexport": "npm run seo",
"seo": "node ./seo/seo.js",
"deploy": "AWS_PROFILE=webinc aws s3 sync out/ s3://test.cosmoskit.com",
"invalidate": "AWS_PROFILE=webinc aws cloudfront create-invalidation --distribution-id E1J4F8FDME5L4Z --paths \"/*\"",
"deploy:all": "npm run export && npm run deploy && ./seo/prepare.sh"
},
"overrides": {
"next": {
"@swc/helpers": "0.5.1"
}
},
"dependencies": {
"@cosmjs/amino": ">=0.32.2",
"@cosmjs/cosmwasm-stargate": ">=0.32.2",
"@cosmjs/math": "0.29.0",
"@cosmjs/proto-signing": ">=0.32.2",
"@cosmjs/stargate": ">=0.32.2",
"@cosmos-kit/coin98": "^2.6.10",
"@cosmos-kit/core": "^2.8.9",
"@cosmos-kit/cosmostation": "^2.6.10",
"@cosmos-kit/fin": "^2.6.9",
"@cosmos-kit/ins": "^2.1.6",
"@cosmos-kit/keplr": "^2.6.9",
"@cosmos-kit/leap": "^2.6.9",
"@cosmos-kit/leap-capsule-social-login": "^0.3.13",
"@cosmos-kit/leap-metamask-cosmos-snap": "^0.6.0",
"@cosmos-kit/ledger": "^2.6.9",
"@cosmos-kit/react": "^2.10.9",
"@cosmos-kit/shell": "^2.6.9",
"@cosmos-kit/station": "^2.5.9",
"@cosmos-kit/vectis": "^2.6.9",
"@cosmos-kit/web3auth": "^2.5.9",
"@interchain-ui/react": "^1.21.8",
"@leapwallet/cosmos-social-login-capsule-provider-ui": "^0.0.47",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"@web3modal/core": "^2.0.0-rc.1",
"@web3modal/ui": "^2.0.0-rc.1",
"bignumber.js": "^9.1.1",
"bootstrap": "^5.3.2",
"chain-registry": "^1.23.0",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cosmjs-types": ">=0.9.0",
"cosmjs-utils": "0.1.0",
"juno-network": "^0.15.1",
"next": "^13",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-icons": "4.7.1",
"react-no-ssr": "^1.1.0",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@babel/preset-env": "7.22.7",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@next/bundle-analyzer": "^13.4.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.14",
"babel-loader": "9.1.2",
"babel-plugin-inline-import-data-uri": "1.0.1",
"next-transpile-modules": "^10.0.0",
"postcss": "8.4.24",
"shadcn-ui": "0.2.3",
"tailwindcss": "3.3.2",
"typescript": "^5"
}
}