mirror of
https://github.com/facebook/react.git
synced 2026-02-24 04:33:04 +00:00
* Add Flight Build and Unify HostFormat Config between Flight and Fizz * Add basic resolution of models * Add basic Flight fixture Demonstrates the streaming protocol. * Rename to flight-server to distinguish from the client parts * Add Flight Client package and entry point * Fix fixture
36 lines
789 B
JSON
36 lines
789 B
JSON
{
|
|
"name": "react-noop-renderer",
|
|
"version": "16.0.0",
|
|
"private": true,
|
|
"description": "React package for testing the Fiber, Fizz and Flight reconcilers.",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type" : "git",
|
|
"url" : "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-noop-renderer"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"object-assign": "^4.1.1",
|
|
"prop-types": "^15.6.2",
|
|
"regenerator-runtime": "^0.11.0",
|
|
"react-reconciler": "*",
|
|
"react-flight": "*",
|
|
"react-server": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.0.0"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"build-info.json",
|
|
"index.js",
|
|
"persistent.js",
|
|
"server.js",
|
|
"flight-client.js",
|
|
"flight-server.js",
|
|
"cjs/"
|
|
]
|
|
}
|