mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
dd00c9055a
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52876 Our tooling detected a couple of vulnerabilities in our package.json. - undici - on-headers This change fixes these vulnerabilities. For the on-headers vulnerabilitiy specifically, it comes from the following dependency chain: - rn-tester > react-native-community/cli > compression > on-headers. To fix it, we have to force the resolution to both on-headers and compression. ## Changelog: [General][Fixed] - Fixed vulnerability on undici and on-headers Reviewed By: cortinico Differential Revision: D79086335 fbshipit-source-id: 44f14403196165f5f823030304102dbd0facd0ce
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@react-native/dev-middleware",
|
|
"version": "0.82.0-main",
|
|
"description": "Dev server middleware for React Native",
|
|
"keywords": [
|
|
"react-native",
|
|
"tools"
|
|
],
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/dev-middleware#readme",
|
|
"bugs": "https://github.com/facebook/react-native/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react-native.git",
|
|
"directory": "packages/dev-middleware"
|
|
},
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@isaacs/ttlcache": "^1.4.1",
|
|
"@react-native/debugger-frontend": "0.82.0-main",
|
|
"chrome-launcher": "^0.15.2",
|
|
"chromium-edge-launcher": "^0.2.0",
|
|
"connect": "^3.6.5",
|
|
"debug": "^4.4.0",
|
|
"invariant": "^2.2.4",
|
|
"nullthrows": "^1.1.1",
|
|
"open": "^7.0.3",
|
|
"serve-static": "^1.16.2",
|
|
"ws": "^6.2.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 20.19.4"
|
|
},
|
|
"devDependencies": {
|
|
"selfsigned": "^2.4.1",
|
|
"undici": "^5.29.0",
|
|
"wait-for-expect": "^3.0.2"
|
|
}
|
|
}
|