mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-01 12:42:50 +08:00
* Update dependencies in react-scripts
* Add first pass of working dependencies for babel-preset-react-app and react-scripts
* Bump more dependency versions
* Adjust more versions and edit fix options
* Restore functionality of old preset
* Disable Uglify in iframe webpack
* Apply prettier
* Re-enable cache in dev and clean deps
* Lock packages and move babel/core to dep in preset
* Bump babel-jest
* Re-enable uglify
* Nest forceAllTransforms correctly in webpack config
* Install babel-core bridge for jest
* Add jest-cli and babel-core bridge to make tests in react-error-overlay pass
* Re-enable transform-dynamic-import
* Add dynamic import syntax support back
* Use new babel in kitchensink
* Transform modules in test
* Revert "Transform modules in test"
This reverts commit 539e46a1d77259898b7e70d778a5e43fc25edc2a.
* Attempt fix for ejected tests
* try this
* Add regenerator back
* Bump babel deps to beta.34
* Remove bad files
* Use default when requiring babel transform plugin
* Bump deps
* Try the fix?
* Oopsie
* Remove some weird things
* Run Babel on react-error-overlay tests
* Try fixing kitchensink
* Use new API for codeFrame
* Add missing (?) babelrc
* Maybe this helps?
* Maybe fix mocha
* I shouldn't have deleted this 🤦
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "react-dev-utils",
|
|
"version": "5.0.0",
|
|
"description": "Webpack utilities used by Create React App",
|
|
"repository": "facebookincubator/create-react-app",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebookincubator/create-react-app/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"files": [
|
|
"checkRequiredFiles.js",
|
|
"clearConsole.js",
|
|
"crashOverlay.js",
|
|
"crossSpawn.js",
|
|
"eslintFormatter.js",
|
|
"errorOverlayMiddleware.js",
|
|
"FileSizeReporter.js",
|
|
"printBuildError.js",
|
|
"formatWebpackMessages.js",
|
|
"getProcessForPort.js",
|
|
"ignoredFiles.js",
|
|
"inquirer.js",
|
|
"InterpolateHtmlPlugin.js",
|
|
"launchEditor.js",
|
|
"launchEditorEndpoint.js",
|
|
"ModuleScopePlugin.js",
|
|
"noopServiceWorkerMiddleware.js",
|
|
"openBrowser.js",
|
|
"openChrome.applescript",
|
|
"printHostingInstructions.js",
|
|
"WatchMissingNodeModulesPlugin.js",
|
|
"WebpackDevServerUtils.js",
|
|
"webpackHotDevClient.js"
|
|
],
|
|
"dependencies": {
|
|
"address": "1.0.3",
|
|
"@babel/code-frame": "7.0.0-beta.36",
|
|
"chalk": "1.1.3",
|
|
"cross-spawn": "5.1.0",
|
|
"detect-port-alt": "1.1.5",
|
|
"escape-string-regexp": "1.0.5",
|
|
"filesize": "3.5.11",
|
|
"global-modules": "1.0.0",
|
|
"gzip-size": "3.0.0",
|
|
"inquirer": "3.3.0",
|
|
"is-root": "1.0.0",
|
|
"opn": "5.2.0",
|
|
"react-error-overlay": "^4.0.0",
|
|
"recursive-readdir": "2.2.1",
|
|
"shell-quote": "1.6.1",
|
|
"sockjs-client": "1.1.4",
|
|
"strip-ansi": "3.0.1",
|
|
"text-table": "0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "22.0.6"
|
|
},
|
|
"scripts": {
|
|
"test": "jest"
|
|
}
|
|
}
|