Skip to content

Commit

Permalink
chore: update dependencies (tomkp#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
wuweiweiwu committed Nov 12, 2019
1 parent 2baaeda commit ed87244
Show file tree
Hide file tree
Showing 3 changed files with 931 additions and 1,503 deletions.
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
"presets": ["@babel/preset-env", "@babel/preset-react"],
"env": {
"test": {
"plugins": ["@babel/plugin-transform-modules-commonjs"]
}
}
}
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@
"clean:website": "rimraf build",
"prebuild:website": "yarn run clean:website",
"build:website": "parcel build website/index.html -d build --public-url /react-split-pane/",
"test": "mochify -R spec --transform babelify",
"test:watch": "mochify -R spec --watch --transform babelify",
"test:coverage": "mochify --plugin [ mochify-istanbul --exclude '**/test/**' --report lcovonly ] --transform babelify && cat lcov.info | coveralls && rm lcov.info",
"test": "BABEL_ENV=test mochify -R spec --transform babelify",
"test:watch": "BABEL_ENV=test mochify -R spec --watch --transform babelify",
"test:coverage": "BABEL_ENV=test mochify --plugin [ mochify-istanbul --exclude '**/test/**' --report lcovonly ] --transform babelify && cat lcov.info | coveralls && rm lcov.info",
"prettier": "prettier --write '{src,test}/**/*.js'",
"lint": "eslint src test",
"release": "standard-version",
"precommit": "lint-staged",
"deploy": "gh-pages -d build",
"prepublishOnly": "yarn run test && yarn run build"
},
Expand All @@ -52,48 +51,49 @@
}
},
"dependencies": {
"prop-types": "^15.5.10",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4",
"react-style-proptype": "^3.0.0"
"react-style-proptype": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@types/react": "^16.0.36",
"babel-eslint": "^10.0.1",
"@types/react": "^16.9.11",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"chai": "^4.0.2",
"chai-spies": "^0.7.1",
"coveralls": "^2.13.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-fbjs": "^2.1.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-fbjs": "^3.1.1",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-relay": "^0.0.28",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-relay": "^1.3.12",
"gh-pages": "^2.1.1",
"husky": "^1.2.0",
"mochify": "^5.8.0",
"husky": "^3.0.9",
"mochify": "^6.6.0",
"mochify-istanbul": "^2.4.2",
"parcel-bundler": "^1.12.4",
"prettier": "1.15.3",
"pretty-quick": "^1.8.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"react": ">=15",
"react-dom": "^16.0.0-0",
"react-router-dom": "^5.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^4.2.4",
"rimraf": "^3.0.0",
"rollup": "^1.26.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^7.0.0"
},
"peerDependencies": {
Expand Down

0 comments on commit ed87244

Please sign in to comment.