Skip to content

Commit

Permalink
chore(docs): add some missing dependencies
Browse files Browse the repository at this point in the history
Used `npx @yarnpkg/doctor .` to have the list of all missing deps.
Added them with version range already used in the workspace to avoid downloading new dep (that's why yarn.lock is not modified)
  • Loading branch information
gaetanmaisse committed Mar 1, 2020
1 parent 7c55dd1 commit b9e37d2
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions addons/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"dependencies": {
"@babel/generator": "^7.8.4",
"@babel/parser": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@egoist/vue-to-react": "^1.1.0",
"@jest/transform": "^25.1.0",
Expand All @@ -53,6 +54,7 @@
"@storybook/core-events": "6.0.0-alpha.20",
"@storybook/csf": "0.0.1",
"@storybook/postinstall": "6.0.0-alpha.20",
"@storybook/node-logger": "6.0.0-alpha.20",
"@storybook/source-loader": "6.0.0-alpha.20",
"@storybook/theming": "6.0.0-alpha.20",
"acorn": "^7.1.0",
Expand All @@ -76,28 +78,53 @@
"vue-docgen-loader": "^1.4.0"
},
"devDependencies": {
"@angular/core": "^8.2.8",
"@emotion/styled": "^10.0.17",
"@emotion/core": "^10.0.20",
"@babel/core": "^7.8.4",
"@storybook/react": "6.0.0-alpha.20",
"@storybook/web-components": "6.0.0-alpha.20",
"@types/doctrine": "^0.0.3",
"@types/enzyme": "^3.10.3",
"@types/jest": "^25.1.1",
"@types/prop-types": "^15.5.9",
"@types/util-deprecate": "^1.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-docgen": "^4.1.0",
"cross-spawn": "^7.0.1",
"fs-extra": "^8.1.0",
"jest": "^25.1.0",
"jest-specific-snapshot": "^2.0.0",
"lit-element": "^2.2.1",
"lit-html": "^1.0.0",
"prettier": "^1.18.2",
"require-from-string": "^2.0.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-is": "^16.12.0",
"rxjs": "^6.5.4",
"styled-components": "^5.0.1",
"tmp": "^0.1.0",
"web-component-analyzer": "^1.0.3"
"web-component-analyzer": "^1.0.3",
"webpack": "^4.33.0",
"zone.js": "^0.10.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0",
"babel-loader": "^8.0.0",
"react": "^16.9.0",
"react": ">=16.3.0",
"react-dom": "*",
"react-is": "^16.8.0"
"react-is": "^16.8.0",
"vue": "^2.6.10",
"webpack": ">=4"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"webpack": {
"optional": true
}
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit b9e37d2

Please sign in to comment.