forked from liftedinit/manifest-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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
{
"name": "@chalabi/manifest-app",
"version": "0.0.1",
"private": false,
"description": "An application to interact with the Manifest Chain",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"remove": "rm -rf node_modules/ bun.lockb $HOME/.bun/install/cache/",
"update-deps": "bunx npm-check-updates --root --format group -i"
},
"author": "Joseph Chalabi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chalabi2/manifest-app"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"**/@chain-registry/types": "0.25.0"
},
"dependencies": {
"@chain-registry/assets": "^1.42.1",
"@chalabi/manifestjs": "1.1.4",
"@cosmjs/cosmwasm-stargate": "0.32.3",
"@cosmjs/stargate": "0.32.3",
"@cosmos-kit/react": "2.18.0",
"@cosmos-kit/web3auth": "2.11.0",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@fontsource/rubik": "^5.0.20",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@interchain-ui/react": "1.21.16",
"@tanstack/react-query": "^5.20.5",
"@tanstack/react-query-devtools": "^5.20.5",
"ably": "^2.1.0",
"apexcharts": "^3.48.0",
"bowser": "^2.11.0",
"chain-registry": "1.28.1",
"copy-to-clipboard": "^3.3.2",
"cosmjs-types": "^0.9.0",
"cosmos-kit": "2.9.0",
"daisyui": "^4.12.10",
"dayjs": "^1.11.10",
"framer-motion": "9.0.7",
"identicon.js": "^2.3.3",
"interchain": "^1.10.4",
"next": "^14.1.0",
"postcss": "^8.4.35",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/crypto-js": "^4.2.2",
"@types/identicon.js": "^2.3.4",
"@types/node": "18.11.9",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"autoprefixer": "^10.4.13",
"eslint": "8.56.0",
"eslint-config-next": "13.0.5",
"tailwind-scrollbar-hide": "^1.1.7",
"typescript": "4.9.3"
},
"files": [
"."
]
}