-
-
Notifications
You must be signed in to change notification settings - Fork 711
/
package.json
90 lines (90 loc) · 3.56 KB
/
package.json
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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TanStack/router.git"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"cleanNodeModules": "pnpm -r exec rm -rf node_modules",
"clean": "pnpm --filter \"./packages/**\" run clean",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.info('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm run test:ci",
"test:pr": "nx affected --targets=test:eslint,test:unit,test:e2e,test:types,test:build,build",
"test:ci": "nx run-many --targets=test:eslint,test:unit,test:e2e,test:types,test:build,build",
"test:eslint": "nx affected --target=test:eslint --exclude=examples/**,e2e/**",
"test:format": "pnpm run prettier --check",
"test:unit": "nx affected --target=test:unit --exclude=examples/**,e2e/**",
"test:unit:dev": "pnpm run test:unit && nx watch --all -- pnpm run test:unit",
"test:build": "nx affected --target=test:build --exclude=examples/**",
"test:types": "nx affected --target=test:types --exclude=examples/**",
"test:e2e": "nx run-many --target=test:e2e",
"build": "nx affected --target=build --exclude=e2e/** --exclude=examples/**",
"build:all": "nx run-many --target=build --exclude=examples/** --exclude=e2e/**",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
"dev": "pnpm run watch",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"cipublish": "node scripts/publish.js",
"gpt-generate": "node gpt/generate.js"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@eslint-react/eslint-plugin": "^1.22.1",
"@playwright/test": "^1.49.1",
"@tanstack/config": "^0.15.0",
"@tanstack/react-query": "5.62.3",
"@types/node": "^22.10.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"tinyglobby": "^0.2.10",
"jsdom": "^25.0.1",
"nx": "^20.3.0",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redaxios": "^0.5.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript52": "npm:[email protected]",
"typescript53": "npm:[email protected]",
"typescript54": "npm:[email protected]",
"typescript55": "npm:[email protected]",
"typescript56": "npm:[email protected]",
"vite": "6.0.3",
"vitest": "^2.1.8"
},
"resolutions": {
"use-sync-external-store": "1.2.2"
},
"pnpm": {
"overrides": {
"eslint": "$eslint",
"vite": "$vite",
"@tanstack/react-query": "5.62.3",
"use-sync-external-store": "1.2.2",
"@tanstack/history": "workspace:*",
"@tanstack/react-cross-context": "workspace:*",
"@tanstack/react-router": "workspace:*",
"@tanstack/router-cli": "workspace:*",
"@tanstack/router-devtools": "workspace:*",
"@tanstack/router-generator": "workspace:*",
"@tanstack/virtual-file-routes": "workspace:*",
"@tanstack/router-plugin": "workspace:*",
"@tanstack/router-vite-plugin": "workspace:*",
"@tanstack/react-router-with-query": "workspace:*",
"@tanstack/zod-adapter": "workspace:*",
"@tanstack/valibot-adapter": "workspace:*",
"@tanstack/arktype-adapter": "workspace:*",
"@tanstack/start": "workspace:*",
"@tanstack/start-vite-plugin": "workspace:*",
"@tanstack/eslint-plugin-router": "workspace:*"
}
}
}