-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.47 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
{
"name": "react-flow-multiplayer-tanstack-db",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"deploy": "pnpm run build && wrangler deploy",
"db": "drizzle-kit",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"ui": "pnpm dlx shadcn@latest",
"auth": "pnpm dlx auth@latest"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@better-auth/drizzle-adapter": "^1.5.5",
"@fontsource-variable/dm-sans": "^5.2.8",
"@remixicon/react": "^4.9.0",
"@t3-oss/env-core": "^0.13.10",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/db": "^0.6.1",
"@tanstack/offline-transactions": "^1.0.26",
"@tanstack/query-core": "^5.96.1",
"@tanstack/query-db-collection": "1.0.32",
"@tanstack/react-db": "0.1.79",
"@tanstack/react-devtools": "0.10.1",
"@tanstack/react-query": "5.96.1",
"@tanstack/react-query-devtools": "5.96.1",
"@tanstack/react-router": "1.168.10",
"@tanstack/react-router-devtools": "1.166.11",
"@tanstack/react-router-ssr-query": "1.166.10",
"@tanstack/react-start": "1.167.16",
"@tanstack/router-plugin": "^1.132.0",
"@xyflow/react": "^12.10.2",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.577.0",
"perfect-cursors": "^1.0.5",
"postgres": "^3.4.8",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shadcn": "^4.0.8",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.3.6",
"use-debounce": "^10.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "0.6.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.4",
"dotenv": "^17.3.1",
"jsdom": "^28.1.0",
"nitro": "^3.0.260311-beta",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}