-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
108 lines (108 loc) · 3.64 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npm_config_yes=true npx serve@latest build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest --run",
"typecheck": "tsc --project tsconfig.json --noEmit",
"postinstall": "patch-package"
},
"dependencies": {
"temporal-polyfill": "^0.2.5",
"mode-watcher": "0.5.0",
"svelte-sonner": "^0.3.27",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/query-core": "5.61.5",
"@tanstack/svelte-query": "5.61.5",
"@tanstack/svelte-table": "^8.20.5",
"@tanstack/svelte-virtual": "3.10.9",
"@unionlabs/client": "0.0.53",
"@wagmi/connectors": "5.7.5",
"@wagmi/core": "2.16.3",
"bits-ui": "^0.21.13",
"cmdk-sv": "^0.0.18",
"gql.tada": "1.8.10",
"graphql-request": "7.1.2",
"svelte-persisted-store": "^0.11.0",
"svelte-radix": "^1.1.1",
"three": "0.170.0",
"valibot": "0.42.1",
"vaul-svelte": "^0.3.2",
"viem": "2.22.13"
},
"devDependencies": {
"@iconify-json/fa6-solid": "1.2.2",
"@iconify-json/logos": "^1.2.0",
"@iconify-json/lucide": "^1.2.3",
"@iconify-json/mdi": "^1.2.0",
"@iconify-json/tabler": "1.2.8",
"@keplr-wallet/types": "0.12.157",
"@leapwallet/types": "^0.0.5",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.83.0",
"@svelte-put/shortcut": "^3.1.1",
"@sveltejs/adapter-static": "3.0.6",
"@sveltejs/kit": "2.8.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/svelte-query-devtools": "5.61.5",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "22.10.1",
"@types/postcss-import": "^14.0.3",
"@types/three": "0.170.0",
"autoprefixer": "10.4.20",
"clsx": "^2.1.1",
"fluid-tailwind": "1.0.4",
"graphql": "^16.9.0",
"patch-package": "^8.0.0",
"postcss": "8.4.49",
"postcss-import": "^16.1.0",
"svelte": "^4.2.19",
"svelte-check": "^4.0.1",
"svelte-preprocess": "^6.0.2",
"tailwind-merge": "2.5.5",
"tailwind-scrollbar": "^3.1.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "3.4.15",
"tailwindcss-animate": "^1.0.7",
"tslib": "2.8.1",
"tsx": "4.19.2",
"typed-query-selector": "^2.12.0",
"typescript": "5.7.2",
"unplugin-icons": "0.20.2",
"vite": "5.4.11",
"vite-plugin-inspect": "0.10.1",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-tailwind-purgecss": "^0.3.3",
"vitest": "2.1.6"
},
"overrides": {
"globalthis": "npm:@nolyfill/globalthis@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-arguments": "npm:@nolyfill/is-arguments@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"is-typed-array": "npm:@nolyfill/is-typed-array@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"json-stable-stringify": "npm:@nolyfill/json-stable-stringify@^1",
"which-typed-array": "npm:@nolyfill/which-typed-array@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"assert": "npm:@nolyfill/assert@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1"
}
}