-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.61 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
{
"name": "connect",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --force",
"preview": "vite preview",
"lint": "biome check --formatter-enabled=false",
"lint:fix": "biome check --formatter-enabled=false --write --unsafe",
"format": "prettier --write --list-different . && biome format --write",
"format:check": "biome check --linter-enabled=false",
"check": "pnpm run lint && pnpm run format:check",
"check:fix": "pnpm run lint:fix && pnpm run format"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-beta.0",
"@graphprotocol/hypergraph": "workspace:*",
"@graphprotocol/hypergraph-react": "workspace:*",
"@privy-io/react-auth": "^2.13.0",
"@tanstack/react-query": "^5.75.5",
"@tanstack/react-router": "^1.120.2",
"@tanstack/react-router-devtools": "^1.122.0",
"@xstate/store": "^3.5.1",
"clsx": "^2.1.1",
"effect": "^3.16.12",
"framer-motion": "^12.10.1",
"graphql-request": "^7.2.0",
"lucide-react": "^0.508.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.2.0",
"viem": "^2.30.6",
"vite": "^6.3.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.10",
"@tanstack/router-plugin": "^1.120.2",
"@types/node": "^22.15.15",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"prettier": "^3.6.0",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.10",
"unplugin-fonts": "^1.3.1",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-svgr": "^4.3.0"
}
}