-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
package.json
127 lines (127 loc) · 4.29 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"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": "typedoc",
"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",
"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",
"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": "[email protected]",
"resolutions": {
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"jsdom": "22.1.0"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.22.9",
"@babel/preset-modules": "^0.1.6",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.26.2",
"@manypkg/get-packages": "1.1.3",
"@mdx-js/rollup": "^3.0.0",
"@octokit/core": "^4.2.4",
"@octokit/graphql": "^4.8.0",
"@octokit/plugin-paginate-rest": "^2.21.3",
"@octokit/rest": "^18.12.0",
"@playwright/test": "^1.33.0",
"@remix-run/changelog-github": "^0.0.5",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^8.1.2",
"@types/glob": "7.2.0",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.1",
"@types/jsonfile": "^6.1.1",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.0",
"@types/semver": "^7.5.0",
"@types/shelljs": "^0.8.11",
"@types/wait-on": "^5.3.2",
"@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",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "^4.1.2",
"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-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "next",
"fs-extra": "^10.1.0",
"history": "^5.3.0",
"isbot": "^5.1.11",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.2",
"jsonfile": "^6.1.0",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"remark-gfm": "3.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"semver": "^7.5.4",
"tslib": "^2.6.2",
"type-fest": "^2.19.0",
"typedoc": "^0.26.11",
"typescript": "^5.4.5",
"undici": "^6.10.1",
"unified": "^10.1.2",
"unist-util-remove": "^3.1.0",
"vite": "^5.1.0",
"vite-env-only": "^3.0.1",
"vite-tsconfig-paths": "^4.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]",
"@changesets/[email protected]": "patches/@[email protected]"
},
"overrides": {
"workerd": "1.20240614.0"
}
}
}