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
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "tanstack-start-db-projects-example",
"private": true,
"type": "module",
"scripts": {
"dev": "docker compose up -d && vite dev",
"start": "node .output/server/index.mjs",
"build": "vite build",
"migrate": "drizzle-kit migrate",
"serve": "vite preview",
"test": "vitest run",
"lint:check": "eslint .",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"@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-router-devtools": "^1.159.5",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.159.5",
"@tanstack/router-plugin": "^1.159.5",
"@trpc/client": "^11.10.0",
"@trpc/server": "^11.10.0",
"better-auth": "^1.4.18",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"pg": "^8.18.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"vite": "^7.3.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.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",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite": "^7.3.0",
"vitest": "^3.2.4",
"web-vitals": "^5.1.0"
}
}