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
104 lines (104 loc) · 3.37 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.37 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tanstack/db.git"
},
"packageManager": "pnpm@10.19.0",
"type": "module",
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"build:minified": "pnpm --filter \"./packages/**\" build:minified",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"docs:generate": "tsx scripts/generateDocs.ts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "pnpm --filter \"./packages/**\" lint",
"lint-all": "eslint . --fix",
"prepare": "husky",
"test": "pnpm --filter \"./packages/**\" test",
"test:verify-links": "node scripts/verify-links.ts"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^4.4.1",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/config": "^0.22.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^24.6.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/use-sync-external-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"knip": "^5.66.3",
"lint-staged": "^15.5.2",
"markdown-link-extractor": "^4.0.2",
"mitt": "^3.0.1",
"prettier": "^3.6.2",
"publint": "^0.3.15",
"sherif": "^1.7.0",
"shx": "^0.4.0",
"tinyglobby": "^0.2.15",
"typescript": "^5.9.2",
"vite": "^7.1.12",
"vitest": "^3.2.4",
"zod": "^3.25.76"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"workspaces": [
"packages/*",
"examples/*",
"examples/react/*"
],
"overrides": {
"@tanstack/angular-db": "workspace:*",
"@tanstack/db": "workspace:*",
"@tanstack/db-ivm": "workspace:*",
"@tanstack/electric-db-collection": "workspace:*",
"@tanstack/offline-transactions": "workspace:*",
"@tanstack/powersync-db-collection": "workspace:*",
"@tanstack/query-db-collection": "workspace:*",
"@tanstack/react-db": "workspace:*",
"@tanstack/rxdb-db-collection": "workspace:*",
"@tanstack/solid-db": "workspace:*",
"@tanstack/svelte-db": "workspace:*",
"@tanstack/trailbase-db-collection": "workspace:*",
"@tanstack/vue-db": "workspace:*"
},
"pnpm": {
"overrides": {
"@tanstack/angular-db": "workspace:*",
"@tanstack/db": "workspace:*",
"@tanstack/db-ivm": "workspace:*",
"@tanstack/electric-db-collection": "workspace:*",
"@tanstack/offline-transactions": "workspace:*",
"@tanstack/powersync-db-collection": "workspace:*",
"@tanstack/query-db-collection": "workspace:*",
"@tanstack/react-db": "workspace:*",
"@tanstack/rxdb-db-collection": "workspace:*",
"@tanstack/solid-db": "workspace:*",
"@tanstack/svelte-db": "workspace:*",
"@tanstack/trailbase-db-collection": "workspace:*",
"@tanstack/vue-db": "workspace:*"
}
},
"dependencies": {
"tsx": "^4.20.6"
}
}