-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.11 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.11 KB
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
{
"name": "magicswapv2",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "react-router dev",
"generate": "graphclient build && wagmi generate",
"build": "react-router build",
"format": "biome format --write .",
"lint": "biome lint .",
"fix": "biome check --write --unsafe .",
"knip": "knip",
"test": "vitest run",
"typecheck": "react-router typegen && tsc",
"start": "react-router-serve ./build/server/index.js",
"prepare": "husky"
},
"dependencies": {
"@epic-web/cachified": "^5.2.0",
"@hono/node-server": "^1.13.7",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-popover": "^1.0.5",
"@react-aria/i18n": "^3.7.1",
"@react-aria/numberfield": "^3.5.0",
"@react-router/fs-routes": "^7.4.0",
"@react-router/node": "^7.4.0",
"@react-router/serve": "^7.4.0",
"@react-stately/numberfield": "^3.4.1",
"@resvg/resvg-js": "^2.4.1",
"@sushiswap/tines": "^1.0.3",
"@tanstack/react-query": "^5.28.6",
"@treasure-dev/connectkit": "^1.8.4",
"@treasure-project/branding": "^1.2.0",
"abitype": "^1.0.8",
"buffer-polyfill": "npm:buffer@^6.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"decimal.js-light": "^2.5.1",
"framer-motion": "^12.0.1",
"graphql": "^16.10.0",
"graphql-tag": "^2.12.6",
"hono": "^4.6.16",
"hono-react-router-adapter": "^0.6.3",
"isbot": "^5.1.7",
"lru-cache": "^11.0.0",
"lucide-react": "0.x",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^7.4.0",
"react-use": "^17.5.1",
"react-use-measure": "^2.1.1",
"react-wrap-balancer": "^1.1.0",
"remix-utils": "^8.0.0",
"satori": "^0.12.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tiny-invariant": "^1.3.1",
"viem": "^2.8.16",
"wagmi": "^2.5.11",
"zod": "^3.22.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@graphprotocol/client-cli": "^3.0.3",
"@react-router/dev": "^7.4.0",
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@treasure-project/tailwind-config": "^2.1.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.2.1",
"@wagmi/cli": "^2.1.3",
"autoprefixer": "^10.4.19",
"husky": "^9.0.11",
"jsdom": "^26.0.0",
"knip": "^5.25.1",
"lint-staged": "^15.2.5",
"tailwind-scrollbar": "^3.0.4",
"tailwindcss": "^3.2.7",
"tailwindcss-animate": "^1.0.5",
"type-fest": "^4.25.0",
"typescript": "^5.1.3",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^3.0.3"
},
"optionalDependencies": {
"@biomejs/cli-linux-x64": "^1.9.4",
"@esbuild/linux-x64": "^0.24.0",
"@resvg/resvg-js-linux-x64-gnu": "^2.6.2",
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"app/**/{*.ts,*.tsx}": "npm run fix"
}
}