-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 3.05 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
{
"name": "unicove",
"version": "2.0.0-alpha",
"private": true,
"scripts": {
"dev": "vite dev",
"build-paraglide": "npx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide",
"build": "bun run build-paraglide && vite build",
"build-docker": "bun run build-paraglide && ADAPTER=bun vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "rm -rf ./.svelte-kit ./node_modules ./src/paraglide",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "bun test"
},
"devDependencies": {
"@inlang/paraglide-js": "^1.11.3",
"@inlang/paraglide-sveltekit": "^0.11.5",
"@inlang/paraglide-vite": "^1.2.76",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.83.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-cloudflare": "^4.7.0",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@types/big.js": "^6.2.2",
"@types/bun": "^1.1.10",
"@types/eslint": "^8.56.11",
"autoprefixer": "^10.4.19",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.8.0",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "^5.1.9",
"svelte-adapter-bun": "^0.5.2",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.7",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^5.3.5"
},
"type": "module",
"dependencies": {
"@accuser/svelte-plausible-analytics": "^1.0.0",
"@coinbase/cbpay-js": "^2.4.0",
"@fontsource/jetbrains-mono": "^5.1.0",
"@tailwindcss/container-queries": "^0.1.1",
"@wharfkit/account": "^1.2.0",
"@wharfkit/account-creation-plugin-greymass": "^1.2.0",
"@wharfkit/account-creation-plugin-metamask": "^1.1.1",
"@wharfkit/antelope": "^1.0.11",
"@wharfkit/common": "^1.4.0",
"@wharfkit/contract": "^1.1.5",
"@wharfkit/resources": "^1.3.1",
"@wharfkit/roborovski": "^1.1.0",
"@wharfkit/session": "^1.4.0",
"@wharfkit/transact-plugin-resource-provider": "^1.1.1",
"@wharfkit/wallet-plugin-anchor": "^1.4.0",
"@wharfkit/wallet-plugin-metamask": "^1.1.1",
"@wharfkit/wallet-plugin-privatekey": "^1.1.0",
"@wharfkit/wallet-plugin-scatter": "^1.5.1",
"@wharfkit/wallet-plugin-tokenpocket": "^1.5.1",
"@wharfkit/wallet-plugin-wombat": "^1.5.1",
"@wharfkit/web-renderer": "^1.4.1",
"big.js": "^6.2.1",
"chart.js": "^4.4.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"inter-ui": "^4.0.2",
"just-extend": "^6.2.0",
"lucide-svelte": "^0.424.0",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-sort-json": "^4.0.0",
"runed": "^0.15.3",
"svead": "^0.0.13",
"tailwind-merge": "^2.5.3",
"typescript-svelte-plugin": "^0.3.40"
},
"resolutions": {
"@wharfkit/antelope": "^1.0.11",
"@wharfkit/common": "^1.4.0",
"@wharfkit/session": "^1.4.0",
"svelte": "^5.1.9"
}
}