-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/db.git"
},
"packageManager": "pnpm@10.27.0",
"type": "module",
"pnpm": {
"overrides": {
"metro": "0.82.5"
}
},
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"build:minified": "pnpm --filter \"./packages/**\" build:minified",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && tsx scripts/update-example-deps.ts && pnpm install --no-frozen-lockfile",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"lint": "pnpm --filter \"./packages/**\" lint",
"lint-all": "eslint . --fix",
"prepare": "husky",
"test": "pnpm --filter \"./packages/**\" test",
"test:docs": "node scripts/verify-links.ts",
"test:sherif": "sherif -i zod",
"generate-docs": "node scripts/generate-docs.ts"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@fast-check/vitest": "^0.2.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.3.4",
"@tanstack/typedoc-config": "0.3.3",
"@tanstack/vite-config": "0.4.3",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/use-sync-external-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-react": "^5.1.3",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-react": "^7.37.5",
"fast-check": "^3.23.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"knip": "^5.83.1",
"lint-staged": "^15.5.2",
"markdown-link-extractor": "^4.0.3",
"prettier": "^3.8.1",
"publint": "^0.3.17",
"sherif": "^1.10.0",
"shx": "^0.4.0",
"tinyglobby": "^0.2.15",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite": "^7.3.0",
"vitest": "^3.2.4",
"zod": "^3.25.76"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}