-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 876 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 876 Bytes
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
{
"name": "@tanstack/db-collection-e2e",
"private": true,
"description": "End-to-end test suite for TanStack DB collections",
"scripts": {
"test": "echo 'This package contains shared test suites. Run tests from electric-db-collection or query-db-collection packages.'",
"docker:up": "docker compose -f docker/docker-compose.yml up -d",
"docker:down": "docker compose -f docker/docker-compose.yml down --volumes",
"docker:logs": "docker compose -f docker/docker-compose.yml logs -f"
},
"type": "module",
"dependencies": {
"@tanstack/db": "workspace:*",
"@tanstack/electric-db-collection": "workspace:*",
"@tanstack/query-db-collection": "workspace:*",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/pg": "^8.16.0",
"@vitest/ui": "^3.2.4",
"typescript": "^5.9.2",
"vite": "^7.3.0",
"vitest": "^3.2.4"
}
}