forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.88 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.88 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
{
"name": "@remix-run/react-router",
"private": true,
"scripts": {
"build": "pnpm run --filter=\"./packages/**/*\" build",
"watch": "pnpm build && pnpm run --filter=\"./packages/**/*\" --parallel build --watch",
"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",
"format": "prettier --ignore-path .eslintignore --write .",
"format:check": "prettier --ignore-path .eslintignore --check .",
"lint": "eslint --cache .",
"playground": "node ./scripts/playground.js",
"prerelease": "pnpm build",
"release": "changeset publish",
"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",
"changeset": "changeset",
"changeset:version": "changeset version && node ./scripts/remove-prerelease-changelogs.mjs",
"publish": "node scripts/publish.js",
"version": "node ./scripts/version"
},
"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",
"@changesets/cli": "^2.26.2",
"@manypkg/get-packages": "^1.1.3",
"@mdx-js/rollup": "^3.1.0",
"@playwright/test": "^1.49.1",
"@remix-run/changelog-github": "^0.0.5",
"@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": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.7.0",
"babel-plugin-dev-expression": "^0.2.3",
"chalk": "^4.1.2",
"dox": "^1.0.0",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^51.3.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "next",
"fast-glob": "3.2.11",
"isbot": "^5.1.11",
"jest": "^29.6.4",
"jsonfile": "^6.1.0",
"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"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"patchedDependencies": {
"@changesets/get-dependents-graph@1.3.6": "patches/@changesets__get-dependents-graph@1.3.6.patch",
"@changesets/assemble-release-plan": "patches/@changesets__assemble-release-plan.patch",
"@mdx-js/rollup": "patches/@mdx-js__rollup.patch"
},
"overrides": {
"workerd": "1.20250705.0",
"react-is": "19.1.0"
}
}
}