Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vulnerabilities: v3 #460

Merged
merged 3 commits into from
May 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,840 changes: 698 additions & 1,142 deletions package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile CHANGELOG.md --same-file",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"clean:all": "rimraf node_modules packages/*/node_modules packages/*/package-lock.json",
"clean:all": "rimraf node_modules package-lock.json packages/*/node_modules packages/*/package-lock.json",
"bootstrap": "npm run clean:all && npm install && lerna bootstrap"
},
"lint-staged": {
Expand Down Expand Up @@ -101,41 +101,41 @@
"global-modules-path": "^2.1.0",
"import-local": "^1.0.0",
"inquirer": "^5.2.0",
"interpret": "^1.0.4",
"interpret": "^1.1.0",
"loader-utils": "^1.1.0",
"supports-color": "^5.3.0",
"supports-color": "^5.4.0",
"v8-compile-cache": "^2.0.0",
"yargs": "^11.1.0"
},
"peerDependencies": {
"webpack": "^4.x.x"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/cli": "^6.2.0",
"@commitlint/config-lerna-scopes": "^6.1.3",
"@commitlint/prompt-cli": "^6.1.3",
"@commitlint/travis-cli": "^6.1.3",
"@commitlint/travis-cli": "^6.2.0",
"bundlesize": "^0.17.0",
"codecov": "^3.0.0",
"codecov": "^3.0.2",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.17",
"conventional-changelog-cli": "^1.3.22",
"conventional-changelog-lint-config-cz": "^0.3.0",
"cz-customizable": "^5.2.0",
"eslint": "^4.19.1",
"eslint-plugin-node": "^6.0.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"jsdoc": "^3.5.5",
"lerna": "^2.11.0",
"lint-staged": "^7.0.0",
"nyc": "^11.6.0",
"lint-staged": "^7.1.2",
"nyc": "^11.8.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"schema-utils": "^0.4.5",
"semantic-release": "^15.1.8",
"semantic-release": "^15.5.0",
"travis-deploy-once": "^5.0.0",
"webpack": "^4.2.0",
"webpack": "^4.8.3",
"webpack-dev-server": "^3.1.4"
},
"files": [
Expand Down
Loading