-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.04 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.04 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@remix-run/react-router",
"private": true,
"scripts": {
"build": "pnpm run --filter=\"./packages/**/*\" build",
"watch": "pnpm build && pnpm run --filter=\"./packages/**/*\" --parallel build --watch",
"changes:add": "node ./scripts/changes/add.ts",
"changes:publish": "node ./scripts/changes/publish.ts",
"changes:pr": "node ./scripts/changes/pr.ts",
"changes:preview": "node ./scripts/changes/version.ts --preview",
"changes:validate": "node ./scripts/changes/validate.ts",
"changes:version": "node ./scripts/changes/version.ts",
"clean": "git clean -fdX .",
"clean:build": "git clean -fdx -e node_modules .",
"clean:integration": "node ./integration/helpers/cleanup.mjs",
"docs": "pnpm run docs:typedoc && pnpm run docs:jsdoc",
"docs:typedoc": "typedoc",
"docs:jsdoc": "node --experimental-strip-types scripts/docs.ts",
"experimental:version": "node ./scripts/experimental.ts version",
"experimental:publish": "node ./scripts/experimental.ts publish",
"format": "prettier --ignore-path .prettierignore --write .",
"format:check": "prettier --ignore-path .prettierignore --check .",
"lint": "eslint --cache .",
"playground": "node ./scripts/playground.js",
"pr-preview": "node ./scripts/pr-preview.ts",
"prerelease": "pnpm build",
"setup-installable-branch": "node scripts/setup-installable-branch.ts",
"test": "jest",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest",
"typegen": "pnpm run --recursive --parallel typegen",
"typecheck": "pnpm run --recursive --parallel typecheck",
"test:integration:run": "pnpm playwright:integration",
"test:integration": "pnpm build && pnpm test:integration:run",
"posttest:integration:run": "pnpm clean:integration",
"playwright:integration": "playwright test --config ./integration/playwright.config.ts",
"vite-ecosystem-ci:build": "pnpm build",
"vite-ecosystem-ci:before-test": "pnpm playwright install",
"vite-ecosystem-ci:test": "pnpm playwright:integration --project=chromium && pnpm clean:integration"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
],
"reporters": [
"default"
]
},
"packageManager": "pnpm@9.10.0",
"resolutions": {
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@types/react-test-renderer": "^18.3.1",
"jsdom": "22.1.0"
},
"dependencies": {
"@babel/core": "^7.27.7",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/compat": "^2.0.3",
"@manypkg/get-packages": "^1.1.3",
"@mdx-js/rollup": "^3.1.0",
"@playwright/test": "^1.58.2",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.1",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@types/react-test-renderer": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"babel-jest": "^29.7.0",
"babel-plugin-dev-expression": "^0.2.3",
"dox": "^1.0.0",
"eslint": "^10.0.3",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "next",
"fast-glob": "3.2.11",
"isbot": "^5.1.11",
"jest": "^29.6.4",
"jsonfile": "^6.1.0",
"picocolors": "^1.1.1",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"semver": "^7.5.4",
"typedoc": "^0.28.7",
"typescript": "catalog:",
"unified": "^10.1.2",
"unist-util-remove": "^3.1.0",
"vite": "^6.3.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"patchedDependencies": {
"@mdx-js/rollup": "patches/@mdx-js__rollup.patch"
},
"overrides": {
"workerd": "1.20250705.0",
"react-is": "19.1.0"
}
}
}