This commit is contained in:
Ian Schmitz
2019-11-08 18:54:16 -08:00
committed by GitHub
parent 8a1ee2f7a5
commit 211694a8a2
13 changed files with 594 additions and 528 deletions

View File

@@ -20,8 +20,8 @@
"compile:lockfile": "node tasks/compile-lockfile.js"
},
"devDependencies": {
"@testing-library/react": "^9.3.0",
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.3.0",
"@testing-library/user-event": "^7.1.2",
"alex": "^8.0.0",
"eslint": "^6.1.0",
@@ -31,12 +31,12 @@
"globby": "^9.1.0",
"husky": "^1.3.1",
"jest": "24.9.0",
"lerna": "3.16.4",
"lerna": "3.18.4",
"lerna-changelog": "~0.8.2",
"lint-staged": "^8.0.4",
"meow": "^5.0.0",
"multimatch": "^3.0.0",
"prettier": "1.18.2",
"prettier": "1.19.0",
"puppeteer": "^1.13.0",
"strip-ansi": "^5.1.0",
"svg-term-cli": "^2.1.1",

View File

@@ -21,9 +21,9 @@
"test.js"
],
"dependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.6.0",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
@@ -31,10 +31,10 @@
"@babel/plugin-transform-flow-strip-types": "7.6.3",
"@babel/plugin-transform-react-display-name": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@babel/runtime": "7.6.3",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.2",
"@babel/runtime": "7.7.2",
"babel-plugin-dynamic-import-node": "2.3.0",
"babel-plugin-macros": "2.6.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24"

View File

@@ -7,6 +7,6 @@
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/jest": "^24.0.0",
"typescript": "^3.6.0"
"typescript": "~3.7.2"
}
}

View File

@@ -29,7 +29,7 @@
"chalk": "2.4.2",
"commander": "2.20.0",
"cross-spawn": "6.0.5",
"envinfo": "7.3.1",
"envinfo": "7.4.0",
"fs-extra": "7.0.1",
"hyperquest": "2.1.3",
"inquirer": "6.5.0",

File diff suppressed because it is too large Load Diff

View File

@@ -21,7 +21,7 @@
"stable.js"
],
"dependencies": {
"core-js": "3.2.1",
"core-js": "3.4.0",
"object-assign": "4.1.1",
"promise": "8.0.3",
"raf": "3.4.1",

View File

@@ -52,7 +52,7 @@
"dependencies": {
"@babel/code-frame": "7.5.5",
"address": "1.1.2",
"browserslist": "4.7.0",
"browserslist": "4.7.2",
"chalk": "2.4.2",
"cross-spawn": "6.0.5",
"detect-port-alt": "1.1.6",

View File

@@ -35,8 +35,8 @@
],
"devDependencies": {
"@babel/code-frame": "7.5.5",
"@babel/core": "7.6.4",
"anser": "1.4.8",
"@babel/core": "7.7.2",
"anser": "1.4.9",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
@@ -49,7 +49,7 @@
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react": "7.16.0",
"flow-bin": "^0.110.0",
"html-entities": "1.2.1",
"jest": "24.9.0",

View File

@@ -28,10 +28,10 @@
},
"types": "./lib/react-app.d.ts",
"dependencies": {
"@babel/core": "7.6.4",
"@babel/core": "7.7.2",
"@svgr/webpack": "4.3.3",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
@@ -86,7 +86,7 @@
"react-dom": "^16.11.0"
},
"optionalDependencies": {
"fsevents": "2.0.7"
"fsevents": "2.1.1"
},
"peerDependenciesMeta": {
"typescript": {

View File

@@ -48,4 +48,4 @@ if [ -z $CI ]; then
fi
# Go!
NPM_CONFIG_OTP="$otp" ./node_modules/.bin/lerna publish --npm-client=npm "$@"
NPM_CONFIG_OTP="$otp" ./node_modules/.bin/lerna publish "$@"

View File

@@ -5,6 +5,6 @@
"@types/jest": "*",
"react": "*",
"react-dom": "*",
"typescript": "3.1.3"
"typescript": "3.7.2"
}
}

View File

@@ -4,6 +4,6 @@
"@types/react-dom": "*",
"react": "*",
"react-dom": "*",
"typescript": "3.1.3"
"typescript": "3.7.2"
}
}

View File

@@ -1,5 +1,5 @@
{
"dependencies": {
"typescript": "3.1.3"
"typescript": "3.7.2"
}
}