forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.26 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.26 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/query.git"
},
"packageManager": "pnpm@10.24.0",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
"test": "pnpm run test:ci",
"test:pr": "nx affected --targets=test:sherif,test:knip,test:docs,test:eslint,test:lib,test:types,test:build,build",
"test:ci": "nx run-many --targets=test:sherif,test:knip,test:docs,test:eslint,test:lib,test:types,test:build,build",
"test:eslint": "nx affected --target=test:eslint",
"test:sherif": "sherif -i typescript -p \"./integrations/*\" -p \"./examples/*\"",
"test:lib": "nx affected --target=test:lib --exclude=examples/**",
"test:lib:dev": "pnpm run test:lib && nx watch --all -- pnpm run test:lib",
"test:build": "nx affected --target=test:build --exclude=examples/**",
"test:types": "nx affected --target=test:types --exclude=examples/**",
"test:knip": "knip",
"test:docs": "node scripts/verify-links.ts",
"build": "nx affected --target=build --exclude=examples/** --exclude=integrations/**",
"build:all": "nx run-many --target=build --exclude=examples/** --exclude=integrations/**",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
"dev": "pnpm run watch",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"generate-docs": "node scripts/generate-docs.ts",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format",
"changeset:publish": "changeset publish"
},
"nx": {
"includedScripts": [
"test:docs",
"test:knip",
"test:sherif"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@changesets/cli": "^2.29.8",
"@cspell/eslint-plugin": "^9.2.1",
"@eslint-react/eslint-plugin": "^2.0.1",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.3.2",
"@tanstack/typedoc-config": "0.3.1",
"@tanstack/vite-config": "0.4.3",
"@testing-library/jest-dom": "^6.8.0",
"@types/node": "^22.15.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/eslint-plugin": "^1.1.36",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^6.1.1",
"jsdom": "^27.0.0",
"knip": "^5.63.1",
"markdown-link-extractor": "^4.0.2",
"nx": "22.1.3",
"premove": "^4.0.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.0",
"publint": "^0.3.13",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sherif": "^1.6.1",
"tinyglobby": "^0.2.15",
"tsup": "^8.4.0",
"typescript": "5.8.3",
"typescript50": "npm:typescript@5.0",
"typescript51": "npm:typescript@5.1",
"typescript52": "npm:typescript@5.2",
"typescript53": "npm:typescript@5.3",
"typescript54": "npm:typescript@5.4",
"typescript55": "npm:typescript@5.5",
"typescript56": "npm:typescript@5.6",
"typescript57": "npm:typescript@5.7",
"vite": "^6.3.6",
"vitest": "3.2.4"
},
"pnpm": {
"overrides": {
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2"
}
}
}