Will webpack dedupe packages that have already been bundled with webpack?
For example,
| Webpack bundle 1 |
|------------------|
| react@15.5 |
| jquery@3.0 |
| Webpack app bundle |
|--------------------|
| react@15.5 |
| jquery@3.1 |
| Webpack bundle 1 |
Will Webpack app bundle include 2 copies of react@15.5? Will Webpack app bundle include 2 copies of jquery?