|
5 | 5 | "type": "module", |
6 | 6 | "scripts": { |
7 | 7 | "dev": "vite --force", |
8 | | - "preview": "vite preview" |
| 8 | + "preview": "vite preview", |
| 9 | + "lint": "biome check --formatter-enabled=false", |
| 10 | + "lint:fix": "biome check --formatter-enabled=false --write --unsafe", |
| 11 | + "format": "prettier --write --list-different . && biome format --write", |
| 12 | + "format:check": "biome check --linter-enabled=false", |
| 13 | + "check": "pnpm run lint && pnpm run format:check", |
| 14 | + "check:fix": "pnpm run lint:fix && pnpm run format" |
9 | 15 | }, |
10 | 16 | "dependencies": { |
| 17 | + "@base-ui-components/react": "1.0.0-beta.0", |
| 18 | + "@graphprotocol/grc-20": "^0.21.2", |
11 | 19 | "@graphprotocol/hypergraph": "workspace:*", |
12 | 20 | "@graphprotocol/hypergraph-react": "workspace:*", |
13 | 21 | "@privy-io/react-auth": "^2.13.0", |
14 | | - "@radix-ui/react-avatar": "^1.1.9", |
15 | | - "@radix-ui/react-icons": "^1.3.2", |
16 | | - "@radix-ui/react-slot": "^1.2.2", |
17 | 22 | "@tanstack/react-query": "^5.75.5", |
18 | 23 | "@tanstack/react-router": "^1.120.2", |
19 | 24 | "@xstate/store": "^3.5.1", |
20 | | - "class-variance-authority": "^0.7.1", |
21 | 25 | "clsx": "^2.1.1", |
22 | | - "effect": "^3.16.3", |
23 | | - "framer-motion": "^12.10.1", |
| 26 | + "effect": "^3.16.10", |
24 | 27 | "graphql-request": "^7.2.0", |
25 | 28 | "lucide-react": "^0.508.0", |
26 | 29 | "react": "^19.1.0", |
27 | 30 | "react-dom": "^19.1.0", |
28 | 31 | "tailwind-merge": "^3.2.0", |
29 | | - "tailwindcss-animate": "^1.0.7", |
30 | 32 | "viem": "^2.30.6", |
31 | 33 | "vite": "^6.3.5" |
32 | 34 | }, |
33 | 35 | "devDependencies": { |
34 | | - "@tailwindcss/vite": "^4.1.5", |
| 36 | + "@tailwindcss/vite": "^4.1.10", |
35 | 37 | "@tanstack/router-devtools": "^1.120.2", |
36 | 38 | "@tanstack/router-plugin": "^1.120.2", |
37 | 39 | "@types/node": "^22.15.15", |
38 | 40 | "@types/react": "^19.1.3", |
39 | 41 | "@types/react-dom": "^19.1.3", |
40 | 42 | "@vitejs/plugin-react": "^4.4.1", |
41 | | - "tailwindcss": "^4.1.5" |
| 43 | + "prettier": "^3.6.0", |
| 44 | + "prettier-plugin-tailwindcss": "^0.6.13", |
| 45 | + "tailwindcss": "^4.1.10", |
| 46 | + "unplugin-fonts": "^1.3.1", |
| 47 | + "vite-plugin-node-polyfills": "^0.23.0", |
| 48 | + "vite-plugin-svgr": "^4.3.0" |
42 | 49 | } |
43 | 50 | } |
0 commit comments