-
-
Notifications
You must be signed in to change notification settings - Fork 654
/
package.json
89 lines (89 loc) · 3.6 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
{
"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.0",
"@eslint-react/eslint-plugin": "^1.17.0",
"@playwright/test": "^1.49.0",
"@tanstack/config": "^0.14.0",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^11.0.0",
"jsdom": "^25.0.1",
"nx": "^19.8.11",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redaxios": "^0.5.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"typescript51": "npm:[email protected]",
"typescript52": "npm:[email protected]",
"typescript53": "npm:[email protected]",
"typescript54": "npm:[email protected]",
"typescript55": "npm:[email protected]",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"resolutions": {
"use-sync-external-store": "1.2.2"
},
"pnpm": {
"overrides": {
"eslint": "$eslint",
"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:*",
"temp-react": "0.0.0-experimental-035a41c4e-20230704",
"temp-react-dom": "0.0.0-experimental-035a41c4e-20230704"
}
}
}