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
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/db.git"
},
"packageManager": "pnpm@10.24.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",
"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.1",
"@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": "^24.6.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/use-sync-external-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"knip": "^5.71.0",
"lint-staged": "^15.5.2",
"markdown-link-extractor": "^4.0.3",
"prettier": "^3.7.4",
"publint": "^0.3.15",
"sherif": "^1.9.0",
"shx": "^0.4.0",
"tinyglobby": "^0.2.15",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite": "^7.2.6",
"vitest": "^3.2.4",
"zod": "^3.25.76"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}