mirror of
https://github.com/status-im/react-native.git
synced 2025-02-13 18:06:37 +00:00
Summary: @public Currently, every time we call into the packager we have to change the ulimit to make sure we don't hit the EMFILE error (the packager uses as much concurrency as possible). Using graceful-fs, the fs module -- with monkey patching -- becomes intelligent enough to recover from EMFILE errors. Test Plan: * set `ulimit -n 256* * start server * request from your browser: http://localhost:8081/RKJSModules/MainBundle/CatalystBundle.includeRequire.bundle * it works
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"name": "react-native",
|
|
"version": "0.4.1",
|
|
"description": "A framework for building native apps using React",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/react-native.git"
|
|
},
|
|
"jest": {
|
|
"scriptPreprocessor": "jestSupport/scriptPreprocess.js",
|
|
"setupEnvScriptFile": "jestSupport/env.js",
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"packager/react-packager/src/Activity/"
|
|
],
|
|
"testFileExtensions": [
|
|
"js"
|
|
],
|
|
"unmockedModulePathPatterns": [
|
|
"source-map"
|
|
]
|
|
},
|
|
"main": "Libraries/react-native/react-native.js",
|
|
"files": [
|
|
"React",
|
|
"React.podspec",
|
|
"Examples/SampleApp",
|
|
"Libraries",
|
|
"packager",
|
|
"cli.js",
|
|
"local-cli",
|
|
"init.sh",
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "node linter.js Examples/",
|
|
"start": "./packager/packager.sh"
|
|
},
|
|
"bin": {
|
|
"react-native-start": "packager/packager.sh"
|
|
},
|
|
"dependencies": {
|
|
"absolute-path": "0.0.0",
|
|
"bluebird": "^2.9.21",
|
|
"chalk": "^1.0.0",
|
|
"connect": "2.8.3",
|
|
"debug": "~2.1.0",
|
|
"graceful-fs": "^3.0.6",
|
|
"image-size": "0.3.5",
|
|
"joi": "~5.1.0",
|
|
"jstransform": "10.1.0",
|
|
"module-deps": "3.5.6",
|
|
"optimist": "0.6.1",
|
|
"promise": "^7.0.0",
|
|
"react-timer-mixin": "^0.13.1",
|
|
"react-tools": "0.13.2",
|
|
"rebound": "^0.0.12",
|
|
"sane": "^1.1.2",
|
|
"source-map": "0.1.31",
|
|
"stacktrace-parser": "git://github.com/frantic/stacktrace-parser.git#493c5e5638",
|
|
"uglify-js": "~2.4.16",
|
|
"underscore": "1.7.0",
|
|
"worker-farm": "1.1.0",
|
|
"ws": "0.4.31",
|
|
"yargs": "1.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"jest-cli": "0.2.1",
|
|
"eslint": "0.9.2"
|
|
}
|
|
}
|