Remove unused npm packages and move CI dependency to devDependencies
Summary: There are several npm packages that are no longer used and do not show up when grepping the code base. Also the "async" dependency is used only in CI and should be moved to devDependencies. Closes https://github.com/facebook/react-native/pull/13517 Differential Revision: D4963775 Pulled By: hramos fbshipit-source-id: 8b6d2d67e65c8ba19c7f91ecfdd70ef731c7c46b
This commit is contained in:
parent
30d5b9dbf5
commit
6a3128457f
31
package.json
31
package.json
|
@ -138,53 +138,32 @@
|
|||
"dependencies": {
|
||||
"absolute-path": "^0.0.0",
|
||||
"art": "^0.10.0",
|
||||
"async": "^2.4.0",
|
||||
"babel-core": "^6.24.1",
|
||||
"babel-generator": "^6.24.1",
|
||||
"babel-plugin-external-helpers": "^6.18.0",
|
||||
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
|
||||
"babel-plugin-transform-async-to-generator": "6.16.0",
|
||||
"babel-plugin-transform-class-properties": "^6.18.0",
|
||||
"babel-plugin-transform-flow-strip-types": "^6.21.0",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.20.2",
|
||||
"babel-polyfill": "^6.20.0",
|
||||
"babel-preset-es2015-node": "^6.1.1",
|
||||
"babel-preset-fbjs": "^2.1.4",
|
||||
"babel-preset-react-native": "^2.0.0",
|
||||
"babel-register": "^6.24.1",
|
||||
"babel-runtime": "^6.23.0",
|
||||
"babel-traverse": "^6.24.1",
|
||||
"babel-types": "^6.24.1",
|
||||
"babylon": "^6.17.0",
|
||||
"base64-js": "^1.1.2",
|
||||
"bser": "^1.0.2",
|
||||
"chalk": "^1.1.1",
|
||||
"commander": "^2.9.0",
|
||||
"concat-stream": "^1.6.0",
|
||||
"connect": "^2.8.3",
|
||||
"core-js": "^2.2.2",
|
||||
"create-react-class": "^15.5.2",
|
||||
"debug": "^2.2.0",
|
||||
"denodeify": "^1.2.1",
|
||||
"envinfo": "^3.0.0",
|
||||
"errno": ">=0.1.1 <0.2.0-0",
|
||||
"event-target-shim": "^1.0.5",
|
||||
"fbjs": "0.8.12",
|
||||
"fbjs-scripts": "^0.7.0",
|
||||
"form-data": "^2.1.1",
|
||||
"fs-extra": "^1.0.0",
|
||||
"glob": "^7.1.1",
|
||||
"graceful-fs": "^4.1.3",
|
||||
"inquirer": "^3.0.6",
|
||||
"jest-haste-map": "20.1.0-delta.4",
|
||||
"json-stable-stringify": "^1.0.1",
|
||||
"json5": "^0.4.0",
|
||||
"left-pad": "^1.1.3",
|
||||
"lodash": "^4.16.6",
|
||||
"merge-stream": "^1.0.1",
|
||||
"metro-bundler": "^0.11.0",
|
||||
"mime": "^1.3.4",
|
||||
"mime-types": "2.1.11",
|
||||
"minimist": "^1.2.0",
|
||||
"mkdirp": "^0.5.1",
|
||||
"node-fetch": "^1.3.3",
|
||||
|
@ -198,26 +177,16 @@
|
|||
"react-clone-referenced-element": "^1.0.1",
|
||||
"react-devtools-core": "^2.5.0",
|
||||
"react-timer-mixin": "^0.13.2",
|
||||
"react-transform-hmr": "^1.0.4",
|
||||
"rebound": "^0.0.13",
|
||||
"regenerator-runtime": "^0.9.5",
|
||||
"request": "^2.79.0",
|
||||
"rimraf": "^2.5.4",
|
||||
"sane": "~1.4.1",
|
||||
"semver": "^5.0.3",
|
||||
"shell-quote": "1.6.1",
|
||||
"source-map": "^0.5.6",
|
||||
"stacktrace-parser": "^0.1.3",
|
||||
"temp": "0.8.3",
|
||||
"throat": "^4.1.0",
|
||||
"whatwg-fetch": "^1.0.0",
|
||||
"wordwrap": "^1.0.0",
|
||||
"write-file-atomic": "^1.2.0",
|
||||
"ws": "^1.1.0",
|
||||
"xcode": "^0.9.1",
|
||||
"xmldoc": "^0.4.0",
|
||||
"xpipe": "^1.0.5",
|
||||
"xtend": ">=4.0.0 <4.1.0-0",
|
||||
"yargs": "^6.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
Loading…
Reference in New Issue