forked from TanStack/db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "@tanstack/db-example-react-todo",
"private": true,
"version": "0.1.24",
"dependencies": {
"@tanstack/electric-db-collection": "^0.2.40",
"@tanstack/query-core": "^5.90.20",
"@tanstack/query-db-collection": "^1.0.29",
"@tanstack/react-db": "^0.1.76",
"@tanstack/react-router": "^1.159.5",
"@tanstack/react-start": "^1.159.5",
"@tanstack/trailbase-db-collection": "^0.1.76",
"cors": "^2.8.6",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"express": "^5.2.1",
"postgres": "^3.4.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"trailbase": "^0.8.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.1.18",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.2.2",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-react": "^5.1.3",
"concurrently": "^9.2.1",
"dotenv": "^17.2.4",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"pg": "^8.18.0",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite": "^7.3.0"
},
"scripts": {
"build": "vite build",
"db:ensure-config": "tsx scripts/ensure-default-config.ts",
"db:generate": "drizzle-kit generate",
"db:push": "tsx scripts/migrate.ts",
"db:studio": "drizzle-kit studio",
"dev": "docker compose up -d && vite dev",
"lint": "eslint . --fix",
"preview": "vite preview"
},
"type": "module"
}