mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-12 22:46:30 +08:00
- babel-preset-react-app@9.0.0 - create-react-app@3.0.1 - eslint-config-react-app@4.0.1 - react-app-polyfill@1.0.1 - react-dev-utils@9.0.1 - react-error-overlay@5.1.6 - react-scripts@3.0.1
88 lines
2.2 KiB
JSON
88 lines
2.2 KiB
JSON
{
|
|
"name": "react-error-overlay",
|
|
"version": "5.1.6",
|
|
"description": "An overlay for displaying stack frames.",
|
|
"main": "lib/index.js",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"start": "cross-env NODE_ENV=development node build.js --watch",
|
|
"test": "cross-env NODE_ENV=test jest",
|
|
"build": "cross-env NODE_ENV=development node build.js",
|
|
"build:prod": "cross-env NODE_ENV=production node build.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/create-react-app.git",
|
|
"directory": "packages/react-error-overlay"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/create-react-app/issues"
|
|
},
|
|
"keywords": [
|
|
"overlay",
|
|
"syntax",
|
|
"error",
|
|
"red",
|
|
"box",
|
|
"redbox",
|
|
"crash",
|
|
"warning"
|
|
],
|
|
"author": "Joe Haddad <timer150@gmail.com>",
|
|
"files": [
|
|
"lib/index.js"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/code-frame": "7.0.0",
|
|
"@babel/core": "7.4.3",
|
|
"anser": "1.4.8",
|
|
"babel-eslint": "10.0.1",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "8.0.5",
|
|
"babel-preset-react-app": "^9.0.0",
|
|
"chalk": "^2.4.2",
|
|
"chokidar": "^2.1.2",
|
|
"cross-env": "5.2.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-react-app": "^4.0.1",
|
|
"eslint-plugin-flowtype": "2.50.1",
|
|
"eslint-plugin-import": "2.16.0",
|
|
"eslint-plugin-jsx-a11y": "6.2.1",
|
|
"eslint-plugin-react": "7.12.4",
|
|
"flow-bin": "^0.63.1",
|
|
"html-entities": "1.2.1",
|
|
"jest": "24.7.1",
|
|
"jest-fetch-mock": "2.1.2",
|
|
"object-assign": "4.1.1",
|
|
"promise": "8.0.2",
|
|
"raw-loader": "^1.0.0",
|
|
"react": "^16.8.4",
|
|
"react-app-polyfill": "^1.0.1",
|
|
"react-dom": "^16.8.4",
|
|
"rimraf": "^2.6.3",
|
|
"settle-promise": "1.0.0",
|
|
"source-map": "0.5.6",
|
|
"terser-webpack-plugin": "1.2.3",
|
|
"webpack": "^4.29.6"
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"./src/__tests__/setupJest.js"
|
|
],
|
|
"collectCoverage": true,
|
|
"coverageReporters": [
|
|
"json"
|
|
],
|
|
"testMatch": [
|
|
"<rootDir>/src/**/__tests__/**/*.js?(x)",
|
|
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/fixtures/",
|
|
"setupJest.js"
|
|
]
|
|
}
|
|
}
|