Browse code

inital

Cinan Rakosnik authored on 04/03/2018 at 16:50:47
Showing 25 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,65 @@
0
+# Created by .ignore support plugin (hsz.mobi)
1
+### Node template
2
+# Logs
3
+logs
4
+*.log
5
+npm-debug.log*
6
+yarn-debug.log*
7
+yarn-error.log*
8
+
9
+# Runtime data
10
+pids
11
+*.pid
12
+*.seed
13
+*.pid.lock
14
+
15
+# Directory for instrumented libs generated by jscoverage/JSCover
16
+lib-cov
17
+
18
+# Coverage directory used by tools like istanbul
19
+coverage
20
+
21
+# nyc test coverage
22
+.nyc_output
23
+
24
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25
+.grunt
26
+
27
+# Bower dependency directory (https://bower.io/)
28
+bower_components
29
+
30
+# node-waf configuration
31
+.lock-wscript
32
+
33
+# Compiled binary addons (https://nodejs.org/api/addons.html)
34
+build/Release
35
+
36
+# Dependency directories
37
+node_modules/
38
+jspm_packages/
39
+
40
+# Typescript v1 declaration files
41
+typings/
42
+
43
+# Optional npm cache directory
44
+.npm
45
+
46
+# Optional eslint cache
47
+.eslintcache
48
+
49
+# Optional REPL history
50
+.node_repl_history
51
+
52
+# Output of 'npm pack'
53
+*.tgz
54
+
55
+# Yarn Integrity file
56
+.yarn-integrity
57
+
58
+# dotenv environment variables file
59
+.env
60
+
61
+# next.js build output
62
+.next
63
+
64
+.idea
0 65
new file mode 100644
... ...
@@ -0,0 +1,2434 @@
0
+This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
1
+
2
+Below you will find some information on how to perform common tasks.<br>
3
+You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).
4
+
5
+## Table of Contents
6
+
7
+- [Updating to New Releases](#updating-to-new-releases)
8
+- [Sending Feedback](#sending-feedback)
9
+- [Folder Structure](#folder-structure)
10
+- [Available Scripts](#available-scripts)
11
+  - [npm start](#npm-start)
12
+  - [npm test](#npm-test)
13
+  - [npm run build](#npm-run-build)
14
+  - [npm run eject](#npm-run-eject)
15
+- [Supported Browsers](#supported-browsers)
16
+- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills)
17
+- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor)
18
+- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor)
19
+- [Debugging in the Editor](#debugging-in-the-editor)
20
+- [Formatting Code Automatically](#formatting-code-automatically)
21
+- [Changing the Page `<title>`](#changing-the-page-title)
22
+- [Installing a Dependency](#installing-a-dependency)
23
+- [Importing a Component](#importing-a-component)
24
+- [Code Splitting](#code-splitting)
25
+- [Adding a Stylesheet](#adding-a-stylesheet)
26
+- [Post-Processing CSS](#post-processing-css)
27
+- [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc)
28
+- [Adding Images, Fonts, and Files](#adding-images-fonts-and-files)
29
+- [Using the `public` Folder](#using-the-public-folder)
30
+  - [Changing the HTML](#changing-the-html)
31
+  - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system)
32
+  - [When to Use the `public` Folder](#when-to-use-the-public-folder)
33
+- [Using Global Variables](#using-global-variables)
34
+- [Adding Bootstrap](#adding-bootstrap)
35
+  - [Using a Custom Theme](#using-a-custom-theme)
36
+- [Adding Flow](#adding-flow)
37
+- [Adding a Router](#adding-a-router)
38
+- [Adding Custom Environment Variables](#adding-custom-environment-variables)
39
+  - [Referencing Environment Variables in the HTML](#referencing-environment-variables-in-the-html)
40
+  - [Adding Temporary Environment Variables In Your Shell](#adding-temporary-environment-variables-in-your-shell)
41
+  - [Adding Development Environment Variables In `.env`](#adding-development-environment-variables-in-env)
42
+- [Can I Use Decorators?](#can-i-use-decorators)
43
+- [Fetching Data with AJAX Requests](#fetching-data-with-ajax-requests)
44
+- [Integrating with an API Backend](#integrating-with-an-api-backend)
45
+  - [Node](#node)
46
+  - [Ruby on Rails](#ruby-on-rails)
47
+- [Proxying API Requests in Development](#proxying-api-requests-in-development)
48
+  - ["Invalid Host Header" Errors After Configuring Proxy](#invalid-host-header-errors-after-configuring-proxy)
49
+  - [Configuring the Proxy Manually](#configuring-the-proxy-manually)
50
+  - [Configuring a WebSocket Proxy](#configuring-a-websocket-proxy)
51
+- [Using HTTPS in Development](#using-https-in-development)
52
+- [Generating Dynamic `<meta>` Tags on the Server](#generating-dynamic-meta-tags-on-the-server)
53
+- [Pre-Rendering into Static HTML Files](#pre-rendering-into-static-html-files)
54
+- [Injecting Data from the Server into the Page](#injecting-data-from-the-server-into-the-page)
55
+- [Running Tests](#running-tests)
56
+  - [Filename Conventions](#filename-conventions)
57
+  - [Command Line Interface](#command-line-interface)
58
+  - [Version Control Integration](#version-control-integration)
59
+  - [Writing Tests](#writing-tests)
60
+  - [Testing Components](#testing-components)
61
+  - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries)
62
+  - [Initializing Test Environment](#initializing-test-environment)
63
+  - [Focusing and Excluding Tests](#focusing-and-excluding-tests)
64
+  - [Coverage Reporting](#coverage-reporting)
65
+  - [Continuous Integration](#continuous-integration)
66
+  - [Disabling jsdom](#disabling-jsdom)
67
+  - [Snapshot Testing](#snapshot-testing)
68
+  - [Editor Integration](#editor-integration)
69
+- [Debugging Tests](#debugging-tests)
70
+  - [Debugging Tests in Chrome](#debugging-tests-in-chrome)
71
+  - [Debugging Tests in Visual Studio Code](#debugging-tests-in-visual-studio-code)
72
+- [Developing Components in Isolation](#developing-components-in-isolation)
73
+  - [Getting Started with Storybook](#getting-started-with-storybook)
74
+  - [Getting Started with Styleguidist](#getting-started-with-styleguidist)
75
+- [Publishing Components to npm](#publishing-components-to-npm)
76
+- [Making a Progressive Web App](#making-a-progressive-web-app)
77
+  - [Opting Out of Caching](#opting-out-of-caching)
78
+  - [Offline-First Considerations](#offline-first-considerations)
79
+  - [Progressive Web App Metadata](#progressive-web-app-metadata)
80
+- [Analyzing the Bundle Size](#analyzing-the-bundle-size)
81
+- [Deployment](#deployment)
82
+  - [Static Server](#static-server)
83
+  - [Other Solutions](#other-solutions)
84
+  - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing)
85
+  - [Building for Relative Paths](#building-for-relative-paths)
86
+  - [Azure](#azure)
87
+  - [Firebase](#firebase)
88
+  - [GitHub Pages](#github-pages)
89
+  - [Heroku](#heroku)
90
+  - [Netlify](#netlify)
91
+  - [Now](#now)
92
+  - [S3 and CloudFront](#s3-and-cloudfront)
93
+  - [Surge](#surge)
94
+- [Advanced Configuration](#advanced-configuration)
95
+- [Troubleshooting](#troubleshooting)
96
+  - [`npm start` doesn’t detect changes](#npm-start-doesnt-detect-changes)
97
+  - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra)
98
+  - [`npm run build` exits too early](#npm-run-build-exits-too-early)
99
+  - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku)
100
+  - [`npm run build` fails to minify](#npm-run-build-fails-to-minify)
101
+  - [Moment.js locales are missing](#momentjs-locales-are-missing)
102
+- [Alternatives to Ejecting](#alternatives-to-ejecting)
103
+- [Something Missing?](#something-missing)
104
+
105
+## Updating to New Releases
106
+
107
+Create React App is divided into two packages:
108
+
109
+* `create-react-app` is a global command-line utility that you use to create new projects.
110
+* `react-scripts` is a development dependency in the generated projects (including this one).
111
+
112
+You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`.
113
+
114
+When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically.
115
+
116
+To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version you’re currently on (check `package.json` in this folder if you’re not sure), and apply the migration instructions for the newer versions.
117
+
118
+In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but it’s good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes.
119
+
120
+We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly.
121
+
122
+## Sending Feedback
123
+
124
+We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues).
125
+
126
+## Folder Structure
127
+
128
+After creation, your project should look like this:
129
+
130
+```
131
+my-app/
132
+  README.md
133
+  node_modules/
134
+  package.json
135
+  public/
136
+    index.html
137
+    favicon.ico
138
+  src/
139
+    App.css
140
+    App.js
141
+    App.test.js
142
+    index.css
143
+    index.js
144
+    logo.svg
145
+```
146
+
147
+For the project to build, **these files must exist with exact filenames**:
148
+
149
+* `public/index.html` is the page template;
150
+* `src/index.js` is the JavaScript entry point.
151
+
152
+You can delete or rename the other files.
153
+
154
+You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.<br>
155
+You need to **put any JS and CSS files inside `src`**, otherwise Webpack won’t see them.
156
+
157
+Only files inside `public` can be used from `public/index.html`.<br>
158
+Read instructions below for using assets from JavaScript and HTML.
159
+
160
+You can, however, create more top-level directories.<br>
161
+They will not be included in the production build so you can use them for things like documentation.
162
+
163
+## Available Scripts
164
+
165
+In the project directory, you can run:
166
+
167
+### `npm start`
168
+
169
+Runs the app in the development mode.<br>
170
+Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
171
+
172
+The page will reload if you make edits.<br>
173
+You will also see any lint errors in the console.
174
+
175
+### `npm test`
176
+
177
+Launches the test runner in the interactive watch mode.<br>
178
+See the section about [running tests](#running-tests) for more information.
179
+
180
+### `npm run build`
181
+
182
+Builds the app for production to the `build` folder.<br>
183
+It correctly bundles React in production mode and optimizes the build for the best performance.
184
+
185
+The build is minified and the filenames include the hashes.<br>
186
+Your app is ready to be deployed!
187
+
188
+See the section about [deployment](#deployment) for more information.
189
+
190
+### `npm run eject`
191
+
192
+**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
193
+
194
+If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
195
+
196
+Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
197
+
198
+You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
199
+
200
+## Supported Browsers
201
+
202
+By default, the generated project uses the latest version of React.
203
+
204
+You can refer [to the React documentation](https://reactjs.org/docs/react-dom.html#browser-support) for more information about supported browsers.
205
+
206
+## Supported Language Features and Polyfills
207
+
208
+This project supports a superset of the latest JavaScript standard.<br>
209
+In addition to [ES6](https://github.com/lukehoban/es6features) syntax features, it also supports:
210
+
211
+* [Exponentiation Operator](https://github.com/rwaldron/exponentiation-operator) (ES2016).
212
+* [Async/await](https://github.com/tc39/ecmascript-asyncawait) (ES2017).
213
+* [Object Rest/Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread) (stage 3 proposal).
214
+* [Dynamic import()](https://github.com/tc39/proposal-dynamic-import) (stage 3 proposal)
215
+* [Class Fields and Static Properties](https://github.com/tc39/proposal-class-public-fields) (part of stage 3 proposal).
216
+* [JSX](https://facebook.github.io/react/docs/introducing-jsx.html) and [Flow](https://flowtype.org/) syntax.
217
+
218
+Learn more about [different proposal stages](https://babeljs.io/docs/plugins/#presets-stage-x-experimental-presets-).
219
+
220
+While we recommend using experimental proposals with some caution, Facebook heavily uses these features in the product code, so we intend to provide [codemods](https://medium.com/@cpojer/effective-javascript-codemods-5a6686bb46fb) if any of these proposals change in the future.
221
+
222
+Note that **the project only includes a few ES6 [polyfills](https://en.wikipedia.org/wiki/Polyfill)**:
223
+
224
+* [`Object.assign()`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) via [`object-assign`](https://github.com/sindresorhus/object-assign).
225
+* [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) via [`promise`](https://github.com/then/promise).
226
+* [`fetch()`](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) via [`whatwg-fetch`](https://github.com/github/fetch).
227
+
228
+If you use any other ES6+ features that need **runtime support** (such as `Array.from()` or `Symbol`), make sure you are including the appropriate polyfills manually, or that the browsers you are targeting already support them.
229
+
230
+Also note that using some newer syntax features like `for...of` or `[...nonArrayValue]` causes Babel to emit code that depends on ES6 runtime features and might not work without a polyfill. When in doubt, use [Babel REPL](https://babeljs.io/repl/) to see what any specific syntax compiles down to.
231
+
232
+## Syntax Highlighting in the Editor
233
+
234
+To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered.
235
+
236
+## Displaying Lint Output in the Editor
237
+
238
+>Note: this feature is available with `react-scripts@0.2.0` and higher.<br>
239
+>It also only works with npm 3 or higher.
240
+
241
+Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint.
242
+
243
+They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do.
244
+
245
+You would need to install an ESLint plugin for your editor first. Then, add a file called `.eslintrc` to the project root:
246
+
247
+```js
248
+{
249
+  "extends": "react-app"
250
+}
251
+```
252
+
253
+Now your editor should report the linting warnings.
254
+
255
+Note that even if you edit your `.eslintrc` file further, these changes will **only affect the editor integration**. They won’t affect the terminal and in-browser lint output. This is because Create React App intentionally provides a minimal set of rules that find common mistakes.
256
+
257
+If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules.
258
+
259
+## Debugging in the Editor
260
+
261
+**This feature is currently only supported by [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/).**
262
+
263
+Visual Studio Code and WebStorm support debugging out of the box with Create React App. This enables you as a developer to write and debug your React code without leaving the editor, and most importantly it enables you to have a continuous development workflow, where context switching is minimal, as you don’t have to switch between tools.
264
+
265
+### Visual Studio Code
266
+
267
+You would need to have the latest version of [VS Code](https://code.visualstudio.com) and VS Code [Chrome Debugger Extension](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) installed.
268
+
269
+Then add the block below to your `launch.json` file and put it inside the `.vscode` folder in your app’s root directory.
270
+
271
+```json
272
+{
273
+  "version": "0.2.0",
274
+  "configurations": [{
275
+    "name": "Chrome",
276
+    "type": "chrome",
277
+    "request": "launch",
278
+    "url": "http://localhost:3000",
279
+    "webRoot": "${workspaceRoot}/src",
280
+    "sourceMapPathOverrides": {
281
+      "webpack:///src/*": "${webRoot}/*"
282
+    }
283
+  }]
284
+}
285
+```
286
+>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration).
287
+
288
+Start your app by running `npm start`, and start debugging in VS Code by pressing `F5` or by clicking the green debug icon. You can now write code, set breakpoints, make changes to the code, and debug your newly modified code—all from your editor.
289
+
290
+Having problems with VS Code Debugging? Please see their [troubleshooting guide](https://github.com/Microsoft/vscode-chrome-debug/blob/master/README.md#troubleshooting).
291
+
292
+### WebStorm
293
+
294
+You would need to have [WebStorm](https://www.jetbrains.com/webstorm/) and [JetBrains IDE Support](https://chrome.google.com/webstore/detail/jetbrains-ide-support/hmhgeddbohgjknpmjagkdomcpobmllji) Chrome extension installed.
295
+
296
+In the WebStorm menu `Run` select `Edit Configurations...`. Then click `+` and select `JavaScript Debug`. Paste `http://localhost:3000` into the URL field and save the configuration.
297
+
298
+>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration).
299
+
300
+Start your app by running `npm start`, then press `^D` on macOS or `F9` on Windows and Linux or click the green debug icon to start debugging in WebStorm.
301
+
302
+The same way you can debug your application in IntelliJ IDEA Ultimate, PhpStorm, PyCharm Pro, and RubyMine. 
303
+
304
+## Formatting Code Automatically
305
+
306
+Prettier is an opinionated code formatter with support for JavaScript, CSS and JSON. With Prettier you can format the code you write automatically to ensure a code style within your project. See the [Prettier's GitHub page](https://github.com/prettier/prettier) for more information, and look at this [page to see it in action](https://prettier.github.io/prettier/).
307
+
308
+To format our code whenever we make a commit in git, we need to install the following dependencies:
309
+
310
+```sh
311
+npm install --save husky lint-staged prettier
312
+```
313
+
314
+Alternatively you may use `yarn`:
315
+
316
+```sh
317
+yarn add husky lint-staged prettier
318
+```
319
+
320
+* `husky` makes it easy to use githooks as if they are npm scripts.
321
+* `lint-staged` allows us to run scripts on staged files in git. See this [blog post about lint-staged to learn more about it](https://medium.com/@okonetchnikov/make-linting-great-again-f3890e1ad6b8).
322
+* `prettier` is the JavaScript formatter we will run before commits.
323
+
324
+Now we can make sure every file is formatted correctly by adding a few lines to the `package.json` in the project root.
325
+
326
+Add the following line to `scripts` section:
327
+
328
+```diff
329
+  "scripts": {
330
++   "precommit": "lint-staged",
331
+    "start": "react-scripts start",
332
+    "build": "react-scripts build",
333
+```
334
+
335
+Next we add a 'lint-staged' field to the `package.json`, for example:
336
+
337
+```diff
338
+  "dependencies": {
339
+    // ...
340
+  },
341
++ "lint-staged": {
342
++   "src/**/*.{js,jsx,json,css}": [
343
++     "prettier --single-quote --write",
344
++     "git add"
345
++   ]
346
++ },
347
+  "scripts": {
348
+```
349
+
350
+Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --single-quote --write "src/**/*.{js,jsx,json,css}"` to format your entire project for the first time.
351
+
352
+Next you might want to integrate Prettier in your favorite editor. Read the section on [Editor Integration](https://prettier.io/docs/en/editors.html) on the Prettier GitHub page.
353
+
354
+## Changing the Page `<title>`
355
+
356
+You can find the source HTML file in the `public` folder of the generated project. You may edit the `<title>` tag in it to change the title from “React App” to anything else.
357
+
358
+Note that normally you wouldn’t edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is done without touching the HTML.
359
+
360
+If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API. For more complex scenarios when you want to change the title from React components, you can use [React Helmet](https://github.com/nfl/react-helmet), a third party library.
361
+
362
+If you use a custom server for your app in production and want to modify the title before it gets sent to the browser, you can follow advice in [this section](#generating-dynamic-meta-tags-on-the-server). Alternatively, you can pre-build each page as a static HTML file which then loads the JavaScript bundle, which is covered [here](#pre-rendering-into-static-html-files).
363
+
364
+## Installing a Dependency
365
+
366
+The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`:
367
+
368
+```sh
369
+npm install --save react-router
370
+```
371
+
372
+Alternatively you may use `yarn`:
373
+
374
+```sh
375
+yarn add react-router
376
+```
377
+
378
+This works for any library, not just `react-router`.
379
+
380
+## Importing a Component
381
+
382
+This project setup supports ES6 modules thanks to Babel.<br>
383
+While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead.
384
+
385
+For example:
386
+
387
+### `Button.js`
388
+
389
+```js
390
+import React, { Component } from 'react';
391
+
392
+class Button extends Component {
393
+  render() {
394
+    // ...
395
+  }
396
+}
397
+
398
+export default Button; // Don’t forget to use export default!
399
+```
400
+
401
+### `DangerButton.js`
402
+
403
+
404
+```js
405
+import React, { Component } from 'react';
406
+import Button from './Button'; // Import a component from another file
407
+
408
+class DangerButton extends Component {
409
+  render() {
410
+    return <Button color="red" />;
411
+  }
412
+}
413
+
414
+export default DangerButton;
415
+```
416
+
417
+Be aware of the [difference between default and named exports](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281). It is a common source of mistakes.
418
+
419
+We suggest that you stick to using default imports and exports when a module only exports a single thing (for example, a component). That’s what you get when you use `export default Button` and `import Button from './Button'`.
420
+
421
+Named exports are useful for utility modules that export several functions. A module may have at most one default export and as many named exports as you like.
422
+
423
+Learn more about ES6 modules:
424
+
425
+* [When to use the curly braces?](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281)
426
+* [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html)
427
+* [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules)
428
+
429
+## Code Splitting
430
+
431
+Instead of downloading the entire app before users can use it, code splitting allows you to split your code into small chunks which you can then load on demand.
432
+
433
+This project setup supports code splitting via [dynamic `import()`](http://2ality.com/2017/01/import-operator.html#loading-code-on-demand). Its [proposal](https://github.com/tc39/proposal-dynamic-import) is in stage 3. The `import()` function-like form takes the module name as an argument and returns a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) which always resolves to the namespace object of the module.
434
+
435
+Here is an example:
436
+
437
+### `moduleA.js`
438
+
439
+```js
440
+const moduleA = 'Hello';
441
+
442
+export { moduleA };
443
+```
444
+### `App.js`
445
+
446
+```js
447
+import React, { Component } from 'react';
448
+
449
+class App extends Component {
450
+  handleClick = () => {
451
+    import('./moduleA')
452
+      .then(({ moduleA }) => {
453
+        // Use moduleA
454
+      })
455
+      .catch(err => {
456
+        // Handle failure
457
+      });
458
+  };
459
+
460
+  render() {
461
+    return (
462
+      <div>
463
+        <button onClick={this.handleClick}>Load</button>
464
+      </div>
465
+    );
466
+  }
467
+}
468
+
469
+export default App;
470
+```
471
+
472
+This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button.
473
+
474
+You can also use it with `async` / `await` syntax if you prefer it.
475
+
476
+### With React Router
477
+
478
+If you are using React Router check out [this tutorial](http://serverless-stack.com/chapters/code-splitting-in-create-react-app.html) on how to use code splitting with it. You can find the companion GitHub repository [here](https://github.com/AnomalyInnovations/serverless-stack-demo-client/tree/code-splitting-in-create-react-app).
479
+
480
+Also check out the [Code Splitting](https://reactjs.org/docs/code-splitting.html) section in React documentation.
481
+
482
+## Adding a Stylesheet
483
+
484
+This project setup uses [Webpack](https://webpack.js.org/) for handling all assets. Webpack offers a custom way of “extending” the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**:
485
+
486
+### `Button.css`
487
+
488
+```css
489
+.Button {
490
+  padding: 20px;
491
+}
492
+```
493
+
494
+### `Button.js`
495
+
496
+```js
497
+import React, { Component } from 'react';
498
+import './Button.css'; // Tell Webpack that Button.js uses these styles
499
+
500
+class Button extends Component {
501
+  render() {
502
+    // You can use them as regular CSS styles
503
+    return <div className="Button" />;
504
+  }
505
+}
506
+```
507
+
508
+**This is not required for React** but many people find this feature convenient. You can read about the benefits of this approach [here](https://medium.com/seek-ui-engineering/block-element-modifying-your-javascript-components-d7f99fcab52b). However you should be aware that this makes your code less portable to other build tools and environments than Webpack.
509
+
510
+In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output.
511
+
512
+If you are concerned about using Webpack-specific semantics, you can put all your CSS right into `src/index.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool.
513
+
514
+## Post-Processing CSS
515
+
516
+This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you don’t need to worry about it.
517
+
518
+For example, this:
519
+
520
+```css
521
+.App {
522
+  display: flex;
523
+  flex-direction: row;
524
+  align-items: center;
525
+}
526
+```
527
+
528
+becomes this:
529
+
530
+```css
531
+.App {
532
+  display: -webkit-box;
533
+  display: -ms-flexbox;
534
+  display: flex;
535
+  -webkit-box-orient: horizontal;
536
+  -webkit-box-direction: normal;
537
+      -ms-flex-direction: row;
538
+          flex-direction: row;
539
+  -webkit-box-align: center;
540
+      -ms-flex-align: center;
541
+          align-items: center;
542
+}
543
+```
544
+
545
+If you need to disable autoprefixing for some reason, [follow this section](https://github.com/postcss/autoprefixer#disabling).
546
+
547
+## Adding a CSS Preprocessor (Sass, Less etc.)
548
+
549
+Generally, we recommend that you don’t reuse the same CSS classes across different components. For example, instead of using a `.Button` CSS class in `<AcceptButton>` and `<RejectButton>` components, we recommend creating a `<Button>` component with its own `.Button` styles, that both `<AcceptButton>` and `<RejectButton>` can render (but [not inherit](https://facebook.github.io/react/docs/composition-vs-inheritance.html)).
550
+
551
+Following this rule often makes CSS preprocessors less useful, as features like mixins and nesting are replaced by component composition. You can, however, integrate a CSS preprocessor if you find it valuable. In this walkthrough, we will be using Sass, but you can also use Less, or another alternative.
552
+
553
+First, let’s install the command-line interface for Sass:
554
+
555
+```sh
556
+npm install --save node-sass-chokidar
557
+```
558
+
559
+Alternatively you may use `yarn`:
560
+
561
+```sh
562
+yarn add node-sass-chokidar
563
+```
564
+
565
+Then in `package.json`, add the following lines to `scripts`:
566
+
567
+```diff
568
+   "scripts": {
569
++    "build-css": "node-sass-chokidar src/ -o src/",
570
++    "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
571
+     "start": "react-scripts start",
572
+     "build": "react-scripts build",
573
+     "test": "react-scripts test --env=jsdom",
574
+```
575
+
576
+>Note: To use a different preprocessor, replace `build-css` and `watch-css` commands according to your preprocessor’s documentation.
577
+
578
+Now you can rename `src/App.css` to `src/App.scss` and run `npm run watch-css`. The watcher will find every Sass file in `src` subdirectories, and create a corresponding CSS file next to it, in our case overwriting `src/App.css`. Since `src/App.js` still imports `src/App.css`, the styles become a part of your application. You can now edit `src/App.scss`, and `src/App.css` will be regenerated.
579
+
580
+To share variables between Sass files, you can use Sass imports. For example, `src/App.scss` and other component style files could include `@import "./shared.scss";` with variable definitions.
581
+
582
+To enable importing files without using relative paths, you can add the  `--include-path` option to the command in `package.json`.
583
+
584
+```
585
+"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
586
+"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
587
+```
588
+
589
+This will allow you to do imports like
590
+
591
+```scss
592
+@import 'styles/_colors.scss'; // assuming a styles directory under src/
593
+@import 'nprogress/nprogress'; // importing a css file from the nprogress node module
594
+```
595
+
596
+At this point you might want to remove all CSS files from the source control, and add `src/**/*.css` to your `.gitignore` file. It is generally a good practice to keep the build products outside of the source control.
597
+
598
+As a final step, you may find it convenient to run `watch-css` automatically with `npm start`, and run `build-css` as a part of `npm run build`. You can use the `&&` operator to execute two scripts sequentially. However, there is no cross-platform way to run two scripts in parallel, so we will install a package for this:
599
+
600
+```sh
601
+npm install --save npm-run-all
602
+```
603
+
604
+Alternatively you may use `yarn`:
605
+
606
+```sh
607
+yarn add npm-run-all
608
+```
609
+
610
+Then we can change `start` and `build` scripts to include the CSS preprocessor commands:
611
+
612
+```diff
613
+   "scripts": {
614
+     "build-css": "node-sass-chokidar src/ -o src/",
615
+     "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
616
+-    "start": "react-scripts start",
617
+-    "build": "react-scripts build",
618
++    "start-js": "react-scripts start",
619
++    "start": "npm-run-all -p watch-css start-js",
620
++    "build-js": "react-scripts build",
621
++    "build": "npm-run-all build-css build-js",
622
+     "test": "react-scripts test --env=jsdom",
623
+     "eject": "react-scripts eject"
624
+   }
625
+```
626
+
627
+Now running `npm start` and `npm run build` also builds Sass files.
628
+
629
+**Why `node-sass-chokidar`?**
630
+
631
+`node-sass` has been reported as having the following issues:
632
+
633
+- `node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker.
634
+
635
+- Infinite styles compiling [#1939](https://github.com/facebookincubator/create-react-app/issues/1939)
636
+
637
+- `node-sass` has been reported as having issues with detecting new files in a directory [#1891](https://github.com/sass/node-sass/issues/1891)
638
+
639
+ `node-sass-chokidar` is used here as it addresses these issues.
640
+
641
+## Adding Images, Fonts, and Files
642
+
643
+With Webpack, using static assets like images and fonts works similarly to CSS.
644
+
645
+You can **`import` a file right in a JavaScript module**. This tells Webpack to include that file in the bundle. Unlike CSS imports, importing a file gives you a string value. This value is the final path you can reference in your code, e.g. as the `src` attribute of an image or the `href` of a link to a PDF.
646
+
647
+To reduce the number of requests to the server, importing images that are less than 10,000 bytes returns a [data URI](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) instead of a path. This applies to the following file extensions: bmp, gif, jpg, jpeg, and png. SVG files are excluded due to [#1153](https://github.com/facebookincubator/create-react-app/issues/1153).
648
+
649
+Here is an example:
650
+
651
+```js
652
+import React from 'react';
653
+import logo from './logo.png'; // Tell Webpack this JS file uses this image
654
+
655
+console.log(logo); // /logo.84287d09.png
656
+
657
+function Header() {
658
+  // Import result is the URL of your image
659
+  return <img src={logo} alt="Logo" />;
660
+}
661
+
662
+export default Header;
663
+```
664
+
665
+This ensures that when the project is built, Webpack will correctly move the images into the build folder, and provide us with correct paths.
666
+
667
+This works in CSS too:
668
+
669
+```css
670
+.Logo {
671
+  background-image: url(./logo.png);
672
+}
673
+```
674
+
675
+Webpack finds all relative module references in CSS (they start with `./`) and replaces them with the final paths from the compiled bundle. If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The final filenames in the compiled bundle are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets.
676
+
677
+Please be advised that this is also a custom feature of Webpack.
678
+
679
+**It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).<br>
680
+An alternative way of handling static assets is described in the next section.
681
+
682
+## Using the `public` Folder
683
+
684
+>Note: this feature is available with `react-scripts@0.5.0` and higher.
685
+
686
+### Changing the HTML
687
+
688
+The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title).
689
+The `<script>` tag with the compiled code will be added to it automatically during the build process.
690
+
691
+### Adding Assets Outside of the Module System
692
+
693
+You can also add other assets to the `public` folder.
694
+
695
+Note that we normally encourage you to `import` assets in JavaScript files instead.
696
+For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-fonts-and-files).
697
+This mechanism provides a number of benefits:
698
+
699
+* Scripts and stylesheets get minified and bundled together to avoid extra network requests.
700
+* Missing files cause compilation errors instead of 404 errors for your users.
701
+* Result filenames include content hashes so you don’t need to worry about browsers caching their old versions.
702
+
703
+However there is an **escape hatch** that you can use to add an asset outside of the module system.
704
+
705
+If you put a file into the `public` folder, it will **not** be processed by Webpack. Instead it will be copied into the build folder untouched.   To reference assets in the `public` folder, you need to use a special variable called `PUBLIC_URL`.
706
+
707
+Inside `index.html`, you can use it like this:
708
+
709
+```html
710
+<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
711
+```
712
+
713
+Only files inside the `public` folder will be accessible by `%PUBLIC_URL%` prefix. If you need to use a file from `src` or `node_modules`, you’ll have to copy it there to explicitly specify your intention to make this file a part of the build.
714
+
715
+When you run `npm run build`, Create React App will substitute `%PUBLIC_URL%` with a correct absolute path so your project works even if you use client-side routing or host it at a non-root URL.
716
+
717
+In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes:
718
+
719
+```js
720
+render() {
721
+  // Note: this is an escape hatch and should be used sparingly!
722
+  // Normally we recommend using `import` for getting asset URLs
723
+  // as described in “Adding Images and Fonts” above this section.
724
+  return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />;
725
+}
726
+```
727
+
728
+Keep in mind the downsides of this approach:
729
+
730
+* None of the files in `public` folder get post-processed or minified.
731
+* Missing files will not be called at compilation time, and will cause 404 errors for your users.
732
+* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change.
733
+
734
+### When to Use the `public` Folder
735
+
736
+Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-fonts-and-files) from JavaScript.
737
+The `public` folder is useful as a workaround for a number of less common cases:
738
+
739
+* You need a file with a specific name in the build output, such as [`manifest.webmanifest`](https://developer.mozilla.org/en-US/docs/Web/Manifest).
740
+* You have thousands of images and need to dynamically reference their paths.
741
+* You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code.
742
+* Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag.
743
+
744
+Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them.
745
+
746
+## Using Global Variables
747
+
748
+When you include a script in the HTML file that defines global variables and try to use one of these variables in the code, the linter will complain because it cannot see the definition of the variable.
749
+
750
+You can avoid this by reading the global variable explicitly from the `window` object, for example:
751
+
752
+```js
753
+const $ = window.$;
754
+```
755
+
756
+This makes it obvious you are using a global variable intentionally rather than because of a typo.
757
+
758
+Alternatively, you can force the linter to ignore any line by adding `// eslint-disable-line` after it.
759
+
760
+## Adding Bootstrap
761
+
762
+You don’t have to use [React Bootstrap](https://react-bootstrap.github.io) together with React but it is a popular library for integrating Bootstrap with React apps. If you need it, you can integrate it with Create React App by following these steps:
763
+
764
+Install React Bootstrap and Bootstrap from npm. React Bootstrap does not include Bootstrap CSS so this needs to be installed as well:
765
+
766
+```sh
767
+npm install --save react-bootstrap bootstrap@3
768
+```
769
+
770
+Alternatively you may use `yarn`:
771
+
772
+```sh
773
+yarn add react-bootstrap bootstrap@3
774
+```
775
+
776
+Import Bootstrap CSS and optionally Bootstrap theme CSS in the beginning of your ```src/index.js``` file:
777
+
778
+```js
779
+import 'bootstrap/dist/css/bootstrap.css';
780
+import 'bootstrap/dist/css/bootstrap-theme.css';
781
+// Put any other imports below so that CSS from your
782
+// components takes precedence over default styles.
783
+```
784
+
785
+Import required React Bootstrap components within ```src/App.js``` file or your custom component files:
786
+
787
+```js
788
+import { Navbar, Jumbotron, Button } from 'react-bootstrap';
789
+```
790
+
791
+Now you are ready to use the imported React Bootstrap components within your component hierarchy defined in the render method. Here is an example [`App.js`](https://gist.githubusercontent.com/gaearon/85d8c067f6af1e56277c82d19fd4da7b/raw/6158dd991b67284e9fc8d70b9d973efe87659d72/App.js) redone using React Bootstrap.
792
+
793
+### Using a Custom Theme
794
+
795
+Sometimes you might need to tweak the visual styles of Bootstrap (or equivalent package).<br>
796
+We suggest the following approach:
797
+
798
+* Create a new package that depends on the package you wish to customize, e.g. Bootstrap.
799
+* Add the necessary build steps to tweak the theme, and publish your package on npm.
800
+* Install your own theme npm package as a dependency of your app.
801
+
802
+Here is an example of adding a [customized Bootstrap](https://medium.com/@tacomanator/customizing-create-react-app-aa9ffb88165) that follows these steps.
803
+
804
+## Adding Flow
805
+
806
+Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept.
807
+
808
+Recent versions of [Flow](http://flowtype.org/) work with Create React App projects out of the box.
809
+
810
+To add Flow to a Create React App project, follow these steps:
811
+
812
+1. Run `npm install --save flow-bin` (or `yarn add flow-bin`).
813
+2. Add `"flow": "flow"` to the `scripts` section of your `package.json`.
814
+3. Run `npm run flow init` (or `yarn flow init`) to create a [`.flowconfig` file](https://flowtype.org/docs/advanced-configuration.html) in the root directory.
815
+4. Add `// @flow` to any files you want to type check (for example, to `src/App.js`).
816
+
817
+Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors.
818
+You can optionally use an IDE like [Nuclide](https://nuclide.io/docs/languages/flow/) for a better integrated experience.
819
+In the future we plan to integrate it into Create React App even more closely.
820
+
821
+To learn more about Flow, check out [its documentation](https://flowtype.org/).
822
+
823
+## Adding a Router
824
+
825
+Create React App doesn't prescribe a specific routing solution, but [React Router](https://reacttraining.com/react-router/) is the most popular one.
826
+
827
+To add it, run:
828
+
829
+```sh
830
+npm install --save react-router-dom
831
+```
832
+
833
+Alternatively you may use `yarn`:
834
+
835
+```sh
836
+yarn add react-router-dom
837
+```
838
+
839
+To try it, delete all the code in `src/App.js` and replace it with any of the examples on its website. The [Basic Example](https://reacttraining.com/react-router/web/example/basic) is a good place to get started.
840
+
841
+Note that [you may need to configure your production server to support client-side routing](#serving-apps-with-client-side-routing) before deploying your app.
842
+
843
+## Adding Custom Environment Variables
844
+
845
+>Note: this feature is available with `react-scripts@0.2.3` and higher.
846
+
847
+Your project can consume variables declared in your environment as if they were declared locally in your JS files. By
848
+default you will have `NODE_ENV` defined for you, and any other environment variables starting with
849
+`REACT_APP_`.
850
+
851
+**The environment variables are embedded during the build time**. Since Create React App produces a static HTML/CSS/JS bundle, it can’t possibly read them at runtime. To read them at runtime, you would need to load HTML into memory on the server and replace placeholders in runtime, just like [described here](#injecting-data-from-the-server-into-the-page). Alternatively you can rebuild the app on the server anytime you change them.
852
+
853
+>Note: You must create custom environment variables beginning with `REACT_APP_`. Any other variables except `NODE_ENV` will be ignored to avoid accidentally [exposing a private key on the machine that could have the same name](https://github.com/facebookincubator/create-react-app/issues/865#issuecomment-252199527). Changing any environment variables will require you to restart the development server if it is running.
854
+
855
+These environment variables will be defined for you on `process.env`. For example, having an environment
856
+variable named `REACT_APP_SECRET_CODE` will be exposed in your JS as `process.env.REACT_APP_SECRET_CODE`.
857
+
858
+There is also a special built-in environment variable called `NODE_ENV`. You can read it from `process.env.NODE_ENV`. When you run `npm start`, it is always equal to `'development'`, when you run `npm test` it is always equal to `'test'`, and when you run `npm run build` to make a production bundle, it is always equal to `'production'`. **You cannot override `NODE_ENV` manually.** This prevents developers from accidentally deploying a slow development build to production.
859
+
860
+These environment variables can be useful for displaying information conditionally based on where the project is
861
+deployed or consuming sensitive data that lives outside of version control.
862
+
863
+First, you need to have environment variables defined. For example, let’s say you wanted to consume a secret defined
864
+in the environment inside a `<form>`:
865
+
866
+```jsx
867
+render() {
868
+  return (
869
+    <div>
870
+      <small>You are running this application in <b>{process.env.NODE_ENV}</b> mode.</small>
871
+      <form>
872
+        <input type="hidden" defaultValue={process.env.REACT_APP_SECRET_CODE} />
873
+      </form>
874
+    </div>
875
+  );
876
+}
877
+```
878
+
879
+During the build, `process.env.REACT_APP_SECRET_CODE` will be replaced with the current value of the `REACT_APP_SECRET_CODE` environment variable. Remember that the `NODE_ENV` variable will be set for you automatically.
880
+
881
+When you load the app in the browser and inspect the `<input>`, you will see its value set to `abcdef`, and the bold text will show the environment provided when using `npm start`:
882
+
883
+```html
884
+<div>
885
+  <small>You are running this application in <b>development</b> mode.</small>
886
+  <form>
887
+    <input type="hidden" value="abcdef" />
888
+  </form>
889
+</div>
890
+```
891
+
892
+The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this
893
+value, we need to have it defined in the environment. This can be done using two ways: either in your shell or in
894
+a `.env` file. Both of these ways are described in the next few sections.
895
+
896
+Having access to the `NODE_ENV` is also useful for performing actions conditionally:
897
+
898
+```js
899
+if (process.env.NODE_ENV !== 'production') {
900
+  analytics.disable();
901
+}
902
+```
903
+
904
+When you compile the app with `npm run build`, the minification step will strip out this condition, and the resulting bundle will be smaller.
905
+
906
+### Referencing Environment Variables in the HTML
907
+
908
+>Note: this feature is available with `react-scripts@0.9.0` and higher.
909
+
910
+You can also access the environment variables starting with `REACT_APP_` in the `public/index.html`. For example:
911
+
912
+```html
913
+<title>%REACT_APP_WEBSITE_NAME%</title>
914
+```
915
+
916
+Note that the caveats from the above section apply:
917
+
918
+* Apart from a few built-in variables (`NODE_ENV` and `PUBLIC_URL`), variable names must start with `REACT_APP_` to work.
919
+* The environment variables are injected at build time. If you need to inject them at runtime, [follow this approach instead](#generating-dynamic-meta-tags-on-the-server).
920
+
921
+### Adding Temporary Environment Variables In Your Shell
922
+
923
+Defining environment variables can vary between OSes. It’s also important to know that this manner is temporary for the
924
+life of the shell session.
925
+
926
+#### Windows (cmd.exe)
927
+
928
+```cmd
929
+set "REACT_APP_SECRET_CODE=abcdef" && npm start
930
+```
931
+
932
+(Note: Quotes around the variable assignment are required to avoid a trailing whitespace.)
933
+
934
+#### Windows (Powershell)
935
+
936
+```Powershell
937
+($env:REACT_APP_SECRET_CODE = "abcdef") -and (npm start)
938
+```
939
+
940
+#### Linux, macOS (Bash)
941
+
942
+```bash
943
+REACT_APP_SECRET_CODE=abcdef npm start
944
+```
945
+
946
+### Adding Development Environment Variables In `.env`
947
+
948
+>Note: this feature is available with `react-scripts@0.5.0` and higher.
949
+
950
+To define permanent environment variables, create a file called `.env` in the root of your project:
951
+
952
+```
953
+REACT_APP_SECRET_CODE=abcdef
954
+```
955
+>Note: You must create custom environment variables beginning with `REACT_APP_`. Any other variables except `NODE_ENV` will be ignored to avoid [accidentally exposing a private key on the machine that could have the same name](https://github.com/facebookincubator/create-react-app/issues/865#issuecomment-252199527). Changing any environment variables will require you to restart the development server if it is running.
956
+
957
+`.env` files **should be** checked into source control (with the exclusion of `.env*.local`).
958
+
959
+#### What other `.env` files can be used?
960
+
961
+>Note: this feature is **available with `react-scripts@1.0.0` and higher**.
962
+
963
+* `.env`: Default.
964
+* `.env.local`: Local overrides. **This file is loaded for all environments except test.**
965
+* `.env.development`, `.env.test`, `.env.production`: Environment-specific settings.
966
+* `.env.development.local`, `.env.test.local`, `.env.production.local`: Local overrides of environment-specific settings.
967
+
968
+Files on the left have more priority than files on the right:
969
+
970
+* `npm start`: `.env.development.local`, `.env.development`, `.env.local`, `.env`
971
+* `npm run build`: `.env.production.local`, `.env.production`, `.env.local`, `.env`
972
+* `npm test`: `.env.test.local`, `.env.test`, `.env` (note `.env.local` is missing)
973
+
974
+These variables will act as the defaults if the machine does not explicitly set them.<br>
975
+Please refer to the [dotenv documentation](https://github.com/motdotla/dotenv) for more details.
976
+
977
+>Note: If you are defining environment variables for development, your CI and/or hosting platform will most likely need
978
+these defined as well. Consult their documentation how to do this. For example, see the documentation for [Travis CI](https://docs.travis-ci.com/user/environment-variables/) or [Heroku](https://devcenter.heroku.com/articles/config-vars).
979
+
980
+#### Expanding Environment Variables In `.env`
981
+
982
+>Note: this feature is available with `react-scripts@1.1.0` and higher.
983
+
984
+Expand variables already on your machine for use in your `.env` file (using [dotenv-expand](https://github.com/motdotla/dotenv-expand)).
985
+
986
+For example, to get the environment variable `npm_package_version`:
987
+
988
+```
989
+REACT_APP_VERSION=$npm_package_version
990
+# also works:
991
+# REACT_APP_VERSION=${npm_package_version}
992
+```
993
+
994
+Or expand variables local to the current `.env` file:
995
+
996
+```
997
+DOMAIN=www.example.com
998
+REACT_APP_FOO=$DOMAIN/foo
999
+REACT_APP_BAR=$DOMAIN/bar
1000
+```
1001
+
1002
+## Can I Use Decorators?
1003
+
1004
+Many popular libraries use [decorators](https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841) in their documentation.<br>
1005
+Create React App doesn’t support decorator syntax at the moment because:
1006
+
1007
+* It is an experimental proposal and is subject to change.
1008
+* The current specification version is not officially supported by Babel.
1009
+* If the specification changes, we won’t be able to write a codemod because we don’t use them internally at Facebook.
1010
+
1011
+However in many cases you can rewrite decorator-based code without decorators just as fine.<br>
1012
+Please refer to these two threads for reference:
1013
+
1014
+* [#214](https://github.com/facebookincubator/create-react-app/issues/214)
1015
+* [#411](https://github.com/facebookincubator/create-react-app/issues/411)
1016
+
1017
+Create React App will add decorator support when the specification advances to a stable stage.
1018
+
1019
+## Fetching Data with AJAX Requests
1020
+
1021
+React doesn't prescribe a specific approach to data fetching, but people commonly use either a library like [axios](https://github.com/axios/axios) or the [`fetch()` API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) provided by the browser. Conveniently, Create React App includes a polyfill for `fetch()` so you can use it without worrying about the browser support.
1022
+
1023
+The global `fetch` function allows to easily makes AJAX requests. It takes in a URL as an input and returns a `Promise` that resolves to a `Response` object. You can find more information about `fetch` [here](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch).
1024
+
1025
+This project also includes a [Promise polyfill](https://github.com/then/promise) which provides a full implementation of Promises/A+. A Promise represents the eventual result of an asynchronous operation, you can find more information about Promises [here](https://www.promisejs.org/) and [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). Both axios and `fetch()` use Promises under the hood. You can also use the [`async / await`](https://davidwalsh.name/async-await) syntax to reduce the callback nesting.
1026
+
1027
+You can learn more about making AJAX requests from React components in [the FAQ entry on the React website](https://reactjs.org/docs/faq-ajax.html).
1028
+
1029
+## Integrating with an API Backend
1030
+
1031
+These tutorials will help you to integrate your app with an API backend running on another port,
1032
+using `fetch()` to access it.
1033
+
1034
+### Node
1035
+Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/).
1036
+You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo).
1037
+
1038
+### Ruby on Rails
1039
+
1040
+Check out [this tutorial](https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/).
1041
+You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo-rails).
1042
+
1043
+## Proxying API Requests in Development
1044
+
1045
+>Note: this feature is available with `react-scripts@0.2.3` and higher.
1046
+
1047
+People often serve the front-end React app from the same host and port as their backend implementation.<br>
1048
+For example, a production setup might look like this after the app is deployed:
1049
+
1050
+```
1051
+/             - static server returns index.html with React app
1052
+/todos        - static server returns index.html with React app
1053
+/api/todos    - server handles any /api/* requests using the backend implementation
1054
+```
1055
+
1056
+Such setup is **not** required. However, if you **do** have a setup like this, it is convenient to write requests like `fetch('/api/todos')` without worrying about redirecting them to another host or port during development.
1057
+
1058
+To tell the development server to proxy any unknown requests to your API server in development, add a `proxy` field to your `package.json`, for example:
1059
+
1060
+```js
1061
+  "proxy": "http://localhost:4000",
1062
+```
1063
+
1064
+This way, when you `fetch('/api/todos')` in development, the development server will recognize that it’s not a static asset, and will proxy your request to `http://localhost:4000/api/todos` as a fallback. The development server will **only** attempt to send requests without `text/html` in its `Accept` header to the proxy.
1065
+
1066
+Conveniently, this avoids [CORS issues](http://stackoverflow.com/questions/21854516/understanding-ajax-cors-and-security-considerations) and error messages like this in development:
1067
+
1068
+```
1069
+Fetch API cannot load http://localhost:4000/api/todos. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
1070
+```
1071
+
1072
+Keep in mind that `proxy` only has effect in development (with `npm start`), and it is up to you to ensure that URLs like `/api/todos` point to the right thing in production. You don’t have to use the `/api` prefix. Any unrecognized request without a `text/html` accept header will be redirected to the specified `proxy`.
1073
+
1074
+The `proxy` option supports HTTP, HTTPS and WebSocket connections.<br>
1075
+If the `proxy` option is **not** flexible enough for you, alternatively you can:
1076
+
1077
+* [Configure the proxy yourself](#configuring-the-proxy-manually)
1078
+* Enable CORS on your server ([here’s how to do it for Express](http://enable-cors.org/server_expressjs.html)).
1079
+* Use [environment variables](#adding-custom-environment-variables) to inject the right server host and port into your app.
1080
+
1081
+### "Invalid Host Header" Errors After Configuring Proxy
1082
+
1083
+When you enable the `proxy` option, you opt into a more strict set of host checks. This is necessary because leaving the backend open to remote hosts makes your computer vulnerable to DNS rebinding attacks. The issue is explained in [this article](https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a) and [this issue](https://github.com/webpack/webpack-dev-server/issues/887).
1084
+
1085
+This shouldn’t affect you when developing on `localhost`, but if you develop remotely like [described here](https://github.com/facebookincubator/create-react-app/issues/2271), you will see this error in the browser after enabling the `proxy` option:
1086
+
1087
+>Invalid Host header
1088
+
1089
+To work around it, you can specify your public development host in a file called `.env.development` in the root of your project:
1090
+
1091
+```
1092
+HOST=mypublicdevhost.com
1093
+```
1094
+
1095
+If you restart the development server now and load the app from the specified host, it should work.
1096
+
1097
+If you are still having issues or if you’re using a more exotic environment like a cloud editor, you can bypass the host check completely by adding a line to `.env.development.local`. **Note that this is dangerous and exposes your machine to remote code execution from malicious websites:**
1098
+
1099
+```
1100
+# NOTE: THIS IS DANGEROUS!
1101
+# It exposes your machine to attacks from the websites you visit.
1102
+DANGEROUSLY_DISABLE_HOST_CHECK=true
1103
+```
1104
+
1105
+We don’t recommend this approach.
1106
+
1107
+### Configuring the Proxy Manually
1108
+
1109
+>Note: this feature is available with `react-scripts@1.0.0` and higher.
1110
+
1111
+If the `proxy` option is **not** flexible enough for you, you can specify an object in the following form (in `package.json`).<br>
1112
+You may also specify any configuration value [`http-proxy-middleware`](https://github.com/chimurai/http-proxy-middleware#options) or [`http-proxy`](https://github.com/nodejitsu/node-http-proxy#options) supports.
1113
+```js
1114
+{
1115
+  // ...
1116
+  "proxy": {
1117
+    "/api": {
1118
+      "target": "<url>",
1119
+      "ws": true
1120
+      // ...
1121
+    }
1122
+  }
1123
+  // ...
1124
+}
1125
+```
1126
+
1127
+All requests matching this path will be proxies, no exceptions. This includes requests for `text/html`, which the standard `proxy` option does not proxy.
1128
+
1129
+If you need to specify multiple proxies, you may do so by specifying additional entries.
1130
+Matches are regular expressions, so that you can use a regexp to match multiple paths.
1131
+```js
1132
+{
1133
+  // ...
1134
+  "proxy": {
1135
+    // Matches any request starting with /api
1136
+    "/api": {
1137
+      "target": "<url_1>",
1138
+      "ws": true
1139
+      // ...
1140
+    },
1141
+    // Matches any request starting with /foo
1142
+    "/foo": {
1143
+      "target": "<url_2>",
1144
+      "ssl": true,
1145
+      "pathRewrite": {
1146
+        "^/foo": "/foo/beta"
1147
+      }
1148
+      // ...
1149
+    },
1150
+    // Matches /bar/abc.html but not /bar/sub/def.html
1151
+    "/bar/[^/]*[.]html": {
1152
+      "target": "<url_3>",
1153
+      // ...
1154
+    },
1155
+    // Matches /baz/abc.html and /baz/sub/def.html
1156
+    "/baz/.*/.*[.]html": {
1157
+      "target": "<url_4>"
1158
+      // ...
1159
+    }
1160
+  }
1161
+  // ...
1162
+}
1163
+```
1164
+
1165
+### Configuring a WebSocket Proxy
1166
+
1167
+When setting up a WebSocket proxy, there are a some extra considerations to be aware of.
1168
+
1169
+If you’re using a WebSocket engine like [Socket.io](https://socket.io/), you must have a Socket.io server running that you can use as the proxy target. Socket.io will not work with a standard WebSocket server. Specifically, don't expect Socket.io to work with [the websocket.org echo test](http://websocket.org/echo.html).
1170
+
1171
+There’s some good documentation available for [setting up a Socket.io server](https://socket.io/docs/).
1172
+
1173
+Standard WebSockets **will** work with a standard WebSocket server as well as the websocket.org echo test. You can use libraries like [ws](https://github.com/websockets/ws) for the server, with [native WebSockets in the browser](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket).
1174
+
1175
+Either way, you can proxy WebSocket requests manually in `package.json`:
1176
+
1177
+```js
1178
+{
1179
+  // ...
1180
+  "proxy": {
1181
+    "/socket": {
1182
+      // Your compatible WebSocket server
1183
+      "target": "ws://<socket_url>",
1184
+      // Tell http-proxy-middleware that this is a WebSocket proxy.
1185
+      // Also allows you to proxy WebSocket requests without an additional HTTP request
1186
+      // https://github.com/chimurai/http-proxy-middleware#external-websocket-upgrade
1187
+      "ws": true
1188
+      // ...
1189
+    }
1190
+  }
1191
+  // ...
1192
+}
1193
+```
1194
+
1195
+## Using HTTPS in Development
1196
+
1197
+>Note: this feature is available with `react-scripts@0.4.0` and higher.
1198
+
1199
+You may require the dev server to serve pages over HTTPS. One particular case where this could be useful is when using [the "proxy" feature](#proxying-api-requests-in-development) to proxy requests to an API server when that API server is itself serving HTTPS.
1200
+
1201
+To do this, set the `HTTPS` environment variable to `true`, then start the dev server as usual with `npm start`:
1202
+
1203
+#### Windows (cmd.exe)
1204
+
1205
+```cmd
1206
+set HTTPS=true&&npm start
1207
+```
1208
+
1209
+#### Windows (Powershell)
1210
+
1211
+```Powershell
1212
+($env:HTTPS = $true) -and (npm start)
1213
+```
1214
+
1215
+(Note: the lack of whitespace is intentional.)
1216
+
1217
+#### Linux, macOS (Bash)
1218
+
1219
+```bash
1220
+HTTPS=true npm start
1221
+```
1222
+
1223
+Note that the server will use a self-signed certificate, so your web browser will almost definitely display a warning upon accessing the page.
1224
+
1225
+## Generating Dynamic `<meta>` Tags on the Server
1226
+
1227
+Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
1228
+
1229
+```html
1230
+<!doctype html>
1231
+<html lang="en">
1232
+  <head>
1233
+    <meta property="og:title" content="__OG_TITLE__">
1234
+    <meta property="og:description" content="__OG_DESCRIPTION__">
1235
+```
1236
+
1237
+Then, on the server, regardless of the backend you use, you can read `index.html` into memory and replace `__OG_TITLE__`, `__OG_DESCRIPTION__`, and any other placeholders with values depending on the current URL. Just make sure to sanitize and escape the interpolated values so that they are safe to embed into HTML!
1238
+
1239
+If you use a Node server, you can even share the route matching logic between the client and the server. However duplicating it also works fine in simple cases.
1240
+
1241
+## Pre-Rendering into Static HTML Files
1242
+
1243
+If you’re hosting your `build` with a static hosting provider you can use [react-snapshot](https://www.npmjs.com/package/react-snapshot) or [react-snap](https://github.com/stereobooster/react-snap) to generate HTML pages for each route, or relative link, in your application. These pages will then seamlessly become active, or “hydrated”, when the JavaScript bundle has loaded.
1244
+
1245
+There are also opportunities to use this outside of static hosting, to take the pressure off the server when generating and caching routes.
1246
+
1247
+The primary benefit of pre-rendering is that you get the core content of each page _with_ the HTML payload—regardless of whether or not your JavaScript bundle successfully downloads. It also increases the likelihood that each route of your application will be picked up by search engines.
1248
+
1249
+You can read more about [zero-configuration pre-rendering (also called snapshotting) here](https://medium.com/superhighfives/an-almost-static-stack-6df0a2791319).
1250
+
1251
+## Injecting Data from the Server into the Page
1252
+
1253
+Similarly to the previous section, you can leave some placeholders in the HTML that inject global variables, for example:
1254
+
1255
+```js
1256
+<!doctype html>
1257
+<html lang="en">
1258
+  <head>
1259
+    <script>
1260
+      window.SERVER_DATA = __SERVER_DATA__;
1261
+    </script>
1262
+```
1263
+
1264
+Then, on the server, you can replace `__SERVER_DATA__` with a JSON of real data right before sending the response. The client code can then read `window.SERVER_DATA` to use it. **Make sure to [sanitize the JSON before sending it to the client](https://medium.com/node-security/the-most-common-xss-vulnerability-in-react-js-applications-2bdffbcc1fa0) as it makes your app vulnerable to XSS attacks.**
1265
+
1266
+## Running Tests
1267
+
1268
+>Note: this feature is available with `react-scripts@0.3.0` and higher.<br>
1269
+>[Read the migration guide to learn how to enable it in older projects!](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md#migrating-from-023-to-030)
1270
+
1271
+Create React App uses [Jest](https://facebook.github.io/jest/) as its test runner. To prepare for this integration, we did a [major revamp](https://facebook.github.io/jest/blog/2016/09/01/jest-15.html) of Jest so if you heard bad things about it years ago, give it another try.
1272
+
1273
+Jest is a Node-based runner. This means that the tests always run in a Node environment and not in a real browser. This lets us enable fast iteration speed and prevent flakiness.
1274
+
1275
+While Jest provides browser globals such as `window` thanks to [jsdom](https://github.com/tmpvar/jsdom), they are only approximations of the real browser behavior. Jest is intended to be used for unit tests of your logic and your components rather than the DOM quirks.
1276
+
1277
+We recommend that you use a separate tool for browser end-to-end tests if you need them. They are beyond the scope of Create React App.
1278
+
1279
+### Filename Conventions
1280
+
1281
+Jest will look for test files with any of the following popular naming conventions:
1282
+
1283
+* Files with `.js` suffix in `__tests__` folders.
1284
+* Files with `.test.js` suffix.
1285
+* Files with `.spec.js` suffix.
1286
+
1287
+The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder.
1288
+
1289
+We recommend to put the test files (or `__tests__` folders) next to the code they are testing so that relative imports appear shorter. For example, if `App.test.js` and `App.js` are in the same folder, the test just needs to `import App from './App'` instead of a long relative path. Colocation also helps find tests more quickly in larger projects.
1290
+
1291
+### Command Line Interface
1292
+
1293
+When you run `npm test`, Jest will launch in the watch mode. Every time you save a file, it will re-run the tests, just like `npm start` recompiles the code.
1294
+
1295
+The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you can keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run:
1296
+
1297
+![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif)
1298
+
1299
+### Version Control Integration
1300
+
1301
+By default, when you run `npm test`, Jest will only run the tests related to files changed since the last commit. This is an optimization designed to make your tests run fast regardless of how many tests you have. However it assumes that you don’t often commit the code that doesn’t pass the tests.
1302
+
1303
+Jest will always explicitly mention that it only ran tests related to the files changed since the last commit. You can also press `a` in the watch mode to force Jest to run all tests.
1304
+
1305
+Jest will always run all tests on a [continuous integration](#continuous-integration) server or if the project is not inside a Git or Mercurial repository.
1306
+
1307
+### Writing Tests
1308
+
1309
+To create tests, add `it()` (or `test()`) blocks with the name of the test and its code. You may optionally wrap them in `describe()` blocks for logical grouping but this is neither required nor recommended.
1310
+
1311
+Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this:
1312
+
1313
+```js
1314
+import sum from './sum';
1315
+
1316
+it('sums numbers', () => {
1317
+  expect(sum(1, 2)).toEqual(3);
1318
+  expect(sum(2, 2)).toEqual(4);
1319
+});
1320
+```
1321
+
1322
+All `expect()` matchers supported by Jest are [extensively documented here](https://facebook.github.io/jest/docs/en/expect.html#content).<br>
1323
+You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](https://facebook.github.io/jest/docs/en/expect.html#tohavebeencalled) to create “spies” or mock functions.
1324
+
1325
+### Testing Components
1326
+
1327
+There is a broad spectrum of component testing techniques. They range from a “smoke test” verifying that a component renders without throwing, to shallow rendering and testing some of the output, to full rendering and testing component lifecycle and state changes.
1328
+
1329
+Different projects choose different testing tradeoffs based on how often components change, and how much logic they contain. If you haven’t decided on a testing strategy yet, we recommend that you start with creating simple smoke tests for your components:
1330
+
1331
+```js
1332
+import React from 'react';
1333
+import ReactDOM from 'react-dom';
1334
+import App from './App';
1335
+
1336
+it('renders without crashing', () => {
1337
+  const div = document.createElement('div');
1338
+  ReactDOM.render(<App />, div);
1339
+});
1340
+```
1341
+
1342
+This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot of value with very little effort so they are great as a starting point, and this is the test you will find in `src/App.test.js`.
1343
+
1344
+When you encounter bugs caused by changing components, you will gain a deeper insight into which parts of them are worth testing in your application. This might be a good time to introduce more specific tests asserting specific expected output or behavior.
1345
+
1346
+If you’d like to test components in isolation from the child components they render, we recommend using [`shallow()` rendering API](http://airbnb.io/enzyme/docs/api/shallow.html) from [Enzyme](http://airbnb.io/enzyme/). To install it, run:
1347
+
1348
+```sh
1349
+npm install --save enzyme enzyme-adapter-react-16 react-test-renderer
1350
+```
1351
+
1352
+Alternatively you may use `yarn`:
1353
+
1354
+```sh
1355
+yarn add enzyme enzyme-adapter-react-16 react-test-renderer
1356
+```
1357
+
1358
+As of Enzyme 3, you will need to install Enzyme along with an Adapter corresponding to the version of React you are using. (The examples above use the adapter for React 16.)
1359
+
1360
+The adapter will also need to be configured in your [global setup file](#initializing-test-environment):
1361
+
1362
+#### `src/setupTests.js`
1363
+```js
1364
+import { configure } from 'enzyme';
1365
+import Adapter from 'enzyme-adapter-react-16';
1366
+
1367
+configure({ adapter: new Adapter() });
1368
+```
1369
+
1370
+>Note: Keep in mind that if you decide to "eject" before creating `src/setupTests.js`, the resulting `package.json` file won't contain any reference to it. [Read here](#initializing-test-environment) to learn how to add this after ejecting.
1371
+
1372
+Now you can write a smoke test with it:
1373
+
1374
+```js
1375
+import React from 'react';
1376
+import { shallow } from 'enzyme';
1377
+import App from './App';
1378
+
1379
+it('renders without crashing', () => {
1380
+  shallow(<App />);
1381
+});
1382
+```
1383
+
1384
+Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `<App>` and doesn’t go deeper. For example, even if `<App>` itself renders a `<Button>` that throws, this test will pass. Shallow rendering is great for isolated unit tests, but you may still want to create some full rendering tests to ensure the components integrate correctly. Enzyme supports [full rendering with `mount()`](http://airbnb.io/enzyme/docs/api/mount.html), and you can also use it for testing state changes and component lifecycle.
1385
+
1386
+You can read the [Enzyme documentation](http://airbnb.io/enzyme/) for more testing techniques. Enzyme documentation uses Chai and Sinon for assertions but you don’t have to use them because Jest provides built-in `expect()` and `jest.fn()` for spies.
1387
+
1388
+Here is an example from Enzyme documentation that asserts specific output, rewritten to use Jest matchers:
1389
+
1390
+```js
1391
+import React from 'react';
1392
+import { shallow } from 'enzyme';
1393
+import App from './App';
1394
+
1395
+it('renders welcome message', () => {
1396
+  const wrapper = shallow(<App />);
1397
+  const welcome = <h2>Welcome to React</h2>;
1398
+  // expect(wrapper.contains(welcome)).to.equal(true);
1399
+  expect(wrapper.contains(welcome)).toEqual(true);
1400
+});
1401
+```
1402
+
1403
+All Jest matchers are [extensively documented here](http://facebook.github.io/jest/docs/en/expect.html).<br>
1404
+Nevertheless you can use a third-party assertion library like [Chai](http://chaijs.com/) if you want to, as described below.
1405
+
1406
+Additionally, you might find [jest-enzyme](https://github.com/blainekasten/enzyme-matchers) helpful to simplify your tests with readable matchers. The above `contains` code can be written more simply with jest-enzyme.
1407
+
1408
+```js
1409
+expect(wrapper).toContainReact(welcome)
1410
+```
1411
+
1412
+To enable this, install `jest-enzyme`:
1413
+
1414
+```sh
1415
+npm install --save jest-enzyme
1416
+```
1417
+
1418
+Alternatively you may use `yarn`:
1419
+
1420
+```sh
1421
+yarn add jest-enzyme
1422
+```
1423
+
1424
+Import it in [`src/setupTests.js`](#initializing-test-environment) to make its matchers available in every test:
1425
+
1426
+```js
1427
+import 'jest-enzyme';
1428
+```
1429
+
1430
+### Using Third Party Assertion Libraries
1431
+
1432
+We recommend that you use `expect()` for assertions and `jest.fn()` for spies. If you are having issues with them please [file those against Jest](https://github.com/facebook/jest/issues/new), and we’ll fix them. We intend to keep making them better for React, supporting, for example, [pretty-printing React elements as JSX](https://github.com/facebook/jest/pull/1566).
1433
+
1434
+However, if you are used to other libraries, such as [Chai](http://chaijs.com/) and [Sinon](http://sinonjs.org/), or if you have existing code using them that you’d like to port over, you can import them normally like this:
1435
+
1436
+```js
1437
+import sinon from 'sinon';
1438
+import { expect } from 'chai';
1439
+```
1440
+
1441
+and then use them in your tests like you normally do.
1442
+
1443
+### Initializing Test Environment
1444
+
1445
+>Note: this feature is available with `react-scripts@0.4.0` and higher.
1446
+
1447
+If your app uses a browser API that you need to mock in your tests or if you just need a global setup before running your tests, add a `src/setupTests.js` to your project. It will be automatically executed before running your tests.
1448
+
1449
+For example:
1450
+
1451
+#### `src/setupTests.js`
1452
+```js
1453
+const localStorageMock = {
1454
+  getItem: jest.fn(),
1455
+  setItem: jest.fn(),
1456
+  clear: jest.fn()
1457
+};
1458
+global.localStorage = localStorageMock
1459
+```
1460
+
1461
+>Note: Keep in mind that if you decide to "eject" before creating `src/setupTests.js`, the resulting `package.json` file won't contain any reference to it, so you should manually create the property `setupTestFrameworkScriptFile` in the configuration for Jest, something like the following:
1462
+
1463
+>```js
1464
+>"jest": {
1465
+>   // ...
1466
+>   "setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js"
1467
+>  }
1468
+>  ```
1469
+
1470
+### Focusing and Excluding Tests
1471
+
1472
+You can replace `it()` with `xit()` to temporarily exclude a test from being executed.<br>
1473
+Similarly, `fit()` lets you focus on a specific test without running any other tests.
1474
+
1475
+### Coverage Reporting
1476
+
1477
+Jest has an integrated coverage reporter that works well with ES6 and requires no configuration.<br>
1478
+Run `npm test -- --coverage` (note extra `--` in the middle) to include a coverage report like this:
1479
+
1480
+![coverage report](http://i.imgur.com/5bFhnTS.png)
1481
+
1482
+Note that tests run much slower with coverage so it is recommended to run it separately from your normal workflow.
1483
+
1484
+#### Configuration
1485
+
1486
+The default Jest coverage configuration can be overriden by adding any of the following supported keys to a Jest config in your package.json.
1487
+
1488
+Supported overrides:
1489
+ - [`collectCoverageFrom`](https://facebook.github.io/jest/docs/en/configuration.html#collectcoveragefrom-array)
1490
+ - [`coverageReporters`](https://facebook.github.io/jest/docs/en/configuration.html#coveragereporters-array-string)
1491
+ - [`coverageThreshold`](https://facebook.github.io/jest/docs/en/configuration.html#coveragethreshold-object)
1492
+ - [`snapshotSerializers`](https://facebook.github.io/jest/docs/en/configuration.html#snapshotserializers-array-string)
1493
+
1494
+Example package.json:
1495
+
1496
+```json
1497
+{
1498
+  "name": "your-package",
1499
+  "jest": {
1500
+    "collectCoverageFrom" : [
1501
+      "src/**/*.{js,jsx}",
1502
+      "!<rootDir>/node_modules/",
1503
+      "!<rootDir>/path/to/dir/"
1504
+    ],
1505
+    "coverageThreshold": {
1506
+      "global": {
1507
+        "branches": 90,
1508
+        "functions": 90,
1509
+        "lines": 90,
1510
+        "statements": 90
1511
+      }
1512
+    },
1513
+    "coverageReporters": ["text"],
1514
+    "snapshotSerializers": ["my-serializer-module"]
1515
+  }
1516
+}
1517
+```
1518
+
1519
+### Continuous Integration
1520
+
1521
+By default `npm test` runs the watcher with interactive CLI. However, you can force it to run tests once and finish the process by setting an environment variable called `CI`.
1522
+
1523
+When creating a build of your application with `npm run build` linter warnings are not checked by default. Like `npm test`, you can force the build to perform a linter warning check by setting the environment variable `CI`. If any warnings are encountered then the build fails.
1524
+
1525
+Popular CI servers already set the environment variable `CI` by default but you can do this yourself too:
1526
+
1527
+### On CI servers
1528
+#### Travis CI
1529
+
1530
+1. Following the [Travis Getting started](https://docs.travis-ci.com/user/getting-started/) guide for syncing your GitHub repository with Travis.  You may need to initialize some settings manually in your [profile](https://travis-ci.org/profile) page.
1531
+1. Add a `.travis.yml` file to your git repository.
1532
+```
1533
+language: node_js
1534
+node_js:
1535
+  - 6
1536
+cache:
1537
+  directories:
1538
+    - node_modules
1539
+script:
1540
+  - npm run build
1541
+  - npm test
1542
+```
1543
+1. Trigger your first build with a git push.
1544
+1. [Customize your Travis CI Build](https://docs.travis-ci.com/user/customizing-the-build/) if needed.
1545
+
1546
+#### CircleCI
1547
+
1548
+Follow [this article](https://medium.com/@knowbody/circleci-and-zeits-now-sh-c9b7eebcd3c1) to set up CircleCI with a Create React App project.
1549
+
1550
+### On your own environment
1551
+##### Windows (cmd.exe)
1552
+
1553
+```cmd
1554
+set CI=true&&npm test
1555
+```
1556
+
1557
+```cmd
1558
+set CI=true&&npm run build
1559
+```
1560
+
1561
+(Note: the lack of whitespace is intentional.)
1562
+
1563
+##### Windows (Powershell)
1564
+
1565
+```Powershell
1566
+($env:CI = $true) -and (npm test)
1567
+```
1568
+
1569
+```Powershell
1570
+($env:CI = $true) -and (npm run build)
1571
+```
1572
+
1573
+##### Linux, macOS (Bash)
1574
+
1575
+```bash
1576
+CI=true npm test
1577
+```
1578
+
1579
+```bash
1580
+CI=true npm run build
1581
+```
1582
+
1583
+The test command will force Jest to run tests once instead of launching the watcher.
1584
+
1585
+>  If you find yourself doing this often in development, please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new) to tell us about your use case because we want to make watcher the best experience and are open to changing how it works to accommodate more workflows.
1586
+
1587
+The build command will check for linter warnings and fail if any are found.
1588
+
1589
+### Disabling jsdom
1590
+
1591
+By default, the `package.json` of the generated project looks like this:
1592
+
1593
+```js
1594
+  "scripts": {
1595
+    "start": "react-scripts start",
1596
+    "build": "react-scripts build",
1597
+    "test": "react-scripts test --env=jsdom"
1598
+```
1599
+
1600
+If you know that none of your tests depend on [jsdom](https://github.com/tmpvar/jsdom), you can safely remove `--env=jsdom`, and your tests will run faster:
1601
+
1602
+```diff
1603
+  "scripts": {
1604
+    "start": "react-scripts start",
1605
+    "build": "react-scripts build",
1606
+-   "test": "react-scripts test --env=jsdom"
1607
++   "test": "react-scripts test"
1608
+```
1609
+
1610
+To help you make up your mind, here is a list of APIs that **need jsdom**:
1611
+
1612
+* Any browser globals like `window` and `document`
1613
+* [`ReactDOM.render()`](https://facebook.github.io/react/docs/top-level-api.html#reactdom.render)
1614
+* [`TestUtils.renderIntoDocument()`](https://facebook.github.io/react/docs/test-utils.html#renderintodocument) ([a shortcut](https://github.com/facebook/react/blob/34761cf9a252964abfaab6faf74d473ad95d1f21/src/test/ReactTestUtils.js#L83-L91) for the above)
1615
+* [`mount()`](http://airbnb.io/enzyme/docs/api/mount.html) in [Enzyme](http://airbnb.io/enzyme/index.html)
1616
+
1617
+In contrast, **jsdom is not needed** for the following APIs:
1618
+
1619
+* [`TestUtils.createRenderer()`](https://facebook.github.io/react/docs/test-utils.html#shallow-rendering) (shallow rendering)
1620
+* [`shallow()`](http://airbnb.io/enzyme/docs/api/shallow.html) in [Enzyme](http://airbnb.io/enzyme/index.html)
1621
+
1622
+Finally, jsdom is also not needed for [snapshot testing](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html).
1623
+
1624
+### Snapshot Testing
1625
+
1626
+Snapshot testing is a feature of Jest that automatically generates text snapshots of your components and saves them on the disk so if the UI output changes, you get notified without manually writing any assertions on the component output. [Read more about snapshot testing.](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html)
1627
+
1628
+### Editor Integration
1629
+
1630
+If you use [Visual Studio Code](https://code.visualstudio.com), there is a [Jest extension](https://github.com/orta/vscode-jest) which works with Create React App out of the box. This provides a lot of IDE-like features while using a text editor: showing the status of a test run with potential fail messages inline, starting and stopping the watcher automatically, and offering one-click snapshot updates.
1631
+
1632
+![VS Code Jest Preview](https://cloud.githubusercontent.com/assets/49038/20795349/a032308a-b7c8-11e6-9b34-7eeac781003f.png)
1633
+
1634
+## Debugging Tests
1635
+
1636
+There are various ways to setup a debugger for your Jest tests. We cover debugging in Chrome and [Visual Studio Code](https://code.visualstudio.com/).
1637
+
1638
+>Note: debugging tests requires Node 8 or higher.
1639
+
1640
+### Debugging Tests in Chrome
1641
+
1642
+Add the following to the `scripts` section in your project's `package.json`
1643
+```json
1644
+"scripts": {
1645
+    "test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom"
1646
+  }
1647
+```
1648
+Place `debugger;` statements in any test and run:
1649
+```bash
1650
+$ npm run test:debug
1651
+```
1652
+
1653
+This will start running your Jest tests, but pause before executing to allow a debugger to attach to the process.
1654
+
1655
+Open the following in Chrome
1656
+```
1657
+about:inspect
1658
+```
1659
+
1660
+After opening that link, the Chrome Developer Tools will be displayed. Select `inspect` on your process and a breakpoint will be set at the first line of the react script (this is done simply to give you time to open the developer tools and to prevent Jest from executing before you have time to do so). Click the button that looks like a "play" button in the upper right hand side of the screen to continue execution. When Jest executes the test that contains the debugger statement, execution will pause and you can examine the current scope and call stack.
1661
+
1662
+>Note: the --runInBand cli option makes sure Jest runs test in the same process rather than spawning processes for individual tests. Normally Jest parallelizes test runs across processes but it is hard to debug many processes at the same time.
1663
+
1664
+### Debugging Tests in Visual Studio Code
1665
+
1666
+Debugging Jest tests is supported out of the box for [Visual Studio Code](https://code.visualstudio.com).
1667
+
1668
+Use the following [`launch.json`](https://code.visualstudio.com/docs/editor/debugging#_launch-configurations) configuration file:
1669
+```
1670
+{
1671
+  "version": "0.2.0",
1672
+  "configurations": [
1673
+    {
1674
+      "name": "Debug CRA Tests",
1675
+      "type": "node",
1676
+      "request": "launch",
1677
+      "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",      
1678
+      "args": [
1679
+        "test",
1680
+        "--runInBand",
1681
+        "--no-cache",
1682
+        "--env=jsdom"
1683
+      ],
1684
+      "cwd": "${workspaceRoot}",
1685
+      "protocol": "inspector",
1686
+      "console": "integratedTerminal",
1687
+      "internalConsoleOptions": "neverOpen"
1688
+    }
1689
+  ]
1690
+}
1691
+```
1692
+
1693
+## Developing Components in Isolation
1694
+
1695
+Usually, in an app, you have a lot of UI components, and each of them has many different states.
1696
+For an example, a simple button component could have following states:
1697
+
1698
+* In a regular state, with a text label.
1699
+* In the disabled mode.
1700
+* In a loading state.
1701
+
1702
+Usually, it’s hard to see these states without running a sample app or some examples.
1703
+
1704
+Create React App doesn’t include any tools for this by default, but you can easily add [Storybook for React](https://storybook.js.org) ([source](https://github.com/storybooks/storybook)) or [React Styleguidist](https://react-styleguidist.js.org/) ([source](https://github.com/styleguidist/react-styleguidist)) to your project. **These are third-party tools that let you develop components and see all their states in isolation from your app**.
1705
+
1706
+![Storybook for React Demo](http://i.imgur.com/7CIAWpB.gif)
1707
+
1708
+You can also deploy your Storybook or style guide as a static app. This way, everyone in your team can view and review different states of UI components without starting a backend server or creating an account in your app.
1709
+
1710
+### Getting Started with Storybook
1711
+
1712
+Storybook is a development environment for React UI components. It allows you to browse a component library, view the different states of each component, and interactively develop and test components.
1713
+
1714
+First, install the following npm package globally:
1715
+
1716
+```sh
1717
+npm install -g @storybook/cli
1718
+```
1719
+
1720
+Then, run the following command inside your app’s directory:
1721
+
1722
+```sh
1723
+getstorybook
1724
+```
1725
+
1726
+After that, follow the instructions on the screen.
1727
+
1728
+Learn more about React Storybook:
1729
+
1730
+* Screencast: [Getting Started with React Storybook](https://egghead.io/lessons/react-getting-started-with-react-storybook)
1731
+* [GitHub Repo](https://github.com/storybooks/storybook)
1732
+* [Documentation](https://storybook.js.org/basics/introduction/)
1733
+* [Snapshot Testing UI](https://github.com/storybooks/storybook/tree/master/addons/storyshots) with Storybook + addon/storyshot
1734
+
1735
+### Getting Started with Styleguidist
1736
+
1737
+Styleguidist combines a style guide, where all your components are presented on a single page with their props documentation and usage examples, with an environment for developing components in isolation, similar to Storybook. In Styleguidist you write examples in Markdown, where each code snippet is rendered as a live editable playground.
1738
+
1739
+First, install Styleguidist:
1740
+
1741
+```sh
1742
+npm install --save react-styleguidist
1743
+```
1744
+
1745
+Alternatively you may use `yarn`:
1746
+
1747
+```sh
1748
+yarn add react-styleguidist
1749
+```
1750
+
1751
+Then, add these scripts to your `package.json`:
1752
+
1753
+```diff
1754
+   "scripts": {
1755
++    "styleguide": "styleguidist server",
1756
++    "styleguide:build": "styleguidist build",
1757
+     "start": "react-scripts start",
1758
+```
1759
+
1760
+Then, run the following command inside your app’s directory:
1761
+
1762
+```sh
1763
+npm run styleguide
1764
+```
1765
+
1766
+After that, follow the instructions on the screen.
1767
+
1768
+Learn more about React Styleguidist:
1769
+
1770
+* [GitHub Repo](https://github.com/styleguidist/react-styleguidist)
1771
+* [Documentation](https://react-styleguidist.js.org/docs/getting-started.html)
1772
+
1773
+## Publishing Components to npm
1774
+
1775
+Create React App doesn't provide any built-in functionality to publish a component to npm. If you're ready to extract a component from your project so other people can use it, we recommend moving it to a separate directory outside of your project and then using a tool like [nwb](https://github.com/insin/nwb#react-components-and-libraries) to prepare it for publishing.
1776
+
1777
+## Making a Progressive Web App
1778
+
1779
+By default, the production build is a fully functional, offline-first
1780
+[Progressive Web App](https://developers.google.com/web/progressive-web-apps/).
1781
+
1782
+Progressive Web Apps are faster and more reliable than traditional web pages, and provide an engaging mobile experience:
1783
+
1784
+ * All static site assets are cached so that your page loads fast on subsequent visits, regardless of network connectivity (such as 2G or 3G). Updates are downloaded in the background.
1785
+ * Your app will work regardless of network state, even if offline. This means your users will be able to use your app at 10,000 feet and on the subway.
1786
+ * On mobile devices, your app can be added directly to the user's home screen, app icon and all. You can also re-engage users using web **push notifications**. This eliminates the need for the app store.
1787
+
1788
+The [`sw-precache-webpack-plugin`](https://github.com/goldhand/sw-precache-webpack-plugin)
1789
+is integrated into production configuration,
1790
+and it will take care of generating a service worker file that will automatically
1791
+precache all of your local assets and keep them up to date as you deploy updates.
1792
+The service worker will use a [cache-first strategy](https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-falling-back-to-network)
1793
+for handling all requests for local assets, including the initial HTML, ensuring
1794
+that your web app is reliably fast, even on a slow or unreliable network.
1795
+
1796
+### Opting Out of Caching
1797
+
1798
+If you would prefer not to enable service workers prior to your initial
1799
+production deployment, then remove the call to `registerServiceWorker()`
1800
+from [`src/index.js`](src/index.js).
1801
+
1802
+If you had previously enabled service workers in your production deployment and
1803
+have decided that you would like to disable them for all your existing users,
1804
+you can swap out the call to `registerServiceWorker()` in
1805
+[`src/index.js`](src/index.js) first by modifying the service worker import:
1806
+```javascript
1807
+import { unregister } from './registerServiceWorker';
1808
+```
1809
+and then call `unregister()` instead.
1810
+After the user visits a page that has `unregister()`,
1811
+the service worker will be uninstalled. Note that depending on how `/service-worker.js` is served,
1812
+it may take up to 24 hours for the cache to be invalidated.
1813
+
1814
+### Offline-First Considerations
1815
+
1816
+1. Service workers [require HTTPS](https://developers.google.com/web/fundamentals/getting-started/primers/service-workers#you_need_https),
1817
+although to facilitate local testing, that policy
1818
+[does not apply to `localhost`](http://stackoverflow.com/questions/34160509/options-for-testing-service-workers-via-http/34161385#34161385).
1819
+If your production web server does not support HTTPS, then the service worker
1820
+registration will fail, but the rest of your web app will remain functional.
1821
+
1822
+1. Service workers are [not currently supported](https://jakearchibald.github.io/isserviceworkerready/)
1823
+in all web browsers. Service worker registration [won't be attempted](src/registerServiceWorker.js)
1824
+on browsers that lack support.
1825
+
1826
+1. The service worker is only enabled in the [production environment](#deployment),
1827
+e.g. the output of `npm run build`. It's recommended that you do not enable an
1828
+offline-first service worker in a development environment, as it can lead to
1829
+frustration when previously cached assets are used and do not include the latest
1830
+changes you've made locally.
1831
+
1832
+1. If you *need* to test your offline-first service worker locally, build
1833
+the application (using `npm run build`) and run a simple http server from your
1834
+build directory. After running the build script, `create-react-app` will give
1835
+instructions for one way to test your production build locally and the [deployment instructions](#deployment) have
1836
+instructions for using other methods. *Be sure to always use an
1837
+incognito window to avoid complications with your browser cache.*
1838
+
1839
+1. If possible, configure your production environment to serve the generated
1840
+`service-worker.js` [with HTTP caching disabled](http://stackoverflow.com/questions/38843970/service-worker-javascript-update-frequency-every-24-hours).
1841
+If that's not possible—[GitHub Pages](#github-pages), for instance, does not
1842
+allow you to change the default 10 minute HTTP cache lifetime—then be aware
1843
+that if you visit your production site, and then revisit again before
1844
+`service-worker.js` has expired from your HTTP cache, you'll continue to get
1845
+the previously cached assets from the service worker. If you have an immediate
1846
+need to view your updated production deployment, performing a shift-refresh
1847
+will temporarily disable the service worker and retrieve all assets from the
1848
+network.
1849
+
1850
+1. Users aren't always familiar with offline-first web apps. It can be useful to
1851
+[let the user know](https://developers.google.com/web/fundamentals/instant-and-offline/offline-ux#inform_the_user_when_the_app_is_ready_for_offline_consumption)
1852
+when the service worker has finished populating your caches (showing a "This web
1853
+app works offline!" message) and also let them know when the service worker has
1854
+fetched the latest updates that will be available the next time they load the
1855
+page (showing a "New content is available; please refresh." message). Showing
1856
+this messages is currently left as an exercise to the developer, but as a
1857
+starting point, you can make use of the logic included in [`src/registerServiceWorker.js`](src/registerServiceWorker.js), which
1858
+demonstrates which service worker lifecycle events to listen for to detect each
1859
+scenario, and which as a default, just logs appropriate messages to the
1860
+JavaScript console.
1861
+
1862
+1. By default, the generated service worker file will not intercept or cache any
1863
+cross-origin traffic, like HTTP [API requests](#integrating-with-an-api-backend),
1864
+images, or embeds loaded from a different domain. If you would like to use a
1865
+runtime caching strategy for those requests, you can [`eject`](#npm-run-eject)
1866
+and then configure the
1867
+[`runtimeCaching`](https://github.com/GoogleChrome/sw-precache#runtimecaching-arrayobject)
1868
+option in the `SWPrecacheWebpackPlugin` section of
1869
+[`webpack.config.prod.js`](../config/webpack.config.prod.js).
1870
+
1871
+### Progressive Web App Metadata
1872
+
1873
+The default configuration includes a web app manifest located at
1874
+[`public/manifest.json`](public/manifest.json), that you can customize with
1875
+details specific to your web application.
1876
+
1877
+When a user adds a web app to their homescreen using Chrome or Firefox on
1878
+Android, the metadata in [`manifest.json`](public/manifest.json) determines what
1879
+icons, names, and branding colors to use when the web app is displayed.
1880
+[The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/)
1881
+provides more context about what each field means, and how your customizations
1882
+will affect your users' experience.
1883
+
1884
+## Analyzing the Bundle Size
1885
+
1886
+[Source map explorer](https://www.npmjs.com/package/source-map-explorer) analyzes
1887
+JavaScript bundles using the source maps. This helps you understand where code
1888
+bloat is coming from.
1889
+
1890
+To add Source map explorer to a Create React App project, follow these steps:
1891
+
1892
+```sh
1893
+npm install --save source-map-explorer
1894
+```
1895
+
1896
+Alternatively you may use `yarn`:
1897
+
1898
+```sh
1899
+yarn add source-map-explorer
1900
+```
1901
+
1902
+Then in `package.json`, add the following line to `scripts`:
1903
+
1904
+```diff
1905
+   "scripts": {
1906
++    "analyze": "source-map-explorer build/static/js/main.*",
1907
+     "start": "react-scripts start",
1908
+     "build": "react-scripts build",
1909
+     "test": "react-scripts test --env=jsdom",
1910
+```
1911
+
1912
+Then to analyze the bundle run the production build then run the analyze
1913
+script.
1914
+
1915
+```
1916
+npm run build
1917
+npm run analyze
1918
+```
1919
+
1920
+## Deployment
1921
+
1922
+`npm run build` creates a `build` directory with a production build of your app. Set up your favorite HTTP server so that a visitor to your site is served `index.html`, and requests to static paths like `/static/js/main.<hash>.js` are served with the contents of the `/static/js/main.<hash>.js` file.
1923
+
1924
+### Static Server
1925
+
1926
+For environments using [Node](https://nodejs.org/), the easiest way to handle this would be to install [serve](https://github.com/zeit/serve) and let it handle the rest:
1927
+
1928
+```sh
1929
+npm install -g serve
1930
+serve -s build
1931
+```
1932
+
1933
+The last command shown above will serve your static site on the port **5000**. Like many of [serve](https://github.com/zeit/serve)’s internal settings, the port can be adjusted using the `-p` or `--port` flags.
1934
+
1935
+Run this command to get a full list of the options available:
1936
+
1937
+```sh
1938
+serve -h
1939
+```
1940
+
1941
+### Other Solutions
1942
+
1943
+You don’t necessarily need a static server in order to run a Create React App project in production. It works just as fine integrated into an existing dynamic one.
1944
+
1945
+Here’s a programmatic example using [Node](https://nodejs.org/) and [Express](http://expressjs.com/):
1946
+
1947
+```javascript
1948
+const express = require('express');
1949
+const path = require('path');
1950
+const app = express();
1951
+
1952
+app.use(express.static(path.join(__dirname, 'build')));
1953
+
1954
+app.get('/', function (req, res) {
1955
+  res.sendFile(path.join(__dirname, 'build', 'index.html'));
1956
+});
1957
+
1958
+app.listen(9000);
1959
+```
1960
+
1961
+The choice of your server software isn’t important either. Since Create React App is completely platform-agnostic, there’s no need to explicitly use Node.
1962
+
1963
+The `build` folder with static assets is the only output produced by Create React App.
1964
+
1965
+However this is not quite enough if you use client-side routing. Read the next section if you want to support URLs like `/todos/42` in your single-page app.
1966
+
1967
+### Serving Apps with Client-Side Routing
1968
+
1969
+If you use routers that use the HTML5 [`pushState` history API](https://developer.mozilla.org/en-US/docs/Web/API/History_API#Adding_and_modifying_history_entries) under the hood (for example, [React Router](https://github.com/ReactTraining/react-router) with `browserHistory`), many static file servers will fail. For example, if you used React Router with a route for `/todos/42`, the development server will respond to `localhost:3000/todos/42` properly, but an Express serving a production build as above will not.
1970
+
1971
+This is because when there is a fresh page load for a `/todos/42`, the server looks for the file `build/todos/42` and does not find it. The server needs to be configured to respond to a request to `/todos/42` by serving `index.html`. For example, we can amend our Express example above to serve `index.html` for any unknown paths:
1972
+
1973
+```diff
1974
+ app.use(express.static(path.join(__dirname, 'build')));
1975
+
1976
+-app.get('/', function (req, res) {
1977
++app.get('/*', function (req, res) {
1978
+   res.sendFile(path.join(__dirname, 'build', 'index.html'));
1979
+ });
1980
+```
1981
+
1982
+If you’re using [Apache HTTP Server](https://httpd.apache.org/), you need to create a `.htaccess` file in the `public` folder that looks like this:
1983
+
1984
+```
1985
+    Options -MultiViews
1986
+    RewriteEngine On
1987
+    RewriteCond %{REQUEST_FILENAME} !-f
1988
+    RewriteRule ^ index.html [QSA,L]
1989
+```
1990
+
1991
+It will get copied to the `build` folder when you run `npm run build`. 
1992
+
1993
+If you’re using [Apache Tomcat](http://tomcat.apache.org/), you need to follow [this Stack Overflow answer](https://stackoverflow.com/a/41249464/4878474).
1994
+
1995
+Now requests to `/todos/42` will be handled correctly both in development and in production.
1996
+
1997
+On a production build, and in a browser that supports [service workers](https://developers.google.com/web/fundamentals/getting-started/primers/service-workers),
1998
+the service worker will automatically handle all navigation requests, like for
1999
+`/todos/42`, by serving the cached copy of your `index.html`. This
2000
+service worker navigation routing can be configured or disabled by
2001
+[`eject`ing](#npm-run-eject) and then modifying the
2002
+[`navigateFallback`](https://github.com/GoogleChrome/sw-precache#navigatefallback-string)
2003
+and [`navigateFallbackWhitelist`](https://github.com/GoogleChrome/sw-precache#navigatefallbackwhitelist-arrayregexp)
2004
+options of the `SWPreachePlugin` [configuration](../config/webpack.config.prod.js).
2005
+
2006
+When users install your app to the homescreen of their device the default configuration will make a shortcut to `/index.html`. This may not work for client-side routers which expect the app to be served from `/`. Edit the web app manifest at [`public/manifest.json`](public/manifest.json) and change `start_url` to match the required URL scheme, for example:
2007
+
2008
+```js
2009
+  "start_url": ".",
2010
+```
2011
+
2012
+### Building for Relative Paths
2013
+
2014
+By default, Create React App produces a build assuming your app is hosted at the server root.<br>
2015
+To override this, specify the `homepage` in your `package.json`, for example:
2016
+
2017
+```js
2018
+  "homepage": "http://mywebsite.com/relativepath",
2019
+```
2020
+
2021
+This will let Create React App correctly infer the root path to use in the generated HTML file.
2022
+
2023
+**Note**: If you are using `react-router@^4`, you can root `<Link>`s using the `basename` prop on any `<Router>`.<br>
2024
+More information [here](https://reacttraining.com/react-router/web/api/BrowserRouter/basename-string).<br>
2025
+<br>
2026
+For example:
2027
+```js
2028
+<BrowserRouter basename="/calendar"/>
2029
+<Link to="/today"/> // renders <a href="/calendar/today">
2030
+```
2031
+
2032
+#### Serving the Same Build from Different Paths
2033
+
2034
+>Note: this feature is available with `react-scripts@0.9.0` and higher.
2035
+
2036
+If you are not using the HTML5 `pushState` history API or not using client-side routing at all, it is unnecessary to specify the URL from which your app will be served. Instead, you can put this in your `package.json`:
2037
+
2038
+```js
2039
+  "homepage": ".",
2040
+```
2041
+
2042
+This will make sure that all the asset paths are relative to `index.html`. You will then be able to move your app from `http://mywebsite.com` to `http://mywebsite.com/relativepath` or even `http://mywebsite.com/relative/path` without having to rebuild it.
2043
+
2044
+### [Azure](https://azure.microsoft.com/)
2045
+
2046
+See [this](https://medium.com/@to_pe/deploying-create-react-app-on-microsoft-azure-c0f6686a4321) blog post on how to deploy your React app to Microsoft Azure.
2047
+
2048
+See [this](https://medium.com/@strid/host-create-react-app-on-azure-986bc40d5bf2#.pycfnafbg) blog post or [this](https://github.com/ulrikaugustsson/azure-appservice-static) repo for a way to use automatic deployment to Azure App Service.
2049
+
2050
+### [Firebase](https://firebase.google.com/)
2051
+
2052
+Install the Firebase CLI if you haven’t already by running `npm install -g firebase-tools`. Sign up for a [Firebase account](https://console.firebase.google.com/) and create a new project. Run `firebase login` and login with your previous created Firebase account.
2053
+
2054
+Then run the `firebase init` command from your project’s root. You need to choose the **Hosting: Configure and deploy Firebase Hosting sites** and choose the Firebase project you created in the previous step. You will need to agree with `database.rules.json` being created, choose `build` as the public directory, and also agree to **Configure as a single-page app** by replying with `y`.
2055
+
2056
+```sh
2057
+    === Project Setup
2058
+
2059
+    First, let's associate this project directory with a Firebase project.
2060
+    You can create multiple project aliases by running firebase use --add,
2061
+    but for now we'll just set up a default project.
2062
+
2063
+    ? What Firebase project do you want to associate as default? Example app (example-app-fd690)
2064
+
2065
+    === Database Setup
2066
+
2067
+    Firebase Realtime Database Rules allow you to define how your data should be
2068
+    structured and when your data can be read from and written to.
2069
+
2070
+    ? What file should be used for Database Rules? database.rules.json
2071
+    ✔  Database Rules for example-app-fd690 have been downloaded to database.rules.json.
2072
+    Future modifications to database.rules.json will update Database Rules when you run
2073
+    firebase deploy.
2074
+
2075
+    === Hosting Setup
2076
+
2077
+    Your public directory is the folder (relative to your project directory) that
2078
+    will contain Hosting assets to uploaded with firebase deploy. If you
2079
+    have a build process for your assets, use your build's output directory.
2080
+
2081
+    ? What do you want to use as your public directory? build
2082
+    ? Configure as a single-page app (rewrite all urls to /index.html)? Yes
2083
+    ✔  Wrote build/index.html
2084
+
2085
+    i  Writing configuration info to firebase.json...
2086
+    i  Writing project information to .firebaserc...
2087
+
2088
+    ✔  Firebase initialization complete!
2089
+```
2090
+
2091
+IMPORTANT: you need to set proper HTTP caching headers for `service-worker.js` file in `firebase.json` file or you will not be able to see changes after first deployment ([issue #2440](https://github.com/facebookincubator/create-react-app/issues/2440)). It should be added inside `"hosting"` key like next:
2092
+
2093
+```
2094
+{
2095
+  "hosting": {
2096
+    ...
2097
+    "headers": [
2098
+      {"source": "/service-worker.js", "headers": [{"key": "Cache-Control", "value": "no-cache"}]}
2099
+    ]
2100
+    ...
2101
+```
2102
+
2103
+Now, after you create a production build with `npm run build`, you can deploy it by running `firebase deploy`.
2104
+
2105
+```sh
2106
+    === Deploying to 'example-app-fd690'...
2107
+
2108
+    i  deploying database, hosting
2109
+    ✔  database: rules ready to deploy.
2110
+    i  hosting: preparing build directory for upload...
2111
+    Uploading: [==============================          ] 75%✔  hosting: build folder uploaded successfully
2112
+    ✔  hosting: 8 files uploaded successfully
2113
+    i  starting release process (may take several minutes)...
2114
+
2115
+    ✔  Deploy complete!
2116
+
2117
+    Project Console: https://console.firebase.google.com/project/example-app-fd690/overview
2118
+    Hosting URL: https://example-app-fd690.firebaseapp.com
2119
+```
2120
+
2121
+For more information see [Add Firebase to your JavaScript Project](https://firebase.google.com/docs/web/setup).
2122
+
2123
+### [GitHub Pages](https://pages.github.com/)
2124
+
2125
+>Note: this feature is available with `react-scripts@0.2.0` and higher.
2126
+
2127
+#### Step 1: Add `homepage` to `package.json`
2128
+
2129
+**The step below is important!**<br>
2130
+**If you skip it, your app will not deploy correctly.**
2131
+
2132
+Open your `package.json` and add a `homepage` field for your project:
2133
+
2134
+```json
2135
+  "homepage": "https://myusername.github.io/my-app",
2136
+```
2137
+
2138
+or for a GitHub user page:
2139
+
2140
+```json
2141
+  "homepage": "https://myusername.github.io",
2142
+```
2143
+
2144
+Create React App uses the `homepage` field to determine the root URL in the built HTML file.
2145
+
2146
+#### Step 2: Install `gh-pages` and add `deploy` to `scripts` in `package.json`
2147
+
2148
+Now, whenever you run `npm run build`, you will see a cheat sheet with instructions on how to deploy to GitHub Pages.
2149
+
2150
+To publish it at [https://myusername.github.io/my-app](https://myusername.github.io/my-app), run:
2151
+
2152
+```sh
2153
+npm install --save gh-pages
2154
+```
2155
+
2156
+Alternatively you may use `yarn`:
2157
+
2158
+```sh
2159
+yarn add gh-pages
2160
+```
2161
+
2162
+Add the following scripts in your `package.json`:
2163
+
2164
+```diff
2165
+  "scripts": {
2166
++   "predeploy": "npm run build",
2167
++   "deploy": "gh-pages -d build",
2168
+    "start": "react-scripts start",
2169
+    "build": "react-scripts build",
2170
+```
2171
+
2172
+The `predeploy` script will run automatically before `deploy` is run.
2173
+
2174
+If you are deploying to a GitHub user page instead of a project page you'll need to make two
2175
+additional modifications:
2176
+
2177
+1. First, change your repository's source branch to be any branch other than **master**.
2178
+1. Additionally, tweak your `package.json` scripts to push deployments to **master**:
2179
+```diff
2180
+  "scripts": {
2181
+    "predeploy": "npm run build",
2182
+-   "deploy": "gh-pages -d build",
2183
++   "deploy": "gh-pages -b master -d build",
2184
+```
2185
+
2186
+#### Step 3: Deploy the site by running `npm run deploy`
2187
+
2188
+Then run:
2189
+
2190
+```sh
2191
+npm run deploy
2192
+```
2193
+
2194
+#### Step 4: Ensure your project’s settings use `gh-pages`
2195
+
2196
+Finally, make sure **GitHub Pages** option in your GitHub project settings is set to use the `gh-pages` branch:
2197
+
2198
+<img src="http://i.imgur.com/HUjEr9l.png" width="500" alt="gh-pages branch setting">
2199
+
2200
+#### Step 5: Optionally, configure the domain
2201
+
2202
+You can configure a custom domain with GitHub Pages by adding a `CNAME` file to the `public/` folder.
2203
+
2204
+#### Notes on client-side routing
2205
+
2206
+GitHub Pages doesn’t support routers that use the HTML5 `pushState` history API under the hood (for example, React Router using `browserHistory`). This is because when there is a fresh page load for a url like `http://user.github.io/todomvc/todos/42`, where `/todos/42` is a frontend route, the GitHub Pages server returns 404 because it knows nothing of `/todos/42`. If you want to add a router to a project hosted on GitHub Pages, here are a couple of solutions:
2207
+
2208
+* You could switch from using HTML5 history API to routing with hashes. If you use React Router, you can switch to `hashHistory` for this effect, but the URL will be longer and more verbose (for example, `http://user.github.io/todomvc/#/todos/42?_k=yknaj`). [Read more](https://reacttraining.com/react-router/web/api/Router) about different history implementations in React Router.
2209
+* Alternatively, you can use a trick to teach GitHub Pages to handle 404 by redirecting to your `index.html` page with a special redirect parameter. You would need to add a `404.html` file with the redirection code to the `build` folder before deploying your project, and you’ll need to add code handling the redirect parameter to `index.html`. You can find a detailed explanation of this technique [in this guide](https://github.com/rafrex/spa-github-pages).
2210
+
2211
+### [Heroku](https://www.heroku.com/)
2212
+
2213
+Use the [Heroku Buildpack for Create React App](https://github.com/mars/create-react-app-buildpack).<br>
2214
+You can find instructions in [Deploying React with Zero Configuration](https://blog.heroku.com/deploying-react-with-zero-configuration).
2215
+
2216
+#### Resolving Heroku Deployment Errors
2217
+
2218
+Sometimes `npm run build` works locally but fails during deploy via Heroku. Following are the most common cases.
2219
+
2220
+##### "Module not found: Error: Cannot resolve 'file' or 'directory'"
2221
+
2222
+If you get something like this:
2223
+
2224
+```
2225
+remote: Failed to create a production build. Reason:
2226
+remote: Module not found: Error: Cannot resolve 'file' or 'directory'
2227
+MyDirectory in /tmp/build_1234/src
2228
+```
2229
+
2230
+It means you need to ensure that the lettercase of the file or directory you `import` matches the one you see on your filesystem or on GitHub.
2231
+
2232
+This is important because Linux (the operating system used by Heroku) is case sensitive. So `MyDirectory` and `mydirectory` are two distinct directories and thus, even though the project builds locally, the difference in case breaks the `import` statements on Heroku remotes.
2233
+
2234
+##### "Could not find a required file."
2235
+
2236
+If you exclude or ignore necessary files from the package you will see a error similar this one:
2237
+
2238
+```
2239
+remote: Could not find a required file.
2240
+remote:   Name: `index.html`
2241
+remote:   Searched in: /tmp/build_a2875fc163b209225122d68916f1d4df/public
2242
+remote:
2243
+remote: npm ERR! Linux 3.13.0-105-generic
2244
+remote: npm ERR! argv "/tmp/build_a2875fc163b209225122d68916f1d4df/.heroku/node/bin/node" "/tmp/build_a2875fc163b209225122d68916f1d4df/.heroku/node/bin/npm" "run" "build"
2245
+```
2246
+
2247
+In this case, ensure that the file is there with the proper lettercase and that’s not ignored on your local `.gitignore` or `~/.gitignore_global`.
2248
+
2249
+### [Netlify](https://www.netlify.com/)
2250
+
2251
+**To do a manual deploy to Netlify’s CDN:**
2252
+
2253
+```sh
2254
+npm install netlify-cli -g
2255
+netlify deploy
2256
+```
2257
+
2258
+Choose `build` as the path to deploy.
2259
+
2260
+**To setup continuous delivery:**
2261
+
2262
+With this setup Netlify will build and deploy when you push to git or open a pull request:
2263
+
2264
+1. [Start a new netlify project](https://app.netlify.com/signup)
2265
+2. Pick your Git hosting service and select your repository
2266
+3. Set `yarn build` as the build command and `build` as the publish directory
2267
+4. Click `Deploy site`
2268
+
2269
+**Support for client-side routing:**
2270
+
2271
+To support `pushState`, make sure to create a `public/_redirects` file with the following rewrite rules:
2272
+
2273
+```
2274
+/*  /index.html  200
2275
+```
2276
+
2277
+When you build the project, Create React App will place the `public` folder contents into the build output.
2278
+
2279
+### [Now](https://zeit.co/now)
2280
+
2281
+Now offers a zero-configuration single-command deployment. You can use `now` to deploy your app for free.
2282
+
2283
+1. Install the `now` command-line tool either via the recommended [desktop tool](https://zeit.co/download) or via node with `npm install -g now`.
2284
+
2285
+2. Build your app by running `npm run build`.
2286
+
2287
+3. Move into the build directory by running `cd build`.
2288
+
2289
+4. Run `now --name your-project-name` from within the build directory. You will see a **now.sh** URL in your output like this:
2290
+
2291
+    ```
2292
+    > Ready! https://your-project-name-tpspyhtdtk.now.sh (copied to clipboard)
2293
+    ```
2294
+
2295
+    Paste that URL into your browser when the build is complete, and you will see your deployed app.
2296
+
2297
+Details are available in [this article.](https://zeit.co/blog/unlimited-static)
2298
+
2299
+### [S3](https://aws.amazon.com/s3) and [CloudFront](https://aws.amazon.com/cloudfront/)
2300
+
2301
+See this [blog post](https://medium.com/@omgwtfmarc/deploying-create-react-app-to-s3-or-cloudfront-48dae4ce0af) on how to deploy your React app to Amazon Web Services S3 and CloudFront.
2302
+
2303
+### [Surge](https://surge.sh/)
2304
+
2305
+Install the Surge CLI if you haven’t already by running `npm install -g surge`. Run the `surge` command and log in you or create a new account.
2306
+
2307
+When asked about the project path, make sure to specify the `build` folder, for example:
2308
+
2309
+```sh
2310
+       project path: /path/to/project/build
2311
+```
2312
+
2313
+Note that in order to support routers that use HTML5 `pushState` API, you may want to rename the `index.html` in your build folder to `200.html` before deploying to Surge. This [ensures that every URL falls back to that file](https://surge.sh/help/adding-a-200-page-for-client-side-routing).
2314
+
2315
+## Advanced Configuration
2316
+
2317
+You can adjust various development and production settings by setting environment variables in your shell or with [.env](#adding-development-environment-variables-in-env).
2318
+
2319
+Variable | Development | Production | Usage
2320
+:--- | :---: | :---: | :---
2321
+BROWSER | :white_check_mark: | :x: | By default, Create React App will open the default system browser, favoring Chrome on macOS. Specify a [browser](https://github.com/sindresorhus/opn#app) to override this behavior, or set it to `none` to disable it completely. If you need to customize the way the browser is launched, you can specify a node script instead. Any arguments passed to `npm start` will also be passed to this script, and the url where your app is served will be the last argument. Your script's file name must have the `.js` extension.
2322
+HOST | :white_check_mark: | :x: | By default, the development web server binds to `localhost`. You may use this variable to specify a different host.
2323
+PORT | :white_check_mark: | :x: | By default, the development web server will attempt to listen on port 3000 or prompt you to attempt the next available port. You may use this variable to specify a different port.
2324
+HTTPS | :white_check_mark: | :x: | When set to `true`, Create React App will run the development server in `https` mode.
2325
+PUBLIC_URL | :x: | :white_check_mark: | Create React App assumes your application is hosted at the serving web server's root or a subpath as specified in [`package.json` (`homepage`)](#building-for-relative-paths). Normally, Create React App ignores the hostname. You may use this variable to force assets to be referenced verbatim to the url you provide (hostname included). This may be particularly useful when using a CDN to host your application.
2326
+CI | :large_orange_diamond: | :white_check_mark: | When set to `true`, Create React App treats warnings as failures in the build. It also makes the test runner non-watching. Most CIs set this flag by default.
2327
+REACT_EDITOR | :white_check_mark: | :x: | When an app crashes in development, you will see an error overlay with clickable stack trace. When you click on it, Create React App will try to determine the editor you are using based on currently running processes, and open the relevant source file. You can [send a pull request to detect your editor of choice](https://github.com/facebookincubator/create-react-app/issues/2636). Setting this environment variable overrides the automatic detection. If you do it, make sure your systems [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable points to your editor’s bin folder. You can also set it to `none` to disable it completely.
2328
+CHOKIDAR_USEPOLLING | :white_check_mark: | :x: | When set to `true`, the watcher runs in polling mode, as necessary inside a VM. Use this option if `npm start` isn't detecting changes.
2329
+GENERATE_SOURCEMAP | :x: | :white_check_mark: | When set to `false`, source maps are not generated for a production build. This solves OOM issues on some smaller machines.
2330
+NODE_PATH | :white_check_mark: |  :white_check_mark: | Same as [`NODE_PATH` in Node.js](https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders), but only relative folders are allowed. Can be handy for emulating a monorepo setup by setting `NODE_PATH=src`.
2331
+
2332
+## Troubleshooting
2333
+
2334
+### `npm start` doesn’t detect changes
2335
+
2336
+When you save a file while `npm start` is running, the browser should refresh with the updated code.<br>
2337
+If this doesn’t happen, try one of the following workarounds:
2338
+
2339
+* If your project is in a Dropbox folder, try moving it out.
2340
+* If the watcher doesn’t see a file called `index.js` and you’re referencing it by the folder name, you [need to restart the watcher](https://github.com/facebookincubator/create-react-app/issues/1164) due to a Webpack bug.
2341
+* Some editors like Vim and IntelliJ have a “safe write” feature that currently breaks the watcher. You will need to disable it. Follow the instructions in [“Adjusting Your Text Editor”](https://webpack.js.org/guides/development/#adjusting-your-text-editor).
2342
+* If your project path contains parentheses, try moving the project to a path without them. This is caused by a [Webpack watcher bug](https://github.com/webpack/watchpack/issues/42).
2343
+* On Linux and macOS, you might need to [tweak system settings](https://github.com/webpack/docs/wiki/troubleshooting#not-enough-watchers) to allow more watchers.
2344
+* If the project runs inside a virtual machine such as (a Vagrant provisioned) VirtualBox, create an `.env` file in your project directory if it doesn’t exist, and add `CHOKIDAR_USEPOLLING=true` to it. This ensures that the next time you run `npm start`, the watcher uses the polling mode, as necessary inside a VM.
2345
+
2346
+If none of these solutions help please leave a comment [in this thread](https://github.com/facebookincubator/create-react-app/issues/659).
2347
+
2348
+### `npm test` hangs on macOS Sierra
2349
+
2350
+If you run `npm test` and the console gets stuck after printing `react-scripts test --env=jsdom` to the console there might be a problem with your [Watchman](https://facebook.github.io/watchman/) installation as described in [facebookincubator/create-react-app#713](https://github.com/facebookincubator/create-react-app/issues/713).
2351
+
2352
+We recommend deleting `node_modules` in your project and running `npm install` (or `yarn` if you use it) first. If it doesn't help, you can try one of the numerous workarounds mentioned in these issues:
2353
+
2354
+* [facebook/jest#1767](https://github.com/facebook/jest/issues/1767)
2355
+* [facebook/watchman#358](https://github.com/facebook/watchman/issues/358)
2356
+* [ember-cli/ember-cli#6259](https://github.com/ember-cli/ember-cli/issues/6259)
2357
+
2358
+It is reported that installing Watchman 4.7.0 or newer fixes the issue. If you use [Homebrew](http://brew.sh/), you can run these commands to update it:
2359
+
2360
+```
2361
+watchman shutdown-server
2362
+brew update
2363
+brew reinstall watchman
2364
+```
2365
+
2366
+You can find [other installation methods](https://facebook.github.io/watchman/docs/install.html#build-install) on the Watchman documentation page.
2367
+
2368
+If this still doesn’t help, try running `launchctl unload -F ~/Library/LaunchAgents/com.github.facebook.watchman.plist`.
2369
+
2370
+There are also reports that *uninstalling* Watchman fixes the issue. So if nothing else helps, remove it from your system and try again.
2371
+
2372
+### `npm run build` exits too early
2373
+
2374
+It is reported that `npm run build` can fail on machines with limited memory and no swap space, which is common in cloud environments. Even with small projects this command can increase RAM usage in your system by hundreds of megabytes, so if you have less than 1 GB of available memory your build is likely to fail with the following message:
2375
+
2376
+>  The build failed because the process exited too early. This probably means the system ran out of memory or someone called `kill -9` on the process.
2377
+
2378
+If you are completely sure that you didn't terminate the process, consider [adding some swap space](https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04) to the machine you’re building on, or build the project locally.
2379
+
2380
+### `npm run build` fails on Heroku
2381
+
2382
+This may be a problem with case sensitive filenames.
2383
+Please refer to [this section](#resolving-heroku-deployment-errors).
2384
+
2385
+### Moment.js locales are missing
2386
+
2387
+If you use a [Moment.js](https://momentjs.com/), you might notice that only the English locale is available by default. This is because the locale files are large, and you probably only need a subset of [all the locales provided by Moment.js](https://momentjs.com/#multiple-locale-support).
2388
+
2389
+To add a specific Moment.js locale to your bundle, you need to import it explicitly.<br>
2390
+For example:
2391
+
2392
+```js
2393
+import moment from 'moment';
2394
+import 'moment/locale/fr';
2395
+```
2396
+
2397
+If import multiple locales this way, you can later switch between them by calling `moment.locale()` with the locale name:
2398
+
2399
+```js
2400
+import moment from 'moment';
2401
+import 'moment/locale/fr';
2402
+import 'moment/locale/es';
2403
+
2404
+// ...
2405
+
2406
+moment.locale('fr');
2407
+```
2408
+
2409
+This will only work for locales that have been explicitly imported before.
2410
+
2411
+### `npm run build` fails to minify
2412
+
2413
+Some third-party packages don't compile their code to ES5 before publishing to npm. This often causes problems in the ecosystem because neither browsers (except for most modern versions) nor some tools currently support all ES6 features. We recommend to publish code on npm as ES5 at least for a few more years.
2414
+
2415
+<br>
2416
+To resolve this:
2417
+
2418
+1. Open an issue on the dependency's issue tracker and ask that the package be published pre-compiled.
2419
+  * Note: Create React App can consume both CommonJS and ES modules. For Node.js compatibility, it is recommended that the main entry point is CommonJS. However, they can optionally provide an ES module entry point with the `module` field in `package.json`. Note that **even if a library provides an ES Modules version, it should still precompile other ES6 features to ES5 if it intends to support older browsers**.
2420
+
2421
+2. Fork the package and publish a corrected version yourself. 
2422
+
2423
+3. If the dependency is small enough, copy it to your `src/` folder and treat it as application code.
2424
+
2425
+In the future, we might start automatically compiling incompatible third-party modules, but it is not currently supported. This approach would also slow down the production builds.
2426
+
2427
+## Alternatives to Ejecting
2428
+
2429
+[Ejecting](#npm-run-eject) lets you customize anything, but from that point on you have to maintain the configuration and scripts yourself. This can be daunting if you have many similar projects. In such cases instead of ejecting we recommend to *fork* `react-scripts` and any other packages you need. [This article](https://auth0.com/blog/how-to-configure-create-react-app/) dives into how to do it in depth. You can find more discussion in [this issue](https://github.com/facebookincubator/create-react-app/issues/682).
2430
+
2431
+## Something Missing?
2432
+
2433
+If you have ideas for more “How To” recipes that should be on this page, [let us know](https://github.com/facebookincubator/create-react-app/issues) or [contribute some!](https://github.com/facebookincubator/create-react-app/edit/master/packages/react-scripts/template/README.md)
0 2434
new file mode 100644
... ...
@@ -0,0 +1,93 @@
0
+'use strict';
1
+
2
+const fs = require('fs');
3
+const path = require('path');
4
+const paths = require('./paths');
5
+
6
+// Make sure that including paths.js after env.js will read .env variables.
7
+delete require.cache[require.resolve('./paths')];
8
+
9
+const NODE_ENV = process.env.NODE_ENV;
10
+if (!NODE_ENV) {
11
+  throw new Error(
12
+    'The NODE_ENV environment variable is required but was not specified.'
13
+  );
14
+}
15
+
16
+// https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use
17
+var dotenvFiles = [
18
+  `${paths.dotenv}.${NODE_ENV}.local`,
19
+  `${paths.dotenv}.${NODE_ENV}`,
20
+  // Don't include `.env.local` for `test` environment
21
+  // since normally you expect tests to produce the same
22
+  // results for everyone
23
+  NODE_ENV !== 'test' && `${paths.dotenv}.local`,
24
+  paths.dotenv,
25
+].filter(Boolean);
26
+
27
+// Load environment variables from .env* files. Suppress warnings using silent
28
+// if this file is missing. dotenv will never modify any environment variables
29
+// that have already been set.  Variable expansion is supported in .env files.
30
+// https://github.com/motdotla/dotenv
31
+// https://github.com/motdotla/dotenv-expand
32
+dotenvFiles.forEach(dotenvFile => {
33
+  if (fs.existsSync(dotenvFile)) {
34
+    require('dotenv-expand')(
35
+      require('dotenv').config({
36
+        path: dotenvFile,
37
+      })
38
+    );
39
+  }
40
+});
41
+
42
+// We support resolving modules according to `NODE_PATH`.
43
+// This lets you use absolute paths in imports inside large monorepos:
44
+// https://github.com/facebookincubator/create-react-app/issues/253.
45
+// It works similar to `NODE_PATH` in Node itself:
46
+// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders
47
+// Note that unlike in Node, only *relative* paths from `NODE_PATH` are honored.
48
+// Otherwise, we risk importing Node.js core modules into an app instead of Webpack shims.
49
+// https://github.com/facebookincubator/create-react-app/issues/1023#issuecomment-265344421
50
+// We also resolve them to make sure all tools using them work consistently.
51
+const appDirectory = fs.realpathSync(process.cwd());
52
+process.env.NODE_PATH = (process.env.NODE_PATH || '')
53
+  .split(path.delimiter)
54
+  .filter(folder => folder && !path.isAbsolute(folder))
55
+  .map(folder => path.resolve(appDirectory, folder))
56
+  .join(path.delimiter);
57
+
58
+// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
59
+// injected into the application via DefinePlugin in Webpack configuration.
60
+const REACT_APP = /^REACT_APP_/i;
61
+
62
+function getClientEnvironment(publicUrl) {
63
+  const raw = Object.keys(process.env)
64
+    .filter(key => REACT_APP.test(key))
65
+    .reduce(
66
+      (env, key) => {
67
+        env[key] = process.env[key];
68
+        return env;
69
+      },
70
+      {
71
+        // Useful for determining whether we’re running in production mode.
72
+        // Most importantly, it switches React into the correct mode.
73
+        NODE_ENV: process.env.NODE_ENV || 'development',
74
+        // Useful for resolving the correct path to static assets in `public`.
75
+        // For example, <img src={process.env.PUBLIC_URL + '/img/logo.png'} />.
76
+        // This should only be used as an escape hatch. Normally you would put
77
+        // images into the `src` and `import` them in code to get their paths.
78
+        PUBLIC_URL: publicUrl,
79
+      }
80
+    );
81
+  // Stringify all values so we can feed into Webpack DefinePlugin
82
+  const stringified = {
83
+    'process.env': Object.keys(raw).reduce((env, key) => {
84
+      env[key] = JSON.stringify(raw[key]);
85
+      return env;
86
+    }, {}),
87
+  };
88
+
89
+  return { raw, stringified };
90
+}
91
+
92
+module.exports = getClientEnvironment;
0 93
new file mode 100644
... ...
@@ -0,0 +1,14 @@
0
+'use strict';
1
+
2
+// This is a custom Jest transformer turning style imports into empty objects.
3
+// http://facebook.github.io/jest/docs/en/webpack.html
4
+
5
+module.exports = {
6
+  process() {
7
+    return 'module.exports = {};';
8
+  },
9
+  getCacheKey() {
10
+    // The output is always the same.
11
+    return 'cssTransform';
12
+  },
13
+};
0 14
new file mode 100644
... ...
@@ -0,0 +1,12 @@
0
+'use strict';
1
+
2
+const path = require('path');
3
+
4
+// This is a custom Jest transformer turning file imports into filenames.
5
+// http://facebook.github.io/jest/docs/en/webpack.html
6
+
7
+module.exports = {
8
+  process(src, filename) {
9
+    return `module.exports = ${JSON.stringify(path.basename(filename))};`;
10
+  },
11
+};
0 12
new file mode 100644
... ...
@@ -0,0 +1,55 @@
0
+'use strict';
1
+
2
+const path = require('path');
3
+const fs = require('fs');
4
+const url = require('url');
5
+
6
+// Make sure any symlinks in the project folder are resolved:
7
+// https://github.com/facebookincubator/create-react-app/issues/637
8
+const appDirectory = fs.realpathSync(process.cwd());
9
+const resolveApp = relativePath => path.resolve(appDirectory, relativePath);
10
+
11
+const envPublicUrl = process.env.PUBLIC_URL;
12
+
13
+function ensureSlash(path, needsSlash) {
14
+  const hasSlash = path.endsWith('/');
15
+  if (hasSlash && !needsSlash) {
16
+    return path.substr(path, path.length - 1);
17
+  } else if (!hasSlash && needsSlash) {
18
+    return `${path}/`;
19
+  } else {
20
+    return path;
21
+  }
22
+}
23
+
24
+const getPublicUrl = appPackageJson =>
25
+  envPublicUrl || require(appPackageJson).homepage;
26
+
27
+// We use `PUBLIC_URL` environment variable or "homepage" field to infer
28
+// "public path" at which the app is served.
29
+// Webpack needs to know it to put the right <script> hrefs into HTML even in
30
+// single-page apps that may serve index.html for nested URLs like /todos/42.
31
+// We can't use a relative path in HTML because we don't want to load something
32
+// like /todos/42/static/js/bundle.7289d.js. We have to know the root.
33
+function getServedPath(appPackageJson) {
34
+  const publicUrl = getPublicUrl(appPackageJson);
35
+  const servedUrl =
36
+    envPublicUrl || (publicUrl ? url.parse(publicUrl).pathname : '/');
37
+  return ensureSlash(servedUrl, true);
38
+}
39
+
40
+// config after eject: we're in ./config/
41
+module.exports = {
42
+  dotenv: resolveApp('.env'),
43
+  appBuild: resolveApp('build'),
44
+  appPublic: resolveApp('public'),
45
+  appHtml: resolveApp('public/index.html'),
46
+  appIndexJs: resolveApp('src/index.js'),
47
+  appPackageJson: resolveApp('package.json'),
48
+  appSrc: resolveApp('src'),
49
+  yarnLockFile: resolveApp('yarn.lock'),
50
+  testsSetup: resolveApp('src/setupTests.js'),
51
+  appNodeModules: resolveApp('node_modules'),
52
+  publicUrl: getPublicUrl(resolveApp('package.json')),
53
+  servedPath: getServedPath(resolveApp('package.json')),
54
+};
0 55
new file mode 100644
... ...
@@ -0,0 +1,22 @@
0
+'use strict';
1
+
2
+if (typeof Promise === 'undefined') {
3
+  // Rejection tracking prevents a common issue where React gets into an
4
+  // inconsistent state due to an error, but it gets swallowed by a Promise,
5
+  // and the user has no idea what causes React's erratic future behavior.
6
+  require('promise/lib/rejection-tracking').enable();
7
+  window.Promise = require('promise/lib/es6-extensions.js');
8
+}
9
+
10
+// fetch() polyfill for making API calls.
11
+require('whatwg-fetch');
12
+
13
+// Object.assign() is commonly used with React.
14
+// It will use the native implementation if it's present and isn't buggy.
15
+Object.assign = require('object-assign');
16
+
17
+// In tests, polyfill requestAnimationFrame since jsdom doesn't provide it yet.
18
+// We don't polyfill it in the browser--this is user's responsibility.
19
+if (process.env.NODE_ENV === 'test') {
20
+  require('raf').polyfill(global);
21
+}
0 22
new file mode 100644
... ...
@@ -0,0 +1,262 @@
0
+'use strict';
1
+
2
+const autoprefixer = require('autoprefixer');
3
+const path = require('path');
4
+const webpack = require('webpack');
5
+const HtmlWebpackPlugin = require('html-webpack-plugin');
6
+const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
7
+const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
8
+const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
9
+const eslintFormatter = require('react-dev-utils/eslintFormatter');
10
+const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
11
+const getClientEnvironment = require('./env');
12
+const paths = require('./paths');
13
+
14
+// Webpack uses `publicPath` to determine where the app is being served from.
15
+// In development, we always serve from the root. This makes config easier.
16
+const publicPath = '/';
17
+// `publicUrl` is just like `publicPath`, but we will provide it to our app
18
+// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
19
+// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz.
20
+const publicUrl = '';
21
+// Get environment variables to inject into our app.
22
+const env = getClientEnvironment(publicUrl);
23
+
24
+// This is the development configuration.
25
+// It is focused on developer experience and fast rebuilds.
26
+// The production configuration is different and lives in a separate file.
27
+module.exports = {
28
+  // You may want 'eval' instead if you prefer to see the compiled output in DevTools.
29
+  // See the discussion in https://github.com/facebookincubator/create-react-app/issues/343.
30
+  devtool: 'cheap-module-source-map',
31
+  // These are the "entry points" to our application.
32
+  // This means they will be the "root" imports that are included in JS bundle.
33
+  // The first two entry points enable "hot" CSS and auto-refreshes for JS.
34
+  entry: [
35
+    // We ship a few polyfills by default:
36
+    require.resolve('./polyfills'),
37
+    // Include an alternative client for WebpackDevServer. A client's job is to
38
+    // connect to WebpackDevServer by a socket and get notified about changes.
39
+    // When you save a file, the client will either apply hot updates (in case
40
+    // of CSS changes), or refresh the page (in case of JS changes). When you
41
+    // make a syntax error, this client will display a syntax error overlay.
42
+    // Note: instead of the default WebpackDevServer client, we use a custom one
43
+    // to bring better experience for Create React App users. You can replace
44
+    // the line below with these two lines if you prefer the stock client:
45
+    // require.resolve('webpack-dev-server/client') + '?/',
46
+    // require.resolve('webpack/hot/dev-server'),
47
+    require.resolve('react-dev-utils/webpackHotDevClient'),
48
+    // Finally, this is your app's code:
49
+    paths.appIndexJs,
50
+    // We include the app code last so that if there is a runtime error during
51
+    // initialization, it doesn't blow up the WebpackDevServer client, and
52
+    // changing JS code would still trigger a refresh.
53
+  ],
54
+  output: {
55
+    // Add /* filename */ comments to generated require()s in the output.
56
+    pathinfo: true,
57
+    // This does not produce a real file. It's just the virtual path that is
58
+    // served by WebpackDevServer in development. This is the JS bundle
59
+    // containing code from all our entry points, and the Webpack runtime.
60
+    filename: 'static/js/bundle.js',
61
+    // There are also additional JS chunk files if you use code splitting.
62
+    chunkFilename: 'static/js/[name].chunk.js',
63
+    // This is the URL that app is served from. We use "/" in development.
64
+    publicPath: publicPath,
65
+    // Point sourcemap entries to original disk location (format as URL on Windows)
66
+    devtoolModuleFilenameTemplate: info =>
67
+      path.resolve(info.absoluteResourcePath).replace(/\\/g, '/'),
68
+  },
69
+  resolve: {
70
+    // This allows you to set a fallback for where Webpack should look for modules.
71
+    // We placed these paths second because we want `node_modules` to "win"
72
+    // if there are any conflicts. This matches Node resolution mechanism.
73
+    // https://github.com/facebookincubator/create-react-app/issues/253
74
+    modules: ['node_modules', paths.appNodeModules].concat(
75
+      // It is guaranteed to exist because we tweak it in `env.js`
76
+      process.env.NODE_PATH.split(path.delimiter).filter(Boolean)
77
+    ),
78
+    // These are the reasonable defaults supported by the Node ecosystem.
79
+    // We also include JSX as a common component filename extension to support
80
+    // some tools, although we do not recommend using it, see:
81
+    // https://github.com/facebookincubator/create-react-app/issues/290
82
+    // `web` extension prefixes have been added for better support
83
+    // for React Native Web.
84
+    extensions: ['.web.js', '.mjs', '.js', '.json', '.web.jsx', '.jsx'],
85
+    alias: {
86
+      
87
+      // Support React Native Web
88
+      // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
89
+      'react-native': 'react-native-web',
90
+    },
91
+    plugins: [
92
+      // Prevents users from importing files from outside of src/ (or node_modules/).
93
+      // This often causes confusion because we only process files within src/ with babel.
94
+      // To fix this, we prevent you from importing files out of src/ -- if you'd like to,
95
+      // please link the files into your node_modules/ and let module-resolution kick in.
96
+      // Make sure your source files are compiled, as they will not be processed in any way.
97
+      new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
98
+    ],
99
+  },
100
+  module: {
101
+    strictExportPresence: true,
102
+    rules: [
103
+      // TODO: Disable require.ensure as it's not a standard language feature.
104
+      // We are waiting for https://github.com/facebookincubator/create-react-app/issues/2176.
105
+      // { parser: { requireEnsure: false } },
106
+
107
+      // First, run the linter.
108
+      // It's important to do this before Babel processes the JS.
109
+      {
110
+        test: /\.(js|jsx|mjs)$/,
111
+        enforce: 'pre',
112
+        use: [
113
+          {
114
+            options: {
115
+              formatter: eslintFormatter,
116
+              eslintPath: require.resolve('eslint'),
117
+              
118
+            },
119
+            loader: require.resolve('eslint-loader'),
120
+          },
121
+        ],
122
+        include: paths.appSrc,
123
+      },
124
+      {
125
+        // "oneOf" will traverse all following loaders until one will
126
+        // match the requirements. When no loader matches it will fall
127
+        // back to the "file" loader at the end of the loader list.
128
+        oneOf: [
129
+          // "url" loader works like "file" loader except that it embeds assets
130
+          // smaller than specified limit in bytes as data URLs to avoid requests.
131
+          // A missing `test` is equivalent to a match.
132
+          {
133
+            test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
134
+            loader: require.resolve('url-loader'),
135
+            options: {
136
+              limit: 10000,
137
+              name: 'static/media/[name].[hash:8].[ext]',
138
+            },
139
+          },
140
+          // Process JS with Babel.
141
+          {
142
+            test: /\.(js|jsx|mjs)$/,
143
+            include: paths.appSrc,
144
+            loader: require.resolve('babel-loader'),
145
+            options: {
146
+              
147
+              // This is a feature of `babel-loader` for webpack (not Babel itself).
148
+              // It enables caching results in ./node_modules/.cache/babel-loader/
149
+              // directory for faster rebuilds.
150
+              cacheDirectory: true,
151
+            },
152
+          },
153
+          // "postcss" loader applies autoprefixer to our CSS.
154
+          // "css" loader resolves paths in CSS and adds assets as dependencies.
155
+          // "style" loader turns CSS into JS modules that inject <style> tags.
156
+          // In production, we use a plugin to extract that CSS to a file, but
157
+          // in development "style" loader enables hot editing of CSS.
158
+          {
159
+            test: /\.css$/,
160
+            use: [
161
+              require.resolve('style-loader'),
162
+              {
163
+                loader: require.resolve('css-loader'),
164
+                options: {
165
+                  importLoaders: 1,
166
+                },
167
+              },
168
+              {
169
+                loader: require.resolve('postcss-loader'),
170
+                options: {
171
+                  // Necessary for external CSS imports to work
172
+                  // https://github.com/facebookincubator/create-react-app/issues/2677
173
+                  ident: 'postcss',
174
+                  plugins: () => [
175
+                    require('postcss-flexbugs-fixes'),
176
+                    autoprefixer({
177
+                      browsers: [
178
+                        '>1%',
179
+                        'last 4 versions',
180
+                        'Firefox ESR',
181
+                        'not ie < 9', // React doesn't support IE8 anyway
182
+                      ],
183
+                      flexbox: 'no-2009',
184
+                    }),
185
+                  ],
186
+                },
187
+              },
188
+            ],
189
+          },
190
+          // "file" loader makes sure those assets get served by WebpackDevServer.
191
+          // When you `import` an asset, you get its (virtual) filename.
192
+          // In production, they would get copied to the `build` folder.
193
+          // This loader doesn't use a "test" so it will catch all modules
194
+          // that fall through the other loaders.
195
+          {
196
+            // Exclude `js` files to keep "css" loader working as it injects
197
+            // its runtime that would otherwise processed through "file" loader.
198
+            // Also exclude `html` and `json` extensions so they get processed
199
+            // by webpacks internal loaders.
200
+            exclude: [/\.(js|jsx|mjs)$/, /\.html$/, /\.json$/],
201
+            loader: require.resolve('file-loader'),
202
+            options: {
203
+              name: 'static/media/[name].[hash:8].[ext]',
204
+            },
205
+          },
206
+        ],
207
+      },
208
+      // ** STOP ** Are you adding a new loader?
209
+      // Make sure to add the new loader(s) before the "file" loader.
210
+    ],
211
+  },
212
+  plugins: [
213
+    // Makes some environment variables available in index.html.
214
+    // The public URL is available as %PUBLIC_URL% in index.html, e.g.:
215
+    // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
216
+    // In development, this will be an empty string.
217
+    new InterpolateHtmlPlugin(env.raw),
218
+    // Generates an `index.html` file with the <script> injected.
219
+    new HtmlWebpackPlugin({
220
+      inject: true,
221
+      template: paths.appHtml,
222
+    }),
223
+    // Add module names to factory functions so they appear in browser profiler.
224
+    new webpack.NamedModulesPlugin(),
225
+    // Makes some environment variables available to the JS code, for example:
226
+    // if (process.env.NODE_ENV === 'development') { ... }. See `./env.js`.
227
+    new webpack.DefinePlugin(env.stringified),
228
+    // This is necessary to emit hot updates (currently CSS only):
229
+    new webpack.HotModuleReplacementPlugin(),
230
+    // Watcher doesn't work well if you mistype casing in a path so we use
231
+    // a plugin that prints an error when you attempt to do this.
232
+    // See https://github.com/facebookincubator/create-react-app/issues/240
233
+    new CaseSensitivePathsPlugin(),
234
+    // If you require a missing module and then `npm install` it, you still have
235
+    // to restart the development server for Webpack to discover it. This plugin
236
+    // makes the discovery automatic so you don't have to restart.
237
+    // See https://github.com/facebookincubator/create-react-app/issues/186
238
+    new WatchMissingNodeModulesPlugin(paths.appNodeModules),
239
+    // Moment.js is an extremely popular library that bundles large locale files
240
+    // by default due to how Webpack interprets its code. This is a practical
241
+    // solution that requires the user to opt into importing specific locales.
242
+    // https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
243
+    // You can remove this if you don't use Moment.js:
244
+    new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
245
+  ],
246
+  // Some libraries import Node modules but don't use them in the browser.
247
+  // Tell Webpack to provide empty mocks for them so importing them works.
248
+  node: {
249
+    dgram: 'empty',
250
+    fs: 'empty',
251
+    net: 'empty',
252
+    tls: 'empty',
253
+    child_process: 'empty',
254
+  },
255
+  // Turn off performance hints during development because we don't do any
256
+  // splitting or minification in interest of speed. These warnings become
257
+  // cumbersome.
258
+  performance: {
259
+    hints: false,
260
+  },
261
+};
0 262
new file mode 100644
... ...
@@ -0,0 +1,342 @@
0
+'use strict';
1
+
2
+const autoprefixer = require('autoprefixer');
3
+const path = require('path');
4
+const webpack = require('webpack');
5
+const HtmlWebpackPlugin = require('html-webpack-plugin');
6
+const ExtractTextPlugin = require('extract-text-webpack-plugin');
7
+const ManifestPlugin = require('webpack-manifest-plugin');
8
+const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
9
+const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin');
10
+const eslintFormatter = require('react-dev-utils/eslintFormatter');
11
+const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
12
+const paths = require('./paths');
13
+const getClientEnvironment = require('./env');
14
+
15
+// Webpack uses `publicPath` to determine where the app is being served from.
16
+// It requires a trailing slash, or the file assets will get an incorrect path.
17
+const publicPath = paths.servedPath;
18
+// Some apps do not use client-side routing with pushState.
19
+// For these, "homepage" can be set to "." to enable relative asset paths.
20
+const shouldUseRelativeAssetPaths = publicPath === './';
21
+// Source maps are resource heavy and can cause out of memory issue for large source files.
22
+const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
23
+// `publicUrl` is just like `publicPath`, but we will provide it to our app
24
+// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
25
+// Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz.
26
+const publicUrl = publicPath.slice(0, -1);
27
+// Get environment variables to inject into our app.
28
+const env = getClientEnvironment(publicUrl);
29
+
30
+// Assert this just to be safe.
31
+// Development builds of React are slow and not intended for production.
32
+if (env.stringified['process.env'].NODE_ENV !== '"production"') {
33
+  throw new Error('Production builds must have NODE_ENV=production.');
34
+}
35
+
36
+// Note: defined here because it will be used more than once.
37
+const cssFilename = 'static/css/[name].[contenthash:8].css';
38
+
39
+// ExtractTextPlugin expects the build output to be flat.
40
+// (See https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/27)
41
+// However, our output is structured with css, js and media folders.
42
+// To have this structure working with relative paths, we have to use custom options.
43
+const extractTextPluginOptions = shouldUseRelativeAssetPaths
44
+  ? // Making sure that the publicPath goes back to to build folder.
45
+    { publicPath: Array(cssFilename.split('/').length).join('../') }
46
+  : {};
47
+
48
+// This is the production configuration.
49
+// It compiles slowly and is focused on producing a fast and minimal bundle.
50
+// The development configuration is different and lives in a separate file.
51
+module.exports = {
52
+  // Don't attempt to continue if there are any errors.
53
+  bail: true,
54
+  // We generate sourcemaps in production. This is slow but gives good results.
55
+  // You can exclude the *.map files from the build during deployment.
56
+  devtool: shouldUseSourceMap ? 'source-map' : false,
57
+  // In production, we only want to load the polyfills and the app code.
58
+  entry: [require.resolve('./polyfills'), paths.appIndexJs],
59
+  output: {
60
+    // The build folder.
61
+    path: paths.appBuild,
62
+    // Generated JS file names (with nested folders).
63
+    // There will be one main bundle, and one file per asynchronous chunk.
64
+    // We don't currently advertise code splitting but Webpack supports it.
65
+    filename: 'static/js/[name].[chunkhash:8].js',
66
+    chunkFilename: 'static/js/[name].[chunkhash:8].chunk.js',
67
+    // We inferred the "public path" (such as / or /my-project) from homepage.
68
+    publicPath: publicPath,
69
+    // Point sourcemap entries to original disk location (format as URL on Windows)
70
+    devtoolModuleFilenameTemplate: info =>
71
+      path
72
+        .relative(paths.appSrc, info.absoluteResourcePath)
73
+        .replace(/\\/g, '/'),
74
+  },
75
+  resolve: {
76
+    // This allows you to set a fallback for where Webpack should look for modules.
77
+    // We placed these paths second because we want `node_modules` to "win"
78
+    // if there are any conflicts. This matches Node resolution mechanism.
79
+    // https://github.com/facebookincubator/create-react-app/issues/253
80
+    modules: ['node_modules', paths.appNodeModules].concat(
81
+      // It is guaranteed to exist because we tweak it in `env.js`
82
+      process.env.NODE_PATH.split(path.delimiter).filter(Boolean)
83
+    ),
84
+    // These are the reasonable defaults supported by the Node ecosystem.
85
+    // We also include JSX as a common component filename extension to support
86
+    // some tools, although we do not recommend using it, see:
87
+    // https://github.com/facebookincubator/create-react-app/issues/290
88
+    // `web` extension prefixes have been added for better support
89
+    // for React Native Web.
90
+    extensions: ['.web.js', '.mjs', '.js', '.json', '.web.jsx', '.jsx'],
91
+    alias: {
92
+      
93
+      // Support React Native Web
94
+      // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
95
+      'react-native': 'react-native-web',
96
+    },
97
+    plugins: [
98
+      // Prevents users from importing files from outside of src/ (or node_modules/).
99
+      // This often causes confusion because we only process files within src/ with babel.
100
+      // To fix this, we prevent you from importing files out of src/ -- if you'd like to,
101
+      // please link the files into your node_modules/ and let module-resolution kick in.
102
+      // Make sure your source files are compiled, as they will not be processed in any way.
103
+      new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
104
+    ],
105
+  },
106
+  module: {
107
+    strictExportPresence: true,
108
+    rules: [
109
+      // TODO: Disable require.ensure as it's not a standard language feature.
110
+      // We are waiting for https://github.com/facebookincubator/create-react-app/issues/2176.
111
+      // { parser: { requireEnsure: false } },
112
+
113
+      // First, run the linter.
114
+      // It's important to do this before Babel processes the JS.
115
+      {
116
+        test: /\.(js|jsx|mjs)$/,
117
+        enforce: 'pre',
118
+        use: [
119
+          {
120
+            options: {
121
+              formatter: eslintFormatter,
122
+              eslintPath: require.resolve('eslint'),
123
+              
124
+            },
125
+            loader: require.resolve('eslint-loader'),
126
+          },
127
+        ],
128
+        include: paths.appSrc,
129
+      },
130
+      {
131
+        // "oneOf" will traverse all following loaders until one will
132
+        // match the requirements. When no loader matches it will fall
133
+        // back to the "file" loader at the end of the loader list.
134
+        oneOf: [
135
+          // "url" loader works just like "file" loader but it also embeds
136
+          // assets smaller than specified size as data URLs to avoid requests.
137
+          {
138
+            test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
139
+            loader: require.resolve('url-loader'),
140
+            options: {
141
+              limit: 10000,
142
+              name: 'static/media/[name].[hash:8].[ext]',
143
+            },
144
+          },
145
+          // Process JS with Babel.
146
+          {
147
+            test: /\.(js|jsx|mjs)$/,
148
+            include: paths.appSrc,
149
+            loader: require.resolve('babel-loader'),
150
+            options: {
151
+              
152
+              compact: true,
153
+            },
154
+          },
155
+          // The notation here is somewhat confusing.
156
+          // "postcss" loader applies autoprefixer to our CSS.
157
+          // "css" loader resolves paths in CSS and adds assets as dependencies.
158
+          // "style" loader normally turns CSS into JS modules injecting <style>,
159
+          // but unlike in development configuration, we do something different.
160
+          // `ExtractTextPlugin` first applies the "postcss" and "css" loaders
161
+          // (second argument), then grabs the result CSS and puts it into a
162
+          // separate file in our build process. This way we actually ship
163
+          // a single CSS file in production instead of JS code injecting <style>
164
+          // tags. If you use code splitting, however, any async bundles will still
165
+          // use the "style" loader inside the async code so CSS from them won't be
166
+          // in the main CSS file.
167
+          {
168
+            test: /\.css$/,
169
+            loader: ExtractTextPlugin.extract(
170
+              Object.assign(
171
+                {
172
+                  fallback: {
173
+                    loader: require.resolve('style-loader'),
174
+                    options: {
175
+                      hmr: false,
176
+                    },
177
+                  },
178
+                  use: [
179
+                    {
180
+                      loader: require.resolve('css-loader'),
181
+                      options: {
182
+                        importLoaders: 1,
183
+                        minimize: true,
184
+                        sourceMap: shouldUseSourceMap,
185
+                      },
186
+                    },
187
+                    {
188
+                      loader: require.resolve('postcss-loader'),
189
+                      options: {
190
+                        // Necessary for external CSS imports to work
191
+                        // https://github.com/facebookincubator/create-react-app/issues/2677
192
+                        ident: 'postcss',
193
+                        plugins: () => [
194
+                          require('postcss-flexbugs-fixes'),
195
+                          autoprefixer({
196
+                            browsers: [
197
+                              '>1%',
198
+                              'last 4 versions',
199
+                              'Firefox ESR',
200
+                              'not ie < 9', // React doesn't support IE8 anyway
201
+                            ],
202
+                            flexbox: 'no-2009',
203
+                          }),
204
+                        ],
205
+                      },
206
+                    },
207
+                  ],
208
+                },
209
+                extractTextPluginOptions
210
+              )
211
+            ),
212
+            // Note: this won't work without `new ExtractTextPlugin()` in `plugins`.
213
+          },
214
+          // "file" loader makes sure assets end up in the `build` folder.
215
+          // When you `import` an asset, you get its filename.
216
+          // This loader doesn't use a "test" so it will catch all modules
217
+          // that fall through the other loaders.
218
+          {
219
+            loader: require.resolve('file-loader'),
220
+            // Exclude `js` files to keep "css" loader working as it injects
221
+            // it's runtime that would otherwise processed through "file" loader.
222
+            // Also exclude `html` and `json` extensions so they get processed
223
+            // by webpacks internal loaders.
224
+            exclude: [/\.(js|jsx|mjs)$/, /\.html$/, /\.json$/],
225
+            options: {
226
+              name: 'static/media/[name].[hash:8].[ext]',
227
+            },
228
+          },
229
+          // ** STOP ** Are you adding a new loader?
230
+          // Make sure to add the new loader(s) before the "file" loader.
231
+        ],
232
+      },
233
+    ],
234
+  },
235
+  plugins: [
236
+    // Makes some environment variables available in index.html.
237
+    // The public URL is available as %PUBLIC_URL% in index.html, e.g.:
238
+    // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
239
+    // In production, it will be an empty string unless you specify "homepage"
240
+    // in `package.json`, in which case it will be the pathname of that URL.
241
+    new InterpolateHtmlPlugin(env.raw),
242
+    // Generates an `index.html` file with the <script> injected.
243
+    new HtmlWebpackPlugin({
244
+      inject: true,
245
+      template: paths.appHtml,
246
+      minify: {
247
+        removeComments: true,
248
+        collapseWhitespace: true,
249
+        removeRedundantAttributes: true,
250
+        useShortDoctype: true,
251
+        removeEmptyAttributes: true,
252
+        removeStyleLinkTypeAttributes: true,
253
+        keepClosingSlash: true,
254
+        minifyJS: true,
255
+        minifyCSS: true,
256
+        minifyURLs: true,
257
+      },
258
+    }),
259
+    // Makes some environment variables available to the JS code, for example:
260
+    // if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.
261
+    // It is absolutely essential that NODE_ENV was set to production here.
262
+    // Otherwise React will be compiled in the very slow development mode.
263
+    new webpack.DefinePlugin(env.stringified),
264
+    // Minify the code.
265
+    new webpack.optimize.UglifyJsPlugin({
266
+      compress: {
267
+        warnings: false,
268
+        // Disabled because of an issue with Uglify breaking seemingly valid code:
269
+        // https://github.com/facebookincubator/create-react-app/issues/2376
270
+        // Pending further investigation:
271
+        // https://github.com/mishoo/UglifyJS2/issues/2011
272
+        comparisons: false,
273
+      },
274
+      mangle: {
275
+        safari10: true,
276
+      },
277
+      output: {
278
+        comments: false,
279
+        // Turned on because emoji and regex is not minified properly using default
280
+        // https://github.com/facebookincubator/create-react-app/issues/2488
281
+        ascii_only: true,
282
+      },
283
+      sourceMap: shouldUseSourceMap,
284
+    }),
285
+    // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
286
+    new ExtractTextPlugin({
287
+      filename: cssFilename,
288
+    }),
289
+    // Generate a manifest file which contains a mapping of all asset filenames
290
+    // to their corresponding output file so that tools can pick it up without
291
+    // having to parse `index.html`.
292
+    new ManifestPlugin({
293
+      fileName: 'asset-manifest.json',
294
+    }),
295
+    // Generate a service worker script that will precache, and keep up to date,
296
+    // the HTML & assets that are part of the Webpack build.
297
+    new SWPrecacheWebpackPlugin({
298
+      // By default, a cache-busting query parameter is appended to requests
299
+      // used to populate the caches, to ensure the responses are fresh.
300
+      // If a URL is already hashed by Webpack, then there is no concern
301
+      // about it being stale, and the cache-busting can be skipped.
302
+      dontCacheBustUrlsMatching: /\.\w{8}\./,
303
+      filename: 'service-worker.js',
304
+      logger(message) {
305
+        if (message.indexOf('Total precache size is') === 0) {
306
+          // This message occurs for every build and is a bit too noisy.
307
+          return;
308
+        }
309
+        if (message.indexOf('Skipping static resource') === 0) {
310
+          // This message obscures real errors so we ignore it.
311
+          // https://github.com/facebookincubator/create-react-app/issues/2612
312
+          return;
313
+        }
314
+        console.log(message);
315
+      },
316
+      minify: true,
317
+      // For unknown URLs, fallback to the index page
318
+      navigateFallback: publicUrl + '/index.html',
319
+      // Ignores URLs starting from /__ (useful for Firebase):
320
+      // https://github.com/facebookincubator/create-react-app/issues/2237#issuecomment-302693219
321
+      navigateFallbackWhitelist: [/^(?!\/__).*/],
322
+      // Don't precache sourcemaps (they're large) and build asset manifest:
323
+      staticFileGlobsIgnorePatterns: [/\.map$/, /asset-manifest\.json$/],
324
+    }),
325
+    // Moment.js is an extremely popular library that bundles large locale files
326
+    // by default due to how Webpack interprets its code. This is a practical
327
+    // solution that requires the user to opt into importing specific locales.
328
+    // https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
329
+    // You can remove this if you don't use Moment.js:
330
+    new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
331
+  ],
332
+  // Some libraries import Node modules but don't use them in the browser.
333
+  // Tell Webpack to provide empty mocks for them so importing them works.
334
+  node: {
335
+    dgram: 'empty',
336
+    fs: 'empty',
337
+    net: 'empty',
338
+    tls: 'empty',
339
+    child_process: 'empty',
340
+  },
341
+};
0 342
new file mode 100644
... ...
@@ -0,0 +1,95 @@
0
+'use strict';
1
+
2
+const errorOverlayMiddleware = require('react-dev-utils/errorOverlayMiddleware');
3
+const noopServiceWorkerMiddleware = require('react-dev-utils/noopServiceWorkerMiddleware');
4
+const ignoredFiles = require('react-dev-utils/ignoredFiles');
5
+const config = require('./webpack.config.dev');
6
+const paths = require('./paths');
7
+
8
+const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
9
+const host = process.env.HOST || '0.0.0.0';
10
+
11
+module.exports = function(proxy, allowedHost) {
12
+  return {
13
+    // WebpackDevServer 2.4.3 introduced a security fix that prevents remote
14
+    // websites from potentially accessing local content through DNS rebinding:
15
+    // https://github.com/webpack/webpack-dev-server/issues/887
16
+    // https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a
17
+    // However, it made several existing use cases such as development in cloud
18
+    // environment or subdomains in development significantly more complicated:
19
+    // https://github.com/facebookincubator/create-react-app/issues/2271
20
+    // https://github.com/facebookincubator/create-react-app/issues/2233
21
+    // While we're investigating better solutions, for now we will take a
22
+    // compromise. Since our WDS configuration only serves files in the `public`
23
+    // folder we won't consider accessing them a vulnerability. However, if you
24
+    // use the `proxy` feature, it gets more dangerous because it can expose
25
+    // remote code execution vulnerabilities in backends like Django and Rails.
26
+    // So we will disable the host check normally, but enable it if you have
27
+    // specified the `proxy` setting. Finally, we let you override it if you
28
+    // really know what you're doing with a special environment variable.
29
+    disableHostCheck:
30
+      !proxy || process.env.DANGEROUSLY_DISABLE_HOST_CHECK === 'true',
31
+    // Enable gzip compression of generated files.
32
+    compress: true,
33
+    // Silence WebpackDevServer's own logs since they're generally not useful.
34
+    // It will still show compile warnings and errors with this setting.
35
+    clientLogLevel: 'none',
36
+    // By default WebpackDevServer serves physical files from current directory
37
+    // in addition to all the virtual build products that it serves from memory.
38
+    // This is confusing because those files won’t automatically be available in
39
+    // production build folder unless we copy them. However, copying the whole
40
+    // project directory is dangerous because we may expose sensitive files.
41
+    // Instead, we establish a convention that only files in `public` directory
42
+    // get served. Our build script will copy `public` into the `build` folder.
43
+    // In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
44
+    // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
45
+    // In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
46
+    // Note that we only recommend to use `public` folder as an escape hatch
47
+    // for files like `favicon.ico`, `manifest.json`, and libraries that are
48
+    // for some reason broken when imported through Webpack. If you just want to
49
+    // use an image, put it in `src` and `import` it from JavaScript instead.
50
+    contentBase: paths.appPublic,
51
+    // By default files from `contentBase` will not trigger a page reload.
52
+    watchContentBase: true,
53
+    // Enable hot reloading server. It will provide /sockjs-node/ endpoint
54
+    // for the WebpackDevServer client so it can learn when the files were
55
+    // updated. The WebpackDevServer client is included as an entry point
56
+    // in the Webpack development configuration. Note that only changes
57
+    // to CSS are currently hot reloaded. JS changes will refresh the browser.
58
+    hot: true,
59
+    // It is important to tell WebpackDevServer to use the same "root" path
60
+    // as we specified in the config. In development, we always serve from /.
61
+    publicPath: config.output.publicPath,
62
+    // WebpackDevServer is noisy by default so we emit custom message instead
63
+    // by listening to the compiler events with `compiler.plugin` calls above.
64
+    quiet: true,
65
+    // Reportedly, this avoids CPU overload on some systems.
66
+    // https://github.com/facebookincubator/create-react-app/issues/293
67
+    // src/node_modules is not ignored to support absolute imports
68
+    // https://github.com/facebookincubator/create-react-app/issues/1065
69
+    watchOptions: {
70
+      ignored: ignoredFiles(paths.appSrc),
71
+    },
72
+    // Enable HTTPS if the HTTPS environment variable is set to 'true'
73
+    https: protocol === 'https',
74
+    host: host,
75
+    overlay: false,
76
+    historyApiFallback: {
77
+      // Paths with dots should still use the history fallback.
78
+      // See https://github.com/facebookincubator/create-react-app/issues/387.
79
+      disableDotRule: true,
80
+    },
81
+    public: allowedHost,
82
+    proxy,
83
+    before(app) {
84
+      // This lets us open files from the runtime error overlay.
85
+      app.use(errorOverlayMiddleware());
86
+      // This service worker file is effectively a 'no-op' that will reset any
87
+      // previous service worker registered for the same host:port combination.
88
+      // We do this in development to avoid hitting the production cache if
89
+      // it used the same host and port.
90
+      // https://github.com/facebookincubator/create-react-app/issues/2272#issuecomment-302832432
91
+      app.use(noopServiceWorkerMiddleware());
92
+    },
93
+  };
94
+};
0 95
new file mode 100644
... ...
@@ -0,0 +1,93 @@
0
+{
1
+  "name": "scheduling-master",
2
+  "version": "0.1.0",
3
+  "private": true,
4
+  "dependencies": {
5
+    "autoprefixer": "7.1.6",
6
+    "babel-core": "6.26.0",
7
+    "babel-eslint": "7.2.3",
8
+    "babel-jest": "20.0.3",
9
+    "babel-loader": "7.1.2",
10
+    "babel-preset-react-app": "^3.1.1",
11
+    "babel-runtime": "6.26.0",
12
+    "case-sensitive-paths-webpack-plugin": "2.1.1",
13
+    "chalk": "1.1.3",
14
+    "css-loader": "0.28.7",
15
+    "dotenv": "4.0.0",
16
+    "dotenv-expand": "4.2.0",
17
+    "eslint": "4.10.0",
18
+    "eslint-config-react-app": "^2.1.0",
19
+    "eslint-loader": "1.9.0",
20
+    "eslint-plugin-flowtype": "2.39.1",
21
+    "eslint-plugin-import": "2.8.0",
22
+    "eslint-plugin-jsx-a11y": "5.1.1",
23
+    "eslint-plugin-react": "7.4.0",
24
+    "extract-text-webpack-plugin": "3.0.2",
25
+    "file-loader": "1.1.5",
26
+    "fs-extra": "3.0.1",
27
+    "html-webpack-plugin": "2.29.0",
28
+    "jest": "20.0.4",
29
+    "object-assign": "4.1.1",
30
+    "postcss-flexbugs-fixes": "3.2.0",
31
+    "postcss-loader": "2.0.8",
32
+    "promise": "8.0.1",
33
+    "raf": "3.4.0",
34
+    "react": "^16.2.0",
35
+    "react-dev-utils": "^5.0.0",
36
+    "react-dom": "^16.2.0",
37
+    "style-loader": "0.19.0",
38
+    "sw-precache-webpack-plugin": "0.11.4",
39
+    "url-loader": "0.6.2",
40
+    "webpack": "3.8.1",
41
+    "webpack-dev-server": "2.9.4",
42
+    "webpack-manifest-plugin": "1.3.2",
43
+    "whatwg-fetch": "2.0.3"
44
+  },
45
+  "scripts": {
46
+    "start": "node scripts/start.js",
47
+    "build": "node scripts/build.js",
48
+    "test": "node scripts/test.js --env=jsdom"
49
+  },
50
+  "jest": {
51
+    "collectCoverageFrom": [
52
+      "src/**/*.{js,jsx,mjs}"
53
+    ],
54
+    "setupFiles": [
55
+      "<rootDir>/config/polyfills.js"
56
+    ],
57
+    "testMatch": [
58
+      "<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
59
+      "<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
60
+    ],
61
+    "testEnvironment": "node",
62
+    "testURL": "http://localhost",
63
+    "transform": {
64
+      "^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
65
+      "^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
66
+      "^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
67
+    },
68
+    "transformIgnorePatterns": [
69
+      "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
70
+    ],
71
+    "moduleNameMapper": {
72
+      "^react-native$": "react-native-web"
73
+    },
74
+    "moduleFileExtensions": [
75
+      "web.js",
76
+      "mjs",
77
+      "js",
78
+      "json",
79
+      "web.jsx",
80
+      "jsx",
81
+      "node"
82
+    ]
83
+  },
84
+  "babel": {
85
+    "presets": [
86
+      "react-app"
87
+    ]
88
+  },
89
+  "eslintConfig": {
90
+    "extends": "react-app"
91
+  }
92
+}
0 93
new file mode 100644
1 94
Binary files /dev/null and b/public/favicon.ico differ
2 95
new file mode 100644
... ...
@@ -0,0 +1,40 @@
0
+<!DOCTYPE html>
1
+<html lang="en">
2
+  <head>
3
+    <meta charset="utf-8">
4
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
5
+    <meta name="theme-color" content="#000000">
6
+    <!--
7
+      manifest.json provides metadata used when your web app is added to the
8
+      homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
9
+    -->
10
+    <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
11
+    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
12
+    <!--
13
+      Notice the use of %PUBLIC_URL% in the tags above.
14
+      It will be replaced with the URL of the `public` folder during the build.
15
+      Only files inside the `public` folder can be referenced from the HTML.
16
+
17
+      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
18
+      work correctly both with client-side routing and a non-root public URL.
19
+      Learn how to configure a non-root public URL by running `npm run build`.
20
+    -->
21
+    <title>React App</title>
22
+  </head>
23
+  <body>
24
+    <noscript>
25
+      You need to enable JavaScript to run this app.
26
+    </noscript>
27
+    <div id="root"></div>
28
+    <!--
29
+      This HTML file is a template.
30
+      If you open it directly in the browser, you will see an empty page.
31
+
32
+      You can add webfonts, meta tags, or analytics to this file.
33
+      The build step will place the bundled scripts into the <body> tag.
34
+
35
+      To begin the development, run `npm start` or `yarn start`.
36
+      To create a production bundle, use `npm run build` or `yarn build`.
37
+    -->
38
+  </body>
39
+</html>
0 40
new file mode 100644
... ...
@@ -0,0 +1,15 @@
0
+{
1
+  "short_name": "React App",
2
+  "name": "Create React App Sample",
3
+  "icons": [
4
+    {
5
+      "src": "favicon.ico",
6
+      "sizes": "64x64 32x32 24x24 16x16",
7
+      "type": "image/x-icon"
8
+    }
9
+  ],
10
+  "start_url": "./index.html",
11
+  "display": "standalone",
12
+  "theme_color": "#000000",
13
+  "background_color": "#ffffff"
14
+}
0 15
new file mode 100644
... ...
@@ -0,0 +1,150 @@
0
+'use strict';
1
+
2
+// Do this as the first thing so that any code reading it knows the right env.
3
+process.env.BABEL_ENV = 'production';
4
+process.env.NODE_ENV = 'production';
5
+
6
+// Makes the script crash on unhandled rejections instead of silently
7
+// ignoring them. In the future, promise rejections that are not handled will
8
+// terminate the Node.js process with a non-zero exit code.
9
+process.on('unhandledRejection', err => {
10
+  throw err;
11
+});
12
+
13
+// Ensure environment variables are read.
14
+require('../config/env');
15
+
16
+const path = require('path');
17
+const chalk = require('chalk');
18
+const fs = require('fs-extra');
19
+const webpack = require('webpack');
20
+const config = require('../config/webpack.config.prod');
21
+const paths = require('../config/paths');
22
+const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
23
+const formatWebpackMessages = require('react-dev-utils/formatWebpackMessages');
24
+const printHostingInstructions = require('react-dev-utils/printHostingInstructions');
25
+const FileSizeReporter = require('react-dev-utils/FileSizeReporter');
26
+const printBuildError = require('react-dev-utils/printBuildError');
27
+
28
+const measureFileSizesBeforeBuild =
29
+  FileSizeReporter.measureFileSizesBeforeBuild;
30
+const printFileSizesAfterBuild = FileSizeReporter.printFileSizesAfterBuild;
31
+const useYarn = fs.existsSync(paths.yarnLockFile);
32
+
33
+// These sizes are pretty large. We'll warn for bundles exceeding them.
34
+const WARN_AFTER_BUNDLE_GZIP_SIZE = 512 * 1024;
35
+const WARN_AFTER_CHUNK_GZIP_SIZE = 1024 * 1024;
36
+
37
+// Warn and crash if required files are missing
38
+if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
39
+  process.exit(1);
40
+}
41
+
42
+// First, read the current file sizes in build directory.
43
+// This lets us display how much they changed later.
44
+measureFileSizesBeforeBuild(paths.appBuild)
45
+  .then(previousFileSizes => {
46
+    // Remove all content but keep the directory so that
47
+    // if you're in it, you don't end up in Trash
48
+    fs.emptyDirSync(paths.appBuild);
49
+    // Merge with the public folder
50
+    copyPublicFolder();
51
+    // Start the webpack build
52
+    return build(previousFileSizes);
53
+  })
54
+  .then(
55
+    ({ stats, previousFileSizes, warnings }) => {
56
+      if (warnings.length) {
57
+        console.log(chalk.yellow('Compiled with warnings.\n'));
58
+        console.log(warnings.join('\n\n'));
59
+        console.log(
60
+          '\nSearch for the ' +
61
+            chalk.underline(chalk.yellow('keywords')) +
62
+            ' to learn more about each warning.'
63
+        );
64
+        console.log(
65
+          'To ignore, add ' +
66
+            chalk.cyan('// eslint-disable-next-line') +
67
+            ' to the line before.\n'
68
+        );
69
+      } else {
70
+        console.log(chalk.green('Compiled successfully.\n'));
71
+      }
72
+
73
+      console.log('File sizes after gzip:\n');
74
+      printFileSizesAfterBuild(
75
+        stats,
76
+        previousFileSizes,
77
+        paths.appBuild,
78
+        WARN_AFTER_BUNDLE_GZIP_SIZE,
79
+        WARN_AFTER_CHUNK_GZIP_SIZE
80
+      );
81
+      console.log();
82
+
83
+      const appPackage = require(paths.appPackageJson);
84
+      const publicUrl = paths.publicUrl;
85
+      const publicPath = config.output.publicPath;
86
+      const buildFolder = path.relative(process.cwd(), paths.appBuild);
87
+      printHostingInstructions(
88
+        appPackage,
89
+        publicUrl,
90
+        publicPath,
91
+        buildFolder,
92
+        useYarn
93
+      );
94
+    },
95
+    err => {
96
+      console.log(chalk.red('Failed to compile.\n'));
97
+      printBuildError(err);
98
+      process.exit(1);
99
+    }
100
+  );
101
+
102
+// Create the production build and print the deployment instructions.
103
+function build(previousFileSizes) {
104
+  console.log('Creating an optimized production build...');
105
+
106
+  let compiler = webpack(config);
107
+  return new Promise((resolve, reject) => {
108
+    compiler.run((err, stats) => {
109
+      if (err) {
110
+        return reject(err);
111
+      }
112
+      const messages = formatWebpackMessages(stats.toJson({}, true));
113
+      if (messages.errors.length) {
114
+        // Only keep the first error. Others are often indicative
115
+        // of the same problem, but confuse the reader with noise.
116
+        if (messages.errors.length > 1) {
117
+          messages.errors.length = 1;
118
+        }
119
+        return reject(new Error(messages.errors.join('\n\n')));
120
+      }
121
+      if (
122
+        process.env.CI &&
123
+        (typeof process.env.CI !== 'string' ||
124
+          process.env.CI.toLowerCase() !== 'false') &&
125
+        messages.warnings.length
126
+      ) {
127
+        console.log(
128
+          chalk.yellow(
129
+            '\nTreating warnings as errors because process.env.CI = true.\n' +
130
+              'Most CI servers set it automatically.\n'
131
+          )
132
+        );
133
+        return reject(new Error(messages.warnings.join('\n\n')));
134
+      }
135
+      return resolve({
136
+        stats,
137
+        previousFileSizes,
138
+        warnings: messages.warnings,
139
+      });
140
+    });
141
+  });
142
+}
143
+
144
+function copyPublicFolder() {
145
+  fs.copySync(paths.appPublic, paths.appBuild, {
146
+    dereference: true,
147
+    filter: file => file !== paths.appHtml,
148
+  });
149
+}
0 150
new file mode 100644
... ...
@@ -0,0 +1,107 @@
0
+'use strict';
1
+
2
+// Do this as the first thing so that any code reading it knows the right env.
3
+process.env.BABEL_ENV = 'development';
4
+process.env.NODE_ENV = 'development';
5
+
6
+// Makes the script crash on unhandled rejections instead of silently
7
+// ignoring them. In the future, promise rejections that are not handled will
8
+// terminate the Node.js process with a non-zero exit code.
9
+process.on('unhandledRejection', err => {
10
+  throw err;
11
+});
12
+
13
+// Ensure environment variables are read.
14
+require('../config/env');
15
+
16
+const fs = require('fs');
17
+const chalk = require('chalk');
18
+const webpack = require('webpack');
19
+const WebpackDevServer = require('webpack-dev-server');
20
+const clearConsole = require('react-dev-utils/clearConsole');
21
+const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
22
+const {
23
+  choosePort,
24
+  createCompiler,
25
+  prepareProxy,
26
+  prepareUrls,
27
+} = require('react-dev-utils/WebpackDevServerUtils');
28
+const openBrowser = require('react-dev-utils/openBrowser');
29
+const paths = require('../config/paths');
30
+const config = require('../config/webpack.config.dev');
31
+const createDevServerConfig = require('../config/webpackDevServer.config');
32
+
33
+const useYarn = fs.existsSync(paths.yarnLockFile);
34
+const isInteractive = process.stdout.isTTY;
35
+
36
+// Warn and crash if required files are missing
37
+if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
38
+  process.exit(1);
39
+}
40
+
41
+// Tools like Cloud9 rely on this.
42
+const DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
43
+const HOST = process.env.HOST || '0.0.0.0';
44
+
45
+if (process.env.HOST) {
46
+  console.log(
47
+    chalk.cyan(
48
+      `Attempting to bind to HOST environment variable: ${chalk.yellow(
49
+        chalk.bold(process.env.HOST)
50
+      )}`
51
+    )
52
+  );
53
+  console.log(
54
+    `If this was unintentional, check that you haven't mistakenly set it in your shell.`
55
+  );
56
+  console.log(`Learn more here: ${chalk.yellow('http://bit.ly/2mwWSwH')}`);
57
+  console.log();
58
+}
59
+
60
+// We attempt to use the default port but if it is busy, we offer the user to
61
+// run on a different port. `choosePort()` Promise resolves to the next free port.
62
+choosePort(HOST, DEFAULT_PORT)
63
+  .then(port => {
64
+    if (port == null) {
65
+      // We have not found a port.
66
+      return;
67
+    }
68
+    const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
69
+    const appName = require(paths.appPackageJson).name;
70
+    const urls = prepareUrls(protocol, HOST, port);
71
+    // Create a webpack compiler that is configured with custom messages.
72
+    const compiler = createCompiler(webpack, config, appName, urls, useYarn);
73
+    // Load proxy config
74
+    const proxySetting = require(paths.appPackageJson).proxy;
75
+    const proxyConfig = prepareProxy(proxySetting, paths.appPublic);
76
+    // Serve webpack assets generated by the compiler over a web sever.
77
+    const serverConfig = createDevServerConfig(
78
+      proxyConfig,
79
+      urls.lanUrlForConfig
80
+    );
81
+    const devServer = new WebpackDevServer(compiler, serverConfig);
82
+    // Launch WebpackDevServer.
83
+    devServer.listen(port, HOST, err => {
84
+      if (err) {
85
+        return console.log(err);
86
+      }
87
+      if (isInteractive) {
88
+        clearConsole();
89
+      }
90
+      console.log(chalk.cyan('Starting the development server...\n'));
91
+      openBrowser(urls.localUrlForBrowser);
92
+    });
93
+
94
+    ['SIGINT', 'SIGTERM'].forEach(function(sig) {
95
+      process.on(sig, function() {
96
+        devServer.close();
97
+        process.exit();
98
+      });
99
+    });
100
+  })
101
+  .catch(err => {
102
+    if (err && err.message) {
103
+      console.log(err.message);
104
+    }
105
+    process.exit(1);
106
+  });
0 107
new file mode 100644
... ...
@@ -0,0 +1,27 @@
0
+'use strict';
1
+
2
+// Do this as the first thing so that any code reading it knows the right env.
3
+process.env.BABEL_ENV = 'test';
4
+process.env.NODE_ENV = 'test';
5
+process.env.PUBLIC_URL = '';
6
+
7
+// Makes the script crash on unhandled rejections instead of silently
8
+// ignoring them. In the future, promise rejections that are not handled will
9
+// terminate the Node.js process with a non-zero exit code.
10
+process.on('unhandledRejection', err => {
11
+  throw err;
12
+});
13
+
14
+// Ensure environment variables are read.
15
+require('../config/env');
16
+
17
+const jest = require('jest');
18
+const argv = process.argv.slice(2);
19
+
20
+// Watch unless on CI or in coverage mode
21
+if (!process.env.CI && argv.indexOf('--coverage') < 0) {
22
+  argv.push('--watch');
23
+}
24
+
25
+
26
+jest.run(argv);
0 27
new file mode 100644
... ...
@@ -0,0 +1,28 @@
0
+.App {
1
+  text-align: center;
2
+}
3
+
4
+.App-logo {
5
+  animation: App-logo-spin infinite 20s linear;
6
+  height: 80px;
7
+}
8
+
9
+.App-header {
10
+  background-color: #222;
11
+  height: 150px;
12
+  padding: 20px;
13
+  color: white;
14
+}
15
+
16
+.App-title {
17
+  font-size: 1.5em;
18
+}
19
+
20
+.App-intro {
21
+  font-size: large;
22
+}
23
+
24
+@keyframes App-logo-spin {
25
+  from { transform: rotate(0deg); }
26
+  to { transform: rotate(360deg); }
27
+}
0 28
new file mode 100644
... ...
@@ -0,0 +1,21 @@
0
+import React, { Component } from 'react';
1
+import logo from './logo.svg';
2
+import './App.css';
3
+
4
+class App extends Component {
5
+  render() {
6
+    return (
7
+      <div className="App">
8
+        <header className="App-header">
9
+          <img src={logo} className="App-logo" alt="logo" />
10
+          <h1 className="App-title">Welcome to React</h1>
11
+        </header>
12
+        <p className="App-intro">
13
+          To get started, edit <code>src/App.js</code> and save to reload.
14
+        </p>
15
+      </div>
16
+    );
17
+  }
18
+}
19
+
20
+export default App;
0 21
new file mode 100644
... ...
@@ -0,0 +1,9 @@
0
+import React from 'react';
1
+import ReactDOM from 'react-dom';
2
+import App from './App';
3
+
4
+it('renders without crashing', () => {
5
+  const div = document.createElement('div');
6
+  ReactDOM.render(<App />, div);
7
+  ReactDOM.unmountComponentAtNode(div);
8
+});
0 9
new file mode 100644
... ...
@@ -0,0 +1,5 @@
0
+body {
1
+  margin: 0;
2
+  padding: 0;
3
+  font-family: sans-serif;
4
+}
0 5
new file mode 100644
... ...
@@ -0,0 +1,8 @@
0
+import React from 'react';
1
+import ReactDOM from 'react-dom';
2
+import './index.css';
3
+import App from './App';
4
+import registerServiceWorker from './registerServiceWorker';
5
+
6
+ReactDOM.render(<App />, document.getElementById('root'));
7
+registerServiceWorker();
0 8
new file mode 100644
... ...
@@ -0,0 +1,7 @@
0
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
1
+    <g fill="#61DAFB">
2
+        <path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
3
+        <circle cx="420.9" cy="296.5" r="45.7"/>
4
+        <path d="M520.5 78.1z"/>
5
+    </g>
6
+</svg>
0 7
new file mode 100644
... ...
@@ -0,0 +1,117 @@
0
+// In production, we register a service worker to serve assets from local cache.
1
+
2
+// This lets the app load faster on subsequent visits in production, and gives
3
+// it offline capabilities. However, it also means that developers (and users)
4
+// will only see deployed updates on the "N+1" visit to a page, since previously
5
+// cached resources are updated in the background.
6
+
7
+// To learn more about the benefits of this model, read https://goo.gl/KwvDNy.
8
+// This link also includes instructions on opting out of this behavior.
9
+
10
+const isLocalhost = Boolean(
11
+  window.location.hostname === 'localhost' ||
12
+    // [::1] is the IPv6 localhost address.
13
+    window.location.hostname === '[::1]' ||
14
+    // 127.0.0.1/8 is considered localhost for IPv4.
15
+    window.location.hostname.match(
16
+      /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
17
+    )
18
+);
19
+
20
+export default function register() {
21
+  if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
22
+    // The URL constructor is available in all browsers that support SW.
23
+    const publicUrl = new URL(process.env.PUBLIC_URL, window.location);
24
+    if (publicUrl.origin !== window.location.origin) {
25
+      // Our service worker won't work if PUBLIC_URL is on a different origin
26
+      // from what our page is served on. This might happen if a CDN is used to
27
+      // serve assets; see https://github.com/facebookincubator/create-react-app/issues/2374
28
+      return;
29
+    }
30
+
31
+    window.addEventListener('load', () => {
32
+      const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
33
+
34
+      if (isLocalhost) {
35
+        // This is running on localhost. Lets check if a service worker still exists or not.
36
+        checkValidServiceWorker(swUrl);
37
+
38
+        // Add some additional logging to localhost, pointing developers to the
39
+        // service worker/PWA documentation.
40
+        navigator.serviceWorker.ready.then(() => {
41
+          console.log(
42
+            'This web app is being served cache-first by a service ' +
43
+              'worker. To learn more, visit https://goo.gl/SC7cgQ'
44
+          );
45
+        });
46
+      } else {
47
+        // Is not local host. Just register service worker
48
+        registerValidSW(swUrl);
49
+      }
50
+    });
51
+  }
52
+}
53
+
54
+function registerValidSW(swUrl) {
55
+  navigator.serviceWorker
56
+    .register(swUrl)
57
+    .then(registration => {
58
+      registration.onupdatefound = () => {
59
+        const installingWorker = registration.installing;
60
+        installingWorker.onstatechange = () => {
61
+          if (installingWorker.state === 'installed') {
62
+            if (navigator.serviceWorker.controller) {
63
+              // At this point, the old content will have been purged and
64
+              // the fresh content will have been added to the cache.
65
+              // It's the perfect time to display a "New content is
66
+              // available; please refresh." message in your web app.
67
+              console.log('New content is available; please refresh.');
68
+            } else {
69
+              // At this point, everything has been precached.
70
+              // It's the perfect time to display a
71
+              // "Content is cached for offline use." message.
72
+              console.log('Content is cached for offline use.');
73
+            }
74
+          }
75
+        };
76
+      };
77
+    })
78
+    .catch(error => {
79
+      console.error('Error during service worker registration:', error);
80
+    });
81
+}
82
+
83
+function checkValidServiceWorker(swUrl) {
84
+  // Check if the service worker can be found. If it can't reload the page.
85
+  fetch(swUrl)
86
+    .then(response => {
87
+      // Ensure service worker exists, and that we really are getting a JS file.
88
+      if (
89
+        response.status === 404 ||
90
+        response.headers.get('content-type').indexOf('javascript') === -1
91
+      ) {
92
+        // No service worker found. Probably a different app. Reload the page.
93
+        navigator.serviceWorker.ready.then(registration => {
94
+          registration.unregister().then(() => {
95
+            window.location.reload();
96
+          });
97
+        });
98
+      } else {
99
+        // Service worker found. Proceed as normal.
100
+        registerValidSW(swUrl);
101
+      }
102
+    })
103
+    .catch(() => {
104
+      console.log(
105
+        'No internet connection found. App is running in offline mode.'
106
+      );
107
+    });
108
+}
109
+
110
+export function unregister() {
111
+  if ('serviceWorker' in navigator) {
112
+    navigator.serviceWorker.ready.then(registration => {
113
+      registration.unregister();
114
+    });
115
+  }
116
+}
0 117
new file mode 100644
... ...
@@ -0,0 +1,7201 @@
0
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
1
+# yarn lockfile v1
2
+
3
+
4
+abab@^1.0.3:
5
+  version "1.0.4"
6
+  resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
7
+
8
+abbrev@1:
9
+  version "1.1.1"
10
+  resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
11
+
12
+accepts@~1.3.4:
13
+  version "1.3.5"
14
+  resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
15
+  dependencies:
16
+    mime-types "~2.1.18"
17
+    negotiator "0.6.1"
18
+
19
+acorn-dynamic-import@^2.0.0:
20
+  version "2.0.2"
21
+  resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
22
+  dependencies:
23
+    acorn "^4.0.3"
24
+
25
+acorn-globals@^3.1.0:
26
+  version "3.1.0"
27
+  resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
28
+  dependencies:
29
+    acorn "^4.0.4"
30
+
31
+acorn-jsx@^3.0.0:
32
+  version "3.0.1"
33
+  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
34
+  dependencies:
35
+    acorn "^3.0.4"
36
+
37
+acorn@^3.0.4:
38
+  version "3.3.0"
39
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
40
+
41
+acorn@^4.0.3, acorn@^4.0.4:
42
+  version "4.0.13"
43
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
44
+
45
+acorn@^5.0.0, acorn@^5.5.0:
46
+  version "5.5.0"
47
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.0.tgz#1abb587fbf051f94e3de20e6b26ef910b1828298"
48
+
49
+address@1.0.3, address@^1.0.1:
50
+  version "1.0.3"
51
+  resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
52
+
53
+ajv-keywords@^2.0.0:
54
+  version "2.1.1"
55
+  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
56
+
57
+ajv-keywords@^3.0.0:
58
+  version "3.1.0"
59
+  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be"
60
+
61
+ajv@^4.9.1:
62
+  version "4.11.8"
63
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
64
+  dependencies:
65
+    co "^4.6.0"
66
+    json-stable-stringify "^1.0.1"
67
+
68
+ajv@^5.0.0, ajv@^5.1.0, ajv@^5.1.5, ajv@^5.2.0:
69
+  version "5.5.2"
70
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
71
+  dependencies:
72
+    co "^4.6.0"
73
+    fast-deep-equal "^1.0.0"
74
+    fast-json-stable-stringify "^2.0.0"
75
+    json-schema-traverse "^0.3.0"
76
+
77
+ajv@^6.0.1:
78
+  version "6.2.1"
79
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.2.1.tgz#28a6abc493a2abe0fb4c8507acaedb43fa550671"
80
+  dependencies:
81
+    fast-deep-equal "^1.0.0"
82
+    fast-json-stable-stringify "^2.0.0"
83
+    json-schema-traverse "^0.3.0"
84
+
85
+align-text@^0.1.1, align-text@^0.1.3:
86
+  version "0.1.4"
87
+  resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
88
+  dependencies:
89
+    kind-of "^3.0.2"
90
+    longest "^1.0.1"
91
+    repeat-string "^1.5.2"
92
+
93
+alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
94
+  version "1.0.2"
95
+  resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
96
+
97
+amdefine@>=0.0.4:
98
+  version "1.0.1"
99
+  resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
100
+
101
+ansi-align@^2.0.0:
102
+  version "2.0.0"
103
+  resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
104
+  dependencies:
105
+    string-width "^2.0.0"
106
+
107
+ansi-escapes@^1.4.0:
108
+  version "1.4.0"
109
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
110
+
111
+ansi-escapes@^3.0.0:
112
+  version "3.0.0"
113
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
114
+
115
+ansi-html@0.0.7:
116
+  version "0.0.7"
117
+  resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
118
+
119
+ansi-regex@^2.0.0, ansi-regex@^2.1.1:
120
+  version "2.1.1"
121
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
122
+
123
+ansi-regex@^3.0.0:
124
+  version "3.0.0"
125
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
126
+
127
+ansi-styles@^2.2.1:
128
+  version "2.2.1"
129
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
130
+
131
+ansi-styles@^3.0.0, ansi-styles@^3.2.1:
132
+  version "3.2.1"
133
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
134
+  dependencies:
135
+    color-convert "^1.9.0"
136
+
137
+anymatch@^1.3.0:
138
+  version "1.3.2"
139
+  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
140
+  dependencies:
141
+    micromatch "^2.1.5"
142
+    normalize-path "^2.0.0"
143
+
144
+anymatch@^2.0.0:
145
+  version "2.0.0"
146
+  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
147
+  dependencies:
148
+    micromatch "^3.1.4"
149
+    normalize-path "^2.1.1"
150
+
151
+append-transform@^0.4.0:
152
+  version "0.4.0"
153
+  resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
154
+  dependencies:
155
+    default-require-extensions "^1.0.0"
156
+
157
+aproba@^1.0.3:
158
+  version "1.2.0"
159
+  resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
160
+
161
+are-we-there-yet@~1.1.2:
162
+  version "1.1.4"
163
+  resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
164
+  dependencies:
165
+    delegates "^1.0.0"
166
+    readable-stream "^2.0.6"
167
+
168
+argparse@^1.0.7:
169
+  version "1.0.10"
170
+  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
171
+  dependencies:
172
+    sprintf-js "~1.0.2"
173
+
174
+aria-query@^0.7.0:
175
+  version "0.7.1"
176
+  resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.1.tgz#26cbb5aff64144b0a825be1846e0b16cfa00b11e"
177
+  dependencies:
178
+    ast-types-flow "0.0.7"
179
+    commander "^2.11.0"
180
+
181
+arr-diff@^2.0.0:
182
+  version "2.0.0"
183
+  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
184
+  dependencies:
185
+    arr-flatten "^1.0.1"
186
+
187
+arr-diff@^4.0.0:
188
+  version "4.0.0"
189
+  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
190
+
191
+arr-flatten@^1.0.1, arr-flatten@^1.1.0:
192
+  version "1.1.0"
193
+  resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
194
+
195
+arr-union@^3.1.0:
196
+  version "3.1.0"
197
+  resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
198
+
199
+array-equal@^1.0.0:
200
+  version "1.0.0"
201
+  resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
202
+
203
+array-filter@~0.0.0:
204
+  version "0.0.1"
205
+  resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
206
+
207
+array-find-index@^1.0.1:
208
+  version "1.0.2"
209
+  resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
210
+
211
+array-flatten@1.1.1:
212
+  version "1.1.1"
213
+  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
214
+
215
+array-flatten@^2.1.0:
216
+  version "2.1.1"
217
+  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296"
218
+
219
+array-includes@^3.0.3:
220
+  version "3.0.3"
221
+  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
222
+  dependencies:
223
+    define-properties "^1.1.2"
224
+    es-abstract "^1.7.0"
225
+
226
+array-map@~0.0.0:
227
+  version "0.0.0"
228
+  resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
229
+
230
+array-reduce@~0.0.0:
231
+  version "0.0.0"
232
+  resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
233
+
234
+array-union@^1.0.1:
235
+  version "1.0.2"
236
+  resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
237
+  dependencies:
238
+    array-uniq "^1.0.1"
239
+
240
+array-uniq@^1.0.1:
241
+  version "1.0.3"
242
+  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
243
+
244
+array-unique@^0.2.1:
245
+  version "0.2.1"
246
+  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
247
+
248
+array-unique@^0.3.2:
249
+  version "0.3.2"
250
+  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
251
+
252
+arrify@^1.0.0, arrify@^1.0.1:
253
+  version "1.0.1"
254
+  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
255
+
256
+asap@~2.0.3:
257
+  version "2.0.6"
258
+  resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
259
+
260
+asn1.js@^4.0.0:
261
+  version "4.10.1"
262
+  resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
263
+  dependencies:
264
+    bn.js "^4.0.0"
265
+    inherits "^2.0.1"
266
+    minimalistic-assert "^1.0.0"
267
+
268
+asn1@~0.2.3:
269
+  version "0.2.3"
270
+  resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
271
+
272
+assert-plus@1.0.0, assert-plus@^1.0.0:
273
+  version "1.0.0"
274
+  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
275
+
276
+assert-plus@^0.2.0:
277
+  version "0.2.0"
278
+  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
279
+
280
+assert@^1.1.1:
281
+  version "1.4.1"
282
+  resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
283
+  dependencies:
284
+    util "0.10.3"
285
+
286
+assign-symbols@^1.0.0:
287
+  version "1.0.0"
288
+  resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
289
+
290
+ast-types-flow@0.0.7:
291
+  version "0.0.7"
292
+  resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
293
+
294
+async-each@^1.0.0:
295
+  version "1.0.1"
296
+  resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
297
+
298
+async@^1.4.0, async@^1.5.2:
299
+  version "1.5.2"
300
+  resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
301
+
302
+async@^2.1.2, async@^2.1.4, async@^2.4.1:
303
+  version "2.6.0"
304
+  resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
305
+  dependencies:
306
+    lodash "^4.14.0"
307
+
308
+asynckit@^0.4.0:
309
+  version "0.4.0"
310
+  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
311
+
312
+atob@^2.0.0:
313
+  version "2.0.3"
314
+  resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d"
315
+
316
+autoprefixer@7.1.6:
317
+  version "7.1.6"
318
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.6.tgz#fb933039f74af74a83e71225ce78d9fd58ba84d7"
319
+  dependencies:
320
+    browserslist "^2.5.1"
321
+    caniuse-lite "^1.0.30000748"
322
+    normalize-range "^0.1.2"
323
+    num2fraction "^1.2.2"
324
+    postcss "^6.0.13"
325
+    postcss-value-parser "^3.2.3"
326
+
327
+autoprefixer@^6.3.1:
328
+  version "6.7.7"
329
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
330
+  dependencies:
331
+    browserslist "^1.7.6"
332
+    caniuse-db "^1.0.30000634"
333
+    normalize-range "^0.1.2"
334
+    num2fraction "^1.2.2"
335
+    postcss "^5.2.16"
336
+    postcss-value-parser "^3.2.3"
337
+
338
+aws-sign2@~0.6.0:
339
+  version "0.6.0"
340
+  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
341
+
342
+aws-sign2@~0.7.0:
343
+  version "0.7.0"
344
+  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
345
+
346
+aws4@^1.2.1, aws4@^1.6.0:
347
+  version "1.6.0"
348
+  resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
349
+
350
+axobject-query@^0.1.0:
351
+  version "0.1.0"
352
+  resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
353
+  dependencies:
354
+    ast-types-flow "0.0.7"
355
+
356
+babel-code-frame@6.26.0, babel-code-frame@^6.11.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
357
+  version "6.26.0"
358
+  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
359
+  dependencies:
360
+    chalk "^1.1.3"
361
+    esutils "^2.0.2"
362
+    js-tokens "^3.0.2"
363
+
364
+babel-core@6.26.0, babel-core@^6.0.0, babel-core@^6.26.0:
365
+  version "6.26.0"
366
+  resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
367
+  dependencies:
368
+    babel-code-frame "^6.26.0"
369
+    babel-generator "^6.26.0"
370
+    babel-helpers "^6.24.1"
371
+    babel-messages "^6.23.0"
372
+    babel-register "^6.26.0"
373
+    babel-runtime "^6.26.0"
374
+    babel-template "^6.26.0"
375
+    babel-traverse "^6.26.0"
376
+    babel-types "^6.26.0"
377
+    babylon "^6.18.0"
378
+    convert-source-map "^1.5.0"
379
+    debug "^2.6.8"
380
+    json5 "^0.5.1"
381
+    lodash "^4.17.4"
382
+    minimatch "^3.0.4"
383
+    path-is-absolute "^1.0.1"
384
+    private "^0.1.7"
385
+    slash "^1.0.0"
386
+    source-map "^0.5.6"
387
+
388
+babel-eslint@7.2.3:
389
+  version "7.2.3"
390
+  resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
391
+  dependencies:
392
+    babel-code-frame "^6.22.0"
393
+    babel-traverse "^6.23.1"
394
+    babel-types "^6.23.0"
395
+    babylon "^6.17.0"
396
+
397
+babel-generator@^6.18.0, babel-generator@^6.26.0:
398
+  version "6.26.1"
399
+  resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
400
+  dependencies:
401
+    babel-messages "^6.23.0"
402
+    babel-runtime "^6.26.0"
403
+    babel-types "^6.26.0"
404
+    detect-indent "^4.0.0"
405
+    jsesc "^1.3.0"
406
+    lodash "^4.17.4"
407
+    source-map "^0.5.7"
408
+    trim-right "^1.0.1"
409
+
410
+babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
411
+  version "6.24.1"
412
+  resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
413
+  dependencies:
414
+    babel-helper-explode-assignable-expression "^6.24.1"
415
+    babel-runtime "^6.22.0"
416
+    babel-types "^6.24.1"
417
+
418
+babel-helper-builder-react-jsx@^6.24.1:
419
+  version "6.26.0"
420
+  resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
421
+  dependencies:
422
+    babel-runtime "^6.26.0"
423
+    babel-types "^6.26.0"
424
+    esutils "^2.0.2"
425
+
426
+babel-helper-call-delegate@^6.24.1:
427
+  version "6.24.1"
428
+  resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
429
+  dependencies:
430
+    babel-helper-hoist-variables "^6.24.1"
431
+    babel-runtime "^6.22.0"
432
+    babel-traverse "^6.24.1"
433
+    babel-types "^6.24.1"
434
+
435
+babel-helper-define-map@^6.24.1:
436
+  version "6.26.0"
437
+  resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
438
+  dependencies:
439
+    babel-helper-function-name "^6.24.1"
440
+    babel-runtime "^6.26.0"
441
+    babel-types "^6.26.0"
442
+    lodash "^4.17.4"
443
+
444
+babel-helper-explode-assignable-expression@^6.24.1:
445
+  version "6.24.1"
446
+  resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
447
+  dependencies:
448
+    babel-runtime "^6.22.0"
449
+    babel-traverse "^6.24.1"
450
+    babel-types "^6.24.1"
451
+
452
+babel-helper-function-name@^6.24.1:
453
+  version "6.24.1"
454
+  resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
455
+  dependencies:
456
+    babel-helper-get-function-arity "^6.24.1"
457
+    babel-runtime "^6.22.0"
458
+    babel-template "^6.24.1"
459
+    babel-traverse "^6.24.1"
460
+    babel-types "^6.24.1"
461
+
462
+babel-helper-get-function-arity@^6.24.1:
463
+  version "6.24.1"
464
+  resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
465
+  dependencies:
466
+    babel-runtime "^6.22.0"
467
+    babel-types "^6.24.1"
468
+
469
+babel-helper-hoist-variables@^6.24.1:
470
+  version "6.24.1"
471
+  resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
472
+  dependencies:
473
+    babel-runtime "^6.22.0"
474
+    babel-types "^6.24.1"
475
+
476
+babel-helper-optimise-call-expression@^6.24.1:
477
+  version "6.24.1"
478
+  resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
479
+  dependencies:
480
+    babel-runtime "^6.22.0"
481
+    babel-types "^6.24.1"
482
+
483
+babel-helper-regex@^6.24.1:
484
+  version "6.26.0"
485
+  resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
486
+  dependencies:
487
+    babel-runtime "^6.26.0"
488
+    babel-types "^6.26.0"
489
+    lodash "^4.17.4"
490
+
491
+babel-helper-remap-async-to-generator@^6.24.1:
492
+  version "6.24.1"
493
+  resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
494
+  dependencies:
495
+    babel-helper-function-name "^6.24.1"
496
+    babel-runtime "^6.22.0"
497
+    babel-template "^6.24.1"
498
+    babel-traverse "^6.24.1"
499
+    babel-types "^6.24.1"
500
+
501
+babel-helper-replace-supers@^6.24.1:
502
+  version "6.24.1"
503
+  resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
504
+  dependencies:
505
+    babel-helper-optimise-call-expression "^6.24.1"
506
+    babel-messages "^6.23.0"
507
+    babel-runtime "^6.22.0"
508
+    babel-template "^6.24.1"
509
+    babel-traverse "^6.24.1"
510
+    babel-types "^6.24.1"
511
+
512
+babel-helpers@^6.24.1:
513
+  version "6.24.1"
514
+  resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
515
+  dependencies:
516
+    babel-runtime "^6.22.0"
517
+    babel-template "^6.24.1"
518
+
519
+babel-jest@20.0.3, babel-jest@^20.0.3:
520
+  version "20.0.3"
521
+  resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671"
522
+  dependencies:
523
+    babel-core "^6.0.0"
524
+    babel-plugin-istanbul "^4.0.0"
525
+    babel-preset-jest "^20.0.3"
526
+
527
+babel-loader@7.1.2:
528
+  version "7.1.2"
529
+  resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
530
+  dependencies:
531
+    find-cache-dir "^1.0.0"
532
+    loader-utils "^1.0.2"
533
+    mkdirp "^0.5.1"
534
+
535
+babel-messages@^6.23.0:
536
+  version "6.23.0"
537
+  resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
538
+  dependencies:
539
+    babel-runtime "^6.22.0"
540
+
541
+babel-plugin-check-es2015-constants@^6.22.0:
542
+  version "6.22.0"
543
+  resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
544
+  dependencies:
545
+    babel-runtime "^6.22.0"
546
+
547
+babel-plugin-dynamic-import-node@1.1.0:
548
+  version "1.1.0"
549
+  resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz#bd1d88ac7aaf98df4917c384373b04d971a2b37a"
550
+  dependencies:
551
+    babel-plugin-syntax-dynamic-import "^6.18.0"
552
+    babel-template "^6.26.0"
553
+    babel-types "^6.26.0"
554
+
555
+babel-plugin-istanbul@^4.0.0:
556
+  version "4.1.5"
557
+  resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
558
+  dependencies:
559
+    find-up "^2.1.0"
560
+    istanbul-lib-instrument "^1.7.5"
561
+    test-exclude "^4.1.1"
562
+
563
+babel-plugin-jest-hoist@^20.0.3:
564
+  version "20.0.3"
565
+  resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767"
566
+
567
+babel-plugin-syntax-async-functions@^6.8.0:
568
+  version "6.13.0"
569
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
570
+
571
+babel-plugin-syntax-class-properties@^6.8.0:
572
+  version "6.13.0"
573
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
574
+
575
+babel-plugin-syntax-dynamic-import@6.18.0, babel-plugin-syntax-dynamic-import@^6.18.0:
576
+  version "6.18.0"
577
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
578
+
579
+babel-plugin-syntax-exponentiation-operator@^6.8.0:
580
+  version "6.13.0"
581
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
582
+
583
+babel-plugin-syntax-flow@^6.18.0:
584
+  version "6.18.0"
585
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
586
+
587
+babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
588
+  version "6.18.0"
589
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
590
+
591
+babel-plugin-syntax-object-rest-spread@^6.8.0:
592
+  version "6.13.0"
593
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
594
+
595
+babel-plugin-syntax-trailing-function-commas@^6.22.0:
596
+  version "6.22.0"
597
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
598
+
599
+babel-plugin-transform-async-to-generator@^6.22.0:
600
+  version "6.24.1"
601
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
602
+  dependencies:
603
+    babel-helper-remap-async-to-generator "^6.24.1"
604
+    babel-plugin-syntax-async-functions "^6.8.0"
605
+    babel-runtime "^6.22.0"
606
+
607
+babel-plugin-transform-class-properties@6.24.1:
608
+  version "6.24.1"
609
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
610
+  dependencies:
611
+    babel-helper-function-name "^6.24.1"
612
+    babel-plugin-syntax-class-properties "^6.8.0"
613
+    babel-runtime "^6.22.0"
614
+    babel-template "^6.24.1"
615
+
616
+babel-plugin-transform-es2015-arrow-functions@^6.22.0:
617
+  version "6.22.0"
618
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
619
+  dependencies:
620
+    babel-runtime "^6.22.0"
621
+
622
+babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
623
+  version "6.22.0"
624
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
625
+  dependencies:
626
+    babel-runtime "^6.22.0"
627
+
628
+babel-plugin-transform-es2015-block-scoping@^6.23.0:
629
+  version "6.26.0"
630
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
631
+  dependencies:
632
+    babel-runtime "^6.26.0"
633
+    babel-template "^6.26.0"
634
+    babel-traverse "^6.26.0"
635
+    babel-types "^6.26.0"
636
+    lodash "^4.17.4"
637
+
638
+babel-plugin-transform-es2015-classes@^6.23.0:
639
+  version "6.24.1"
640
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
641
+  dependencies:
642
+    babel-helper-define-map "^6.24.1"
643
+    babel-helper-function-name "^6.24.1"
644
+    babel-helper-optimise-call-expression "^6.24.1"
645
+    babel-helper-replace-supers "^6.24.1"
646
+    babel-messages "^6.23.0"
647
+    babel-runtime "^6.22.0"
648
+    babel-template "^6.24.1"
649
+    babel-traverse "^6.24.1"
650
+    babel-types "^6.24.1"
651
+
652
+babel-plugin-transform-es2015-computed-properties@^6.22.0:
653
+  version "6.24.1"
654
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
655
+  dependencies:
656
+    babel-runtime "^6.22.0"
657
+    babel-template "^6.24.1"
658
+
659
+babel-plugin-transform-es2015-destructuring@6.23.0, babel-plugin-transform-es2015-destructuring@^6.23.0:
660
+  version "6.23.0"
661
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
662
+  dependencies:
663
+    babel-runtime "^6.22.0"
664
+
665
+babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
666
+  version "6.24.1"
667
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
668
+  dependencies:
669
+    babel-runtime "^6.22.0"
670
+    babel-types "^6.24.1"
671
+
672
+babel-plugin-transform-es2015-for-of@^6.23.0:
673
+  version "6.23.0"
674
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
675
+  dependencies:
676
+    babel-runtime "^6.22.0"
677
+
678
+babel-plugin-transform-es2015-function-name@^6.22.0:
679
+  version "6.24.1"
680
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
681
+  dependencies:
682
+    babel-helper-function-name "^6.24.1"
683
+    babel-runtime "^6.22.0"
684
+    babel-types "^6.24.1"
685
+
686
+babel-plugin-transform-es2015-literals@^6.22.0:
687
+  version "6.22.0"
688
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
689
+  dependencies:
690
+    babel-runtime "^6.22.0"
691
+
692
+babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
693
+  version "6.24.1"
694
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
695
+  dependencies:
696
+    babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
697
+    babel-runtime "^6.22.0"
698
+    babel-template "^6.24.1"
699
+
700
+babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
701
+  version "6.26.0"
702
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
703
+  dependencies:
704
+    babel-plugin-transform-strict-mode "^6.24.1"
705
+    babel-runtime "^6.26.0"
706
+    babel-template "^6.26.0"
707
+    babel-types "^6.26.0"
708
+
709
+babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
710
+  version "6.24.1"
711
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
712
+  dependencies:
713
+    babel-helper-hoist-variables "^6.24.1"
714
+    babel-runtime "^6.22.0"
715
+    babel-template "^6.24.1"
716
+
717
+babel-plugin-transform-es2015-modules-umd@^6.23.0:
718
+  version "6.24.1"
719
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
720
+  dependencies:
721
+    babel-plugin-transform-es2015-modules-amd "^6.24.1"
722
+    babel-runtime "^6.22.0"
723
+    babel-template "^6.24.1"
724
+
725
+babel-plugin-transform-es2015-object-super@^6.22.0:
726
+  version "6.24.1"
727
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
728
+  dependencies:
729
+    babel-helper-replace-supers "^6.24.1"
730
+    babel-runtime "^6.22.0"
731
+
732
+babel-plugin-transform-es2015-parameters@^6.23.0:
733
+  version "6.24.1"
734
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
735
+  dependencies:
736
+    babel-helper-call-delegate "^6.24.1"
737
+    babel-helper-get-function-arity "^6.24.1"
738
+    babel-runtime "^6.22.0"
739
+    babel-template "^6.24.1"
740
+    babel-traverse "^6.24.1"
741
+    babel-types "^6.24.1"
742
+
743
+babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
744
+  version "6.24.1"
745
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
746
+  dependencies:
747
+    babel-runtime "^6.22.0"
748
+    babel-types "^6.24.1"
749
+
750
+babel-plugin-transform-es2015-spread@^6.22.0:
751
+  version "6.22.0"
752
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
753
+  dependencies:
754
+    babel-runtime "^6.22.0"
755
+
756
+babel-plugin-transform-es2015-sticky-regex@^6.22.0:
757
+  version "6.24.1"
758
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
759
+  dependencies:
760
+    babel-helper-regex "^6.24.1"
761
+    babel-runtime "^6.22.0"
762
+    babel-types "^6.24.1"
763
+
764
+babel-plugin-transform-es2015-template-literals@^6.22.0:
765
+  version "6.22.0"
766
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
767
+  dependencies:
768
+    babel-runtime "^6.22.0"
769
+
770
+babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
771
+  version "6.23.0"
772
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
773
+  dependencies:
774
+    babel-runtime "^6.22.0"
775
+
776
+babel-plugin-transform-es2015-unicode-regex@^6.22.0:
777
+  version "6.24.1"
778
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
779
+  dependencies:
780
+    babel-helper-regex "^6.24.1"
781
+    babel-runtime "^6.22.0"
782
+    regexpu-core "^2.0.0"
783
+
784
+babel-plugin-transform-exponentiation-operator@^6.22.0:
785
+  version "6.24.1"
786
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
787
+  dependencies:
788
+    babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
789
+    babel-plugin-syntax-exponentiation-operator "^6.8.0"
790
+    babel-runtime "^6.22.0"
791
+
792
+babel-plugin-transform-flow-strip-types@^6.22.0:
793
+  version "6.22.0"
794
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
795
+  dependencies:
796
+    babel-plugin-syntax-flow "^6.18.0"
797
+    babel-runtime "^6.22.0"
798
+
799
+babel-plugin-transform-object-rest-spread@6.26.0:
800
+  version "6.26.0"
801
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
802
+  dependencies:
803
+    babel-plugin-syntax-object-rest-spread "^6.8.0"
804
+    babel-runtime "^6.26.0"
805
+
806
+babel-plugin-transform-react-constant-elements@6.23.0:
807
+  version "6.23.0"
808
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz#2f119bf4d2cdd45eb9baaae574053c604f6147dd"
809
+  dependencies:
810
+    babel-runtime "^6.22.0"
811
+
812
+babel-plugin-transform-react-display-name@^6.23.0:
813
+  version "6.25.0"
814
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
815
+  dependencies:
816
+    babel-runtime "^6.22.0"
817
+
818
+babel-plugin-transform-react-jsx-self@6.22.0, babel-plugin-transform-react-jsx-self@^6.22.0:
819
+  version "6.22.0"
820
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
821
+  dependencies:
822
+    babel-plugin-syntax-jsx "^6.8.0"
823
+    babel-runtime "^6.22.0"
824
+
825
+babel-plugin-transform-react-jsx-source@6.22.0, babel-plugin-transform-react-jsx-source@^6.22.0:
826
+  version "6.22.0"
827
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
828
+  dependencies:
829
+    babel-plugin-syntax-jsx "^6.8.0"
830
+    babel-runtime "^6.22.0"
831
+
832
+babel-plugin-transform-react-jsx@6.24.1, babel-plugin-transform-react-jsx@^6.24.1:
833
+  version "6.24.1"
834
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
835
+  dependencies:
836
+    babel-helper-builder-react-jsx "^6.24.1"
837
+    babel-plugin-syntax-jsx "^6.8.0"
838
+    babel-runtime "^6.22.0"
839
+
840
+babel-plugin-transform-regenerator@6.26.0, babel-plugin-transform-regenerator@^6.22.0:
841
+  version "6.26.0"
842
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
843
+  dependencies:
844
+    regenerator-transform "^0.10.0"
845
+
846
+babel-plugin-transform-runtime@6.23.0:
847
+  version "6.23.0"
848
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
849
+  dependencies:
850
+    babel-runtime "^6.22.0"
851
+
852
+babel-plugin-transform-strict-mode@^6.24.1:
853
+  version "6.24.1"
854
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
855
+  dependencies:
856
+    babel-runtime "^6.22.0"
857
+    babel-types "^6.24.1"
858
+
859
+babel-preset-env@1.6.1:
860
+  version "1.6.1"
861
+  resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48"
862
+  dependencies:
863
+    babel-plugin-check-es2015-constants "^6.22.0"
864
+    babel-plugin-syntax-trailing-function-commas "^6.22.0"
865
+    babel-plugin-transform-async-to-generator "^6.22.0"
866
+    babel-plugin-transform-es2015-arrow-functions "^6.22.0"
867
+    babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
868
+    babel-plugin-transform-es2015-block-scoping "^6.23.0"
869
+    babel-plugin-transform-es2015-classes "^6.23.0"
870
+    babel-plugin-transform-es2015-computed-properties "^6.22.0"
871
+    babel-plugin-transform-es2015-destructuring "^6.23.0"
872
+    babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
873
+    babel-plugin-transform-es2015-for-of "^6.23.0"
874
+    babel-plugin-transform-es2015-function-name "^6.22.0"
875
+    babel-plugin-transform-es2015-literals "^6.22.0"
876
+    babel-plugin-transform-es2015-modules-amd "^6.22.0"
877
+    babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
878
+    babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
879
+    babel-plugin-transform-es2015-modules-umd "^6.23.0"
880
+    babel-plugin-transform-es2015-object-super "^6.22.0"
881
+    babel-plugin-transform-es2015-parameters "^6.23.0"
882
+    babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
883
+    babel-plugin-transform-es2015-spread "^6.22.0"
884
+    babel-plugin-transform-es2015-sticky-regex "^6.22.0"
885
+    babel-plugin-transform-es2015-template-literals "^6.22.0"
886
+    babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
887
+    babel-plugin-transform-es2015-unicode-regex "^6.22.0"
888
+    babel-plugin-transform-exponentiation-operator "^6.22.0"
889
+    babel-plugin-transform-regenerator "^6.22.0"
890
+    browserslist "^2.1.2"
891
+    invariant "^2.2.2"
892
+    semver "^5.3.0"
893
+
894
+babel-preset-flow@^6.23.0:
895
+  version "6.23.0"
896
+  resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
897
+  dependencies:
898
+    babel-plugin-transform-flow-strip-types "^6.22.0"
899
+
900
+babel-preset-jest@^20.0.3:
901
+  version "20.0.3"
902
+  resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a"
903
+  dependencies:
904
+    babel-plugin-jest-hoist "^20.0.3"
905
+
906
+babel-preset-react-app@^3.1.1:
907
+  version "3.1.1"
908
+  resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-3.1.1.tgz#d3f06a79742f0e89d7afcb72e282d9809c850920"
909
+  dependencies:
910
+    babel-plugin-dynamic-import-node "1.1.0"
911
+    babel-plugin-syntax-dynamic-import "6.18.0"
912
+    babel-plugin-transform-class-properties "6.24.1"
913
+    babel-plugin-transform-es2015-destructuring "6.23.0"
914
+    babel-plugin-transform-object-rest-spread "6.26.0"
915
+    babel-plugin-transform-react-constant-elements "6.23.0"
916
+    babel-plugin-transform-react-jsx "6.24.1"
917
+    babel-plugin-transform-react-jsx-self "6.22.0"
918
+    babel-plugin-transform-react-jsx-source "6.22.0"
919
+    babel-plugin-transform-regenerator "6.26.0"
920
+    babel-plugin-transform-runtime "6.23.0"
921
+    babel-preset-env "1.6.1"
922
+    babel-preset-react "6.24.1"
923
+
924
+babel-preset-react@6.24.1:
925
+  version "6.24.1"
926
+  resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
927
+  dependencies:
928
+    babel-plugin-syntax-jsx "^6.3.13"
929
+    babel-plugin-transform-react-display-name "^6.23.0"
930
+    babel-plugin-transform-react-jsx "^6.24.1"
931
+    babel-plugin-transform-react-jsx-self "^6.22.0"
932
+    babel-plugin-transform-react-jsx-source "^6.22.0"
933
+    babel-preset-flow "^6.23.0"
934
+
935
+babel-register@^6.26.0:
936
+  version "6.26.0"
937
+  resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
938
+  dependencies:
939
+    babel-core "^6.26.0"
940
+    babel-runtime "^6.26.0"
941
+    core-js "^2.5.0"
942
+    home-or-tmp "^2.0.0"
943
+    lodash "^4.17.4"
944
+    mkdirp "^0.5.1"
945
+    source-map-support "^0.4.15"
946
+
947
+babel-runtime@6.26.0, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
948
+  version "6.26.0"
949
+  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
950
+  dependencies:
951
+    core-js "^2.4.0"
952
+    regenerator-runtime "^0.11.0"
953
+
954
+babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
955
+  version "6.26.0"
956
+  resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
957
+  dependencies:
958
+    babel-runtime "^6.26.0"
959
+    babel-traverse "^6.26.0"
960
+    babel-types "^6.26.0"
961
+    babylon "^6.18.0"
962
+    lodash "^4.17.4"
963
+
964
+babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
965
+  version "6.26.0"
966
+  resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
967
+  dependencies:
968
+    babel-code-frame "^6.26.0"
969
+    babel-messages "^6.23.0"
970
+    babel-runtime "^6.26.0"
971
+    babel-types "^6.26.0"
972
+    babylon "^6.18.0"
973
+    debug "^2.6.8"
974
+    globals "^9.18.0"
975
+    invariant "^2.2.2"
976
+    lodash "^4.17.4"
977
+
978
+babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26.0:
979
+  version "6.26.0"
980
+  resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
981
+  dependencies:
982
+    babel-runtime "^6.26.0"
983
+    esutils "^2.0.2"
984
+    lodash "^4.17.4"
985
+    to-fast-properties "^1.0.3"
986
+
987
+babylon@^6.17.0, babylon@^6.18.0:
988
+  version "6.18.0"
989
+  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
990
+
991
+balanced-match@^0.4.2:
992
+  version "0.4.2"
993
+  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
994
+
995
+balanced-match@^1.0.0:
996
+  version "1.0.0"
997
+  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
998
+
999
+base64-js@^1.0.2:
1000
+  version "1.2.3"
1001
+  resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.3.tgz#fb13668233d9614cf5fb4bce95a9ba4096cdf801"
1002
+
1003
+base@^0.11.1:
1004
+  version "0.11.2"
1005
+  resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1006
+  dependencies:
1007
+    cache-base "^1.0.1"
1008
+    class-utils "^0.3.5"
1009
+    component-emitter "^1.2.1"
1010
+    define-property "^1.0.0"
1011
+    isobject "^3.0.1"
1012
+    mixin-deep "^1.2.0"
1013
+    pascalcase "^0.1.1"
1014
+
1015
+batch@0.6.1:
1016
+  version "0.6.1"
1017
+  resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
1018
+
1019
+bcrypt-pbkdf@^1.0.0:
1020
+  version "1.0.1"
1021
+  resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
1022
+  dependencies:
1023
+    tweetnacl "^0.14.3"
1024
+
1025
+big.js@^3.1.3:
1026
+  version "3.2.0"
1027
+  resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
1028
+
1029
+binary-extensions@^1.0.0:
1030
+  version "1.11.0"
1031
+  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
1032
+
1033
+block-stream@*:
1034
+  version "0.0.9"
1035
+  resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
1036
+  dependencies:
1037
+    inherits "~2.0.0"
1038
+
1039
+bluebird@^3.4.7:
1040
+  version "3.5.1"
1041
+  resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
1042
+
1043
+bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
1044
+  version "4.11.8"
1045
+  resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
1046
+
1047
+body-parser@1.18.2:
1048
+  version "1.18.2"
1049
+  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
1050
+  dependencies:
1051
+    bytes "3.0.0"
1052
+    content-type "~1.0.4"
1053
+    debug "2.6.9"
1054
+    depd "~1.1.1"
1055
+    http-errors "~1.6.2"
1056
+    iconv-lite "0.4.19"
1057
+    on-finished "~2.3.0"
1058
+    qs "6.5.1"
1059
+    raw-body "2.3.2"
1060
+    type-is "~1.6.15"
1061
+
1062
+bonjour@^3.5.0:
1063
+  version "3.5.0"
1064
+  resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
1065
+  dependencies:
1066
+    array-flatten "^2.1.0"
1067
+    deep-equal "^1.0.1"
1068
+    dns-equal "^1.0.0"
1069
+    dns-txt "^2.0.2"
1070
+    multicast-dns "^6.0.1"
1071
+    multicast-dns-service-types "^1.1.0"
1072
+
1073
+boolbase@~1.0.0:
1074
+  version "1.0.0"
1075
+  resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1076
+
1077
+boom@2.x.x:
1078
+  version "2.10.1"
1079
+  resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
1080
+  dependencies:
1081
+    hoek "2.x.x"
1082
+
1083
+boom@4.x.x:
1084
+  version "4.3.1"
1085
+  resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
1086
+  dependencies:
1087
+    hoek "4.x.x"
1088
+
1089
+boom@5.x.x:
1090
+  version "5.2.0"
1091
+  resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
1092
+  dependencies:
1093
+    hoek "4.x.x"
1094
+
1095
+boxen@^1.2.1:
1096
+  version "1.3.0"
1097
+  resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
1098
+  dependencies:
1099
+    ansi-align "^2.0.0"
1100
+    camelcase "^4.0.0"
1101
+    chalk "^2.0.1"
1102
+    cli-boxes "^1.0.0"
1103
+    string-width "^2.0.0"
1104
+    term-size "^1.2.0"
1105
+    widest-line "^2.0.0"
1106
+
1107
+brace-expansion@^1.0.0, brace-expansion@^1.1.7:
1108
+  version "1.1.11"
1109
+  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1110
+  dependencies:
1111
+    balanced-match "^1.0.0"
1112
+    concat-map "0.0.1"
1113
+
1114
+braces@^1.8.2:
1115
+  version "1.8.5"
1116
+  resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1117
+  dependencies:
1118
+    expand-range "^1.8.1"
1119
+    preserve "^0.2.0"
1120
+    repeat-element "^1.1.2"
1121
+
1122
+braces@^2.3.0, braces@^2.3.1:
1123
+  version "2.3.1"
1124
+  resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb"
1125
+  dependencies:
1126
+    arr-flatten "^1.1.0"
1127
+    array-unique "^0.3.2"
1128
+    define-property "^1.0.0"
1129
+    extend-shallow "^2.0.1"
1130
+    fill-range "^4.0.0"
1131
+    isobject "^3.0.1"
1132
+    kind-of "^6.0.2"
1133
+    repeat-element "^1.1.2"
1134
+    snapdragon "^0.8.1"
1135
+    snapdragon-node "^2.0.1"
1136
+    split-string "^3.0.2"
1137
+    to-regex "^3.0.1"
1138
+
1139
+brorand@^1.0.1:
1140
+  version "1.1.0"
1141
+  resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
1142
+
1143
+browser-resolve@^1.11.2:
1144
+  version "1.11.2"
1145
+  resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
1146
+  dependencies:
1147
+    resolve "1.1.7"
1148
+
1149
+browserify-aes@^1.0.0, browserify-aes@^1.0.4:
1150
+  version "1.1.1"
1151
+  resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f"
1152
+  dependencies:
1153
+    buffer-xor "^1.0.3"
1154
+    cipher-base "^1.0.0"
1155
+    create-hash "^1.1.0"
1156
+    evp_bytestokey "^1.0.3"
1157
+    inherits "^2.0.1"
1158
+    safe-buffer "^5.0.1"
1159
+
1160
+browserify-cipher@^1.0.0:
1161
+  version "1.0.0"
1162
+  resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
1163
+  dependencies:
1164
+    browserify-aes "^1.0.4"
1165
+    browserify-des "^1.0.0"
1166
+    evp_bytestokey "^1.0.0"
1167
+
1168
+browserify-des@^1.0.0:
1169
+  version "1.0.0"
1170
+  resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
1171
+  dependencies:
1172
+    cipher-base "^1.0.1"
1173
+    des.js "^1.0.0"
1174
+    inherits "^2.0.1"
1175
+
1176
+browserify-rsa@^4.0.0:
1177
+  version "4.0.1"
1178
+  resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
1179
+  dependencies:
1180
+    bn.js "^4.1.0"
1181
+    randombytes "^2.0.1"
1182
+
1183
+browserify-sign@^4.0.0:
1184
+  version "4.0.4"
1185
+  resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
1186
+  dependencies:
1187
+    bn.js "^4.1.1"
1188
+    browserify-rsa "^4.0.0"
1189
+    create-hash "^1.1.0"
1190
+    create-hmac "^1.1.2"
1191
+    elliptic "^6.0.0"
1192
+    inherits "^2.0.1"
1193
+    parse-asn1 "^5.0.0"
1194
+
1195
+browserify-zlib@^0.2.0:
1196
+  version "0.2.0"
1197
+  resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
1198
+  dependencies:
1199
+    pako "~1.0.5"
1200
+
1201
+browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
1202
+  version "1.7.7"
1203
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
1204
+  dependencies:
1205
+    caniuse-db "^1.0.30000639"
1206
+    electron-to-chromium "^1.2.7"
1207
+
1208
+browserslist@^2.1.2, browserslist@^2.5.1:
1209
+  version "2.11.3"
1210
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2"
1211
+  dependencies:
1212
+    caniuse-lite "^1.0.30000792"
1213
+    electron-to-chromium "^1.3.30"
1214
+
1215
+bser@1.0.2:
1216
+  version "1.0.2"
1217
+  resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169"
1218
+  dependencies:
1219
+    node-int64 "^0.4.0"
1220
+
1221
+bser@^2.0.0:
1222
+  version "2.0.0"
1223
+  resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
1224
+  dependencies:
1225
+    node-int64 "^0.4.0"
1226
+
1227
+buffer-indexof@^1.0.0:
1228
+  version "1.1.1"
1229
+  resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
1230
+
1231
+buffer-xor@^1.0.3:
1232
+  version "1.0.3"
1233
+  resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
1234
+
1235
+buffer@^4.3.0:
1236
+  version "4.9.1"
1237
+  resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
1238
+  dependencies:
1239
+    base64-js "^1.0.2"
1240
+    ieee754 "^1.1.4"
1241
+    isarray "^1.0.0"
1242
+
1243
+builtin-modules@^1.0.0, builtin-modules@^1.1.1:
1244
+  version "1.1.1"
1245
+  resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
1246
+
1247
+builtin-status-codes@^3.0.0:
1248
+  version "3.0.0"
1249
+  resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
1250
+
1251
+bytes@3.0.0:
1252
+  version "3.0.0"
1253
+  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
1254
+
1255
+cache-base@^1.0.1:
1256
+  version "1.0.1"
1257
+  resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1258
+  dependencies:
1259
+    collection-visit "^1.0.0"
1260
+    component-emitter "^1.2.1"
1261
+    get-value "^2.0.6"
1262
+    has-value "^1.0.0"
1263
+    isobject "^3.0.1"
1264
+    set-value "^2.0.0"
1265
+    to-object-path "^0.3.0"
1266
+    union-value "^1.0.0"
1267
+    unset-value "^1.0.0"
1268
+
1269
+caller-path@^0.1.0:
1270
+  version "0.1.0"
1271
+  resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
1272
+  dependencies:
1273
+    callsites "^0.2.0"
1274
+
1275
+callsites@^0.2.0:
1276
+  version "0.2.0"
1277
+  resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
1278
+
1279
+callsites@^2.0.0:
1280
+  version "2.0.0"
1281
+  resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
1282
+
1283
+camel-case@3.0.x:
1284
+  version "3.0.0"
1285
+  resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
1286
+  dependencies:
1287
+    no-case "^2.2.0"
1288
+    upper-case "^1.1.1"
1289
+
1290
+camelcase-keys@^2.0.0:
1291
+  version "2.1.0"
1292
+  resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
1293
+  dependencies:
1294
+    camelcase "^2.0.0"
1295
+    map-obj "^1.0.0"
1296
+
1297
+camelcase@^1.0.2:
1298
+  version "1.2.1"
1299
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
1300
+
1301
+camelcase@^2.0.0:
1302
+  version "2.1.1"
1303
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
1304
+
1305
+camelcase@^3.0.0:
1306
+  version "3.0.0"
1307
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
1308
+
1309
+camelcase@^4.0.0, camelcase@^4.1.0:
1310
+  version "4.1.0"
1311
+  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
1312
+
1313
+caniuse-api@^1.5.2:
1314
+  version "1.6.1"
1315
+  resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
1316
+  dependencies:
1317
+    browserslist "^1.3.6"
1318
+    caniuse-db "^1.0.30000529"
1319
+    lodash.memoize "^4.1.2"
1320
+    lodash.uniq "^4.5.0"
1321
+
1322
+caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
1323
+  version "1.0.30000811"
1324
+  resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000811.tgz#19efb9238393d40078332c34485c818d641c4305"
1325
+
1326
+caniuse-lite@^1.0.30000748, caniuse-lite@^1.0.30000792:
1327
+  version "1.0.30000811"
1328
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000811.tgz#0b6e40f2efccc27bd3cb52f91ee7ca4673d77d10"
1329
+
1330
+capture-stack-trace@^1.0.0:
1331
+  version "1.0.0"
1332
+  resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
1333
+
1334
+case-sensitive-paths-webpack-plugin@2.1.1:
1335
+  version "2.1.1"
1336
+  resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.1.tgz#3d29ced8c1f124bf6f53846fb3f5894731fdc909"
1337
+
1338
+caseless@~0.12.0:
1339
+  version "0.12.0"
1340
+  resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1341
+
1342
+center-align@^0.1.1:
1343
+  version "0.1.3"
1344
+  resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
1345
+  dependencies:
1346
+    align-text "^0.1.3"
1347
+    lazy-cache "^1.0.3"
1348
+
1349
+chalk@1.1.3, chalk@^1.1.3:
1350
+  version "1.1.3"
1351
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1352
+  dependencies:
1353
+    ansi-styles "^2.2.1"
1354
+    escape-string-regexp "^1.0.2"
1355
+    has-ansi "^2.0.0"
1356
+    strip-ansi "^3.0.0"
1357
+    supports-color "^2.0.0"
1358
+
1359
+chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1:
1360
+  version "2.3.2"
1361
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65"
1362
+  dependencies:
1363
+    ansi-styles "^3.2.1"
1364
+    escape-string-regexp "^1.0.5"
1365
+    supports-color "^5.3.0"
1366
+
1367
+chardet@^0.4.0:
1368
+  version "0.4.2"
1369
+  resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
1370
+
1371
+chokidar@^1.6.0:
1372
+  version "1.7.0"
1373
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1374
+  dependencies:
1375
+    anymatch "^1.3.0"
1376
+    async-each "^1.0.0"
1377
+    glob-parent "^2.0.0"
1378
+    inherits "^2.0.1"
1379
+    is-binary-path "^1.0.0"
1380
+    is-glob "^2.0.0"
1381
+    path-is-absolute "^1.0.0"
1382
+    readdirp "^2.0.0"
1383
+  optionalDependencies:
1384
+    fsevents "^1.0.0"
1385
+
1386
+chokidar@^2.0.2:
1387
+  version "2.0.2"
1388
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7"
1389
+  dependencies:
1390
+    anymatch "^2.0.0"
1391
+    async-each "^1.0.0"
1392
+    braces "^2.3.0"
1393
+    glob-parent "^3.1.0"
1394
+    inherits "^2.0.1"
1395
+    is-binary-path "^1.0.0"
1396
+    is-glob "^4.0.0"
1397
+    normalize-path "^2.1.1"
1398
+    path-is-absolute "^1.0.0"
1399
+    readdirp "^2.0.0"
1400
+    upath "^1.0.0"
1401
+  optionalDependencies:
1402
+    fsevents "^1.0.0"
1403
+
1404
+ci-info@^1.0.0:
1405
+  version "1.1.2"
1406
+  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4"
1407
+
1408
+cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
1409
+  version "1.0.4"
1410
+  resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
1411
+  dependencies:
1412
+    inherits "^2.0.1"
1413
+    safe-buffer "^5.0.1"
1414
+
1415
+circular-json@^0.3.1:
1416
+  version "0.3.3"
1417
+  resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
1418
+
1419
+clap@^1.0.9:
1420
+  version "1.2.3"
1421
+  resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
1422
+  dependencies:
1423
+    chalk "^1.1.3"
1424
+
1425
+class-utils@^0.3.5:
1426
+  version "0.3.6"
1427
+  resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1428
+  dependencies:
1429
+    arr-union "^3.1.0"
1430
+    define-property "^0.2.5"
1431
+    isobject "^3.0.0"
1432
+    static-extend "^0.1.1"
1433
+
1434
+clean-css@4.1.x:
1435
+  version "4.1.9"
1436
+  resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301"
1437
+  dependencies:
1438
+    source-map "0.5.x"
1439
+
1440
+cli-boxes@^1.0.0:
1441
+  version "1.0.0"
1442
+  resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
1443
+
1444
+cli-cursor@^2.1.0:
1445
+  version "2.1.0"
1446
+  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1447
+  dependencies:
1448
+    restore-cursor "^2.0.0"
1449
+
1450
+cli-width@^2.0.0:
1451
+  version "2.2.0"
1452
+  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
1453
+
1454
+cliui@^2.1.0:
1455
+  version "2.1.0"
1456
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1457
+  dependencies:
1458
+    center-align "^0.1.1"
1459
+    right-align "^0.1.1"
1460
+    wordwrap "0.0.2"
1461
+
1462
+cliui@^3.2.0:
1463
+  version "3.2.0"
1464
+  resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
1465
+  dependencies:
1466
+    string-width "^1.0.1"
1467
+    strip-ansi "^3.0.1"
1468
+    wrap-ansi "^2.0.0"
1469
+
1470
+clone@^1.0.2:
1471
+  version "1.0.3"
1472
+  resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f"
1473
+
1474
+co@^4.6.0:
1475
+  version "4.6.0"
1476
+  resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1477
+
1478
+coa@~1.0.1:
1479
+  version "1.0.4"
1480
+  resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
1481
+  dependencies:
1482
+    q "^1.1.2"
1483
+
1484
+code-point-at@^1.0.0:
1485
+  version "1.1.0"
1486
+  resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1487
+
1488
+collection-visit@^1.0.0:
1489
+  version "1.0.0"
1490
+  resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1491
+  dependencies:
1492
+    map-visit "^1.0.0"
1493
+    object-visit "^1.0.0"
1494
+
1495
+color-convert@^1.3.0, color-convert@^1.9.0:
1496
+  version "1.9.1"
1497
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
1498
+  dependencies:
1499
+    color-name "^1.1.1"
1500
+
1501
+color-name@^1.0.0, color-name@^1.1.1:
1502
+  version "1.1.3"
1503
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1504
+
1505
+color-string@^0.3.0:
1506
+  version "0.3.0"
1507
+  resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
1508
+  dependencies:
1509
+    color-name "^1.0.0"
1510
+
1511
+color@^0.11.0:
1512
+  version "0.11.4"
1513
+  resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
1514
+  dependencies:
1515
+    clone "^1.0.2"
1516
+    color-convert "^1.3.0"
1517
+    color-string "^0.3.0"
1518
+
1519
+colormin@^1.0.5:
1520
+  version "1.1.2"
1521
+  resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
1522
+  dependencies:
1523
+    color "^0.11.0"
1524
+    css-color-names "0.0.4"
1525
+    has "^1.0.1"
1526
+
1527
+colors@~1.1.2:
1528
+  version "1.1.2"
1529
+  resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
1530
+
1531
+combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5:
1532
+  version "1.0.6"
1533
+  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
1534
+  dependencies:
1535
+    delayed-stream "~1.0.0"
1536
+
1537
+commander@2.14.x, commander@^2.11.0, commander@~2.14.1:
1538
+  version "2.14.1"
1539
+  resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa"
1540
+
1541
+commondir@^1.0.1:
1542
+  version "1.0.1"
1543
+  resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1544
+
1545
+component-emitter@^1.2.1:
1546
+  version "1.2.1"
1547
+  resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1548
+
1549
+compressible@~2.0.13:
1550
+  version "2.0.13"
1551
+  resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.13.tgz#0d1020ab924b2fdb4d6279875c7d6daba6baa7a9"
1552
+  dependencies:
1553
+    mime-db ">= 1.33.0 < 2"
1554
+
1555
+compression@^1.5.2:
1556
+  version "1.7.2"
1557
+  resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.2.tgz#aaffbcd6aaf854b44ebb280353d5ad1651f59a69"
1558
+  dependencies:
1559
+    accepts "~1.3.4"
1560
+    bytes "3.0.0"
1561
+    compressible "~2.0.13"
1562
+    debug "2.6.9"
1563
+    on-headers "~1.0.1"
1564
+    safe-buffer "5.1.1"
1565
+    vary "~1.1.2"
1566
+
1567
+concat-map@0.0.1:
1568
+  version "0.0.1"
1569
+  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1570
+
1571
+concat-stream@^1.6.0:
1572
+  version "1.6.1"
1573
+  resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26"
1574
+  dependencies:
1575
+    inherits "^2.0.3"
1576
+    readable-stream "^2.2.2"
1577
+    typedarray "^0.0.6"
1578
+
1579
+configstore@^3.0.0:
1580
+  version "3.1.1"
1581
+  resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90"
1582
+  dependencies:
1583
+    dot-prop "^4.1.0"
1584
+    graceful-fs "^4.1.2"
1585
+    make-dir "^1.0.0"
1586
+    unique-string "^1.0.0"
1587
+    write-file-atomic "^2.0.0"
1588
+    xdg-basedir "^3.0.0"
1589
+
1590
+connect-history-api-fallback@^1.3.0:
1591
+  version "1.5.0"
1592
+  resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a"
1593
+
1594
+console-browserify@^1.1.0:
1595
+  version "1.1.0"
1596
+  resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
1597
+  dependencies:
1598
+    date-now "^0.1.4"
1599
+
1600
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1601
+  version "1.1.0"
1602
+  resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1603
+
1604
+constants-browserify@^1.0.0:
1605
+  version "1.0.0"
1606
+  resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1607
+
1608
+contains-path@^0.1.0:
1609
+  version "0.1.0"
1610
+  resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1611
+
1612
+content-disposition@0.5.2:
1613
+  version "0.5.2"
1614
+  resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
1615
+
1616
+content-type-parser@^1.0.1:
1617
+  version "1.0.2"
1618
+  resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
1619
+
1620
+content-type@~1.0.4:
1621
+  version "1.0.4"
1622
+  resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
1623
+
1624
+convert-source-map@^1.4.0, convert-source-map@^1.5.0:
1625
+  version "1.5.1"
1626
+  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
1627
+
1628
+cookie-signature@1.0.6:
1629
+  version "1.0.6"
1630
+  resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
1631
+
1632
+cookie@0.3.1:
1633
+  version "0.3.1"
1634
+  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
1635
+
1636
+copy-descriptor@^0.1.0:
1637
+  version "0.1.1"
1638
+  resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1639
+
1640
+core-js@^1.0.0:
1641
+  version "1.2.7"
1642
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1643
+
1644
+core-js@^2.4.0, core-js@^2.5.0:
1645
+  version "2.5.3"
1646
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
1647
+
1648
+core-util-is@1.0.2, core-util-is@~1.0.0:
1649
+  version "1.0.2"
1650
+  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1651
+
1652
+cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
1653
+  version "2.2.2"
1654
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
1655
+  dependencies:
1656
+    is-directory "^0.3.1"
1657
+    js-yaml "^3.4.3"
1658
+    minimist "^1.2.0"
1659
+    object-assign "^4.1.0"
1660
+    os-homedir "^1.0.1"
1661
+    parse-json "^2.2.0"
1662
+    require-from-string "^1.1.0"
1663
+
1664
+create-ecdh@^4.0.0:
1665
+  version "4.0.0"
1666
+  resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
1667
+  dependencies:
1668
+    bn.js "^4.1.0"
1669
+    elliptic "^6.0.0"
1670
+
1671
+create-error-class@^3.0.0:
1672
+  version "3.0.2"
1673
+  resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
1674
+  dependencies:
1675
+    capture-stack-trace "^1.0.0"
1676
+
1677
+create-hash@^1.1.0, create-hash@^1.1.2:
1678
+  version "1.1.3"
1679
+  resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
1680
+  dependencies:
1681
+    cipher-base "^1.0.1"
1682
+    inherits "^2.0.1"
1683
+    ripemd160 "^2.0.0"
1684
+    sha.js "^2.4.0"
1685
+
1686
+create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
1687
+  version "1.1.6"
1688
+  resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
1689
+  dependencies:
1690
+    cipher-base "^1.0.3"
1691
+    create-hash "^1.1.0"
1692
+    inherits "^2.0.1"
1693
+    ripemd160 "^2.0.0"
1694
+    safe-buffer "^5.0.1"
1695
+    sha.js "^2.4.8"
1696
+
1697
+cross-spawn@5.1.0, cross-spawn@^5.0.1, cross-spawn@^5.1.0:
1698
+  version "5.1.0"
1699
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1700
+  dependencies:
1701
+    lru-cache "^4.0.1"
1702
+    shebang-command "^1.2.0"
1703
+    which "^1.2.9"
1704
+
1705
+cryptiles@2.x.x:
1706
+  version "2.0.5"
1707
+  resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1708
+  dependencies:
1709
+    boom "2.x.x"
1710
+
1711
+cryptiles@3.x.x:
1712
+  version "3.1.2"
1713
+  resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
1714
+  dependencies:
1715
+    boom "5.x.x"
1716
+
1717
+crypto-browserify@^3.11.0:
1718
+  version "3.12.0"
1719
+  resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
1720
+  dependencies:
1721
+    browserify-cipher "^1.0.0"
1722
+    browserify-sign "^4.0.0"
1723
+    create-ecdh "^4.0.0"
1724
+    create-hash "^1.1.0"
1725
+    create-hmac "^1.1.0"
1726
+    diffie-hellman "^5.0.0"
1727
+    inherits "^2.0.1"
1728
+    pbkdf2 "^3.0.3"
1729
+    public-encrypt "^4.0.0"
1730
+    randombytes "^2.0.0"
1731
+    randomfill "^1.0.3"
1732
+
1733
+crypto-random-string@^1.0.0:
1734
+  version "1.0.0"
1735
+  resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
1736
+
1737
+css-color-names@0.0.4:
1738
+  version "0.0.4"
1739
+  resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
1740
+
1741
+css-loader@0.28.7:
1742
+  version "0.28.7"
1743
+  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b"
1744
+  dependencies:
1745
+    babel-code-frame "^6.11.0"
1746
+    css-selector-tokenizer "^0.7.0"
1747
+    cssnano ">=2.6.1 <4"
1748
+    icss-utils "^2.1.0"
1749
+    loader-utils "^1.0.2"
1750
+    lodash.camelcase "^4.3.0"
1751
+    object-assign "^4.0.1"
1752
+    postcss "^5.0.6"
1753
+    postcss-modules-extract-imports "^1.0.0"
1754
+    postcss-modules-local-by-default "^1.0.1"
1755
+    postcss-modules-scope "^1.0.0"
1756
+    postcss-modules-values "^1.1.0"
1757
+    postcss-value-parser "^3.3.0"
1758
+    source-list-map "^2.0.0"
1759
+
1760
+css-select@^1.1.0:
1761
+  version "1.2.0"
1762
+  resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
1763
+  dependencies:
1764
+    boolbase "~1.0.0"
1765
+    css-what "2.1"
1766
+    domutils "1.5.1"
1767
+    nth-check "~1.0.1"
1768
+
1769
+css-selector-tokenizer@^0.7.0:
1770
+  version "0.7.0"
1771
+  resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86"
1772
+  dependencies:
1773
+    cssesc "^0.1.0"
1774
+    fastparse "^1.1.1"
1775
+    regexpu-core "^1.0.0"
1776
+
1777
+css-what@2.1:
1778
+  version "2.1.0"
1779
+  resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
1780
+
1781
+cssesc@^0.1.0:
1782
+  version "0.1.0"
1783
+  resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
1784
+
1785
+"cssnano@>=2.6.1 <4":
1786
+  version "3.10.0"
1787
+  resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
1788
+  dependencies:
1789
+    autoprefixer "^6.3.1"
1790
+    decamelize "^1.1.2"
1791
+    defined "^1.0.0"
1792
+    has "^1.0.1"
1793
+    object-assign "^4.0.1"
1794
+    postcss "^5.0.14"
1795
+    postcss-calc "^5.2.0"
1796
+    postcss-colormin "^2.1.8"
1797
+    postcss-convert-values "^2.3.4"
1798
+    postcss-discard-comments "^2.0.4"
1799
+    postcss-discard-duplicates "^2.0.1"
1800
+    postcss-discard-empty "^2.0.1"
1801
+    postcss-discard-overridden "^0.1.1"
1802
+    postcss-discard-unused "^2.2.1"
1803
+    postcss-filter-plugins "^2.0.0"
1804
+    postcss-merge-idents "^2.1.5"
1805
+    postcss-merge-longhand "^2.0.1"
1806
+    postcss-merge-rules "^2.0.3"
1807
+    postcss-minify-font-values "^1.0.2"
1808
+    postcss-minify-gradients "^1.0.1"
1809
+    postcss-minify-params "^1.0.4"
1810
+    postcss-minify-selectors "^2.0.4"
1811
+    postcss-normalize-charset "^1.1.0"
1812
+    postcss-normalize-url "^3.0.7"
1813
+    postcss-ordered-values "^2.1.0"
1814
+    postcss-reduce-idents "^2.2.2"
1815
+    postcss-reduce-initial "^1.0.0"
1816
+    postcss-reduce-transforms "^1.0.3"
1817
+    postcss-svgo "^2.1.1"
1818
+    postcss-unique-selectors "^2.0.2"
1819
+    postcss-value-parser "^3.2.3"
1820
+    postcss-zindex "^2.0.1"
1821
+
1822
+csso@~2.3.1:
1823
+  version "2.3.2"
1824
+  resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
1825
+  dependencies:
1826
+    clap "^1.0.9"
1827
+    source-map "^0.5.3"
1828
+
1829
+cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
1830
+  version "0.3.2"
1831
+  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
1832
+
1833
+"cssstyle@>= 0.2.37 < 0.3.0":
1834
+  version "0.2.37"
1835
+  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
1836
+  dependencies:
1837
+    cssom "0.3.x"
1838
+
1839
+currently-unhandled@^0.4.1:
1840
+  version "0.4.1"
1841
+  resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1842
+  dependencies:
1843
+    array-find-index "^1.0.1"
1844
+
1845
+d@1:
1846
+  version "1.0.0"
1847
+  resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
1848
+  dependencies:
1849
+    es5-ext "^0.10.9"
1850
+
1851
+damerau-levenshtein@^1.0.0:
1852
+  version "1.0.4"
1853
+  resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514"
1854
+
1855
+dashdash@^1.12.0:
1856
+  version "1.14.1"
1857
+  resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1858
+  dependencies:
1859
+    assert-plus "^1.0.0"
1860
+
1861
+date-now@^0.1.4:
1862
+  version "0.1.4"
1863
+  resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1864
+
1865
+debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9:
1866
+  version "2.6.9"
1867
+  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1868
+  dependencies:
1869
+    ms "2.0.0"
1870
+
1871
+debug@^3.0.1, debug@^3.1.0:
1872
+  version "3.1.0"
1873
+  resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1874
+  dependencies:
1875
+    ms "2.0.0"
1876
+
1877
+decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1878
+  version "1.2.0"
1879
+  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1880
+
1881
+decode-uri-component@^0.2.0:
1882
+  version "0.2.0"
1883
+  resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1884
+
1885
+deep-equal@^1.0.1:
1886
+  version "1.0.1"
1887
+  resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
1888
+
1889
+deep-extend@~0.4.0:
1890
+  version "0.4.2"
1891
+  resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1892
+
1893
+deep-is@~0.1.3:
1894
+  version "0.1.3"
1895
+  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1896
+
1897
+default-require-extensions@^1.0.0:
1898
+  version "1.0.0"
1899
+  resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
1900
+  dependencies:
1901
+    strip-bom "^2.0.0"
1902
+
1903
+define-properties@^1.1.2:
1904
+  version "1.1.2"
1905
+  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1906
+  dependencies:
1907
+    foreach "^2.0.5"
1908
+    object-keys "^1.0.8"
1909
+
1910
+define-property@^0.2.5:
1911
+  version "0.2.5"
1912
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1913
+  dependencies:
1914
+    is-descriptor "^0.1.0"
1915
+
1916
+define-property@^1.0.0:
1917
+  version "1.0.0"
1918
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1919
+  dependencies:
1920
+    is-descriptor "^1.0.0"
1921
+
1922
+define-property@^2.0.2:
1923
+  version "2.0.2"
1924
+  resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1925
+  dependencies:
1926
+    is-descriptor "^1.0.2"
1927
+    isobject "^3.0.1"
1928
+
1929
+defined@^1.0.0:
1930
+  version "1.0.0"
1931
+  resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
1932
+
1933
+del@^2.0.2, del@^2.2.2:
1934
+  version "2.2.2"
1935
+  resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1936
+  dependencies:
1937
+    globby "^5.0.0"
1938
+    is-path-cwd "^1.0.0"
1939
+    is-path-in-cwd "^1.0.0"
1940
+    object-assign "^4.0.1"
1941
+    pify "^2.0.0"
1942
+    pinkie-promise "^2.0.0"
1943
+    rimraf "^2.2.8"
1944
+
1945
+del@^3.0.0:
1946
+  version "3.0.0"
1947
+  resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
1948
+  dependencies:
1949
+    globby "^6.1.0"
1950
+    is-path-cwd "^1.0.0"
1951
+    is-path-in-cwd "^1.0.0"
1952
+    p-map "^1.1.1"
1953
+    pify "^3.0.0"
1954
+    rimraf "^2.2.8"
1955
+
1956
+delayed-stream@~1.0.0:
1957
+  version "1.0.0"
1958
+  resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1959
+
1960
+delegates@^1.0.0:
1961
+  version "1.0.0"
1962
+  resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1963
+
1964
+depd@1.1.1:
1965
+  version "1.1.1"
1966
+  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
1967
+
1968
+depd@~1.1.1:
1969
+  version "1.1.2"
1970
+  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
1971
+
1972
+des.js@^1.0.0:
1973
+  version "1.0.0"
1974
+  resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1975
+  dependencies:
1976
+    inherits "^2.0.1"
1977
+    minimalistic-assert "^1.0.0"
1978
+
1979
+destroy@~1.0.4:
1980
+  version "1.0.4"
1981
+  resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1982
+
1983
+detect-indent@^4.0.0:
1984
+  version "4.0.0"
1985
+  resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1986
+  dependencies:
1987
+    repeating "^2.0.0"
1988
+
1989
+detect-libc@^1.0.2:
1990
+  version "1.0.3"
1991
+  resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1992
+
1993
+detect-node@^2.0.3:
1994
+  version "2.0.3"
1995
+  resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127"
1996
+
1997
+detect-port-alt@1.1.5:
1998
+  version "1.1.5"
1999
+  resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.5.tgz#a1aa8fc805a4a5df9b905b7ddc7eed036bcce889"
2000
+  dependencies:
2001
+    address "^1.0.1"
2002
+    debug "^2.6.0"
2003
+
2004
+diff@^3.2.0:
2005
+  version "3.4.0"
2006
+  resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c"
2007
+
2008
+diffie-hellman@^5.0.0:
2009
+  version "5.0.2"
2010
+  resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
2011
+  dependencies:
2012
+    bn.js "^4.1.0"
2013
+    miller-rabin "^4.0.0"
2014
+    randombytes "^2.0.0"
2015
+
2016
+dns-equal@^1.0.0:
2017
+  version "1.0.0"
2018
+  resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
2019
+
2020
+dns-packet@^1.3.1:
2021
+  version "1.3.1"
2022
+  resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a"
2023
+  dependencies:
2024
+    ip "^1.1.0"
2025
+    safe-buffer "^5.0.1"
2026
+
2027
+dns-txt@^2.0.2:
2028
+  version "2.0.2"
2029
+  resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
2030
+  dependencies:
2031
+    buffer-indexof "^1.0.0"
2032
+
2033
+doctrine@1.5.0:
2034
+  version "1.5.0"
2035
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
2036
+  dependencies:
2037
+    esutils "^2.0.2"
2038
+    isarray "^1.0.0"
2039
+
2040
+doctrine@^2.0.0:
2041
+  version "2.1.0"
2042
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
2043
+  dependencies:
2044
+    esutils "^2.0.2"
2045
+
2046
+dom-converter@~0.1:
2047
+  version "0.1.4"
2048
+  resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b"
2049
+  dependencies:
2050
+    utila "~0.3"
2051
+
2052
+dom-serializer@0:
2053
+  version "0.1.0"
2054
+  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
2055
+  dependencies:
2056
+    domelementtype "~1.1.1"
2057
+    entities "~1.1.1"
2058
+
2059
+dom-urls@^1.1.0:
2060
+  version "1.1.0"
2061
+  resolved "https://registry.yarnpkg.com/dom-urls/-/dom-urls-1.1.0.tgz#001ddf81628cd1e706125c7176f53ccec55d918e"
2062
+  dependencies:
2063
+    urijs "^1.16.1"
2064
+
2065
+domain-browser@^1.1.1:
2066
+  version "1.2.0"
2067
+  resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
2068
+
2069
+domelementtype@1:
2070
+  version "1.3.0"
2071
+  resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
2072
+
2073
+domelementtype@~1.1.1:
2074
+  version "1.1.3"
2075
+  resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
2076
+
2077
+domhandler@2.1:
2078
+  version "2.1.0"
2079
+  resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594"
2080
+  dependencies:
2081
+    domelementtype "1"
2082
+
2083
+domutils@1.1:
2084
+  version "1.1.6"
2085
+  resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485"
2086
+  dependencies:
2087
+    domelementtype "1"
2088
+
2089
+domutils@1.5.1:
2090
+  version "1.5.1"
2091
+  resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
2092
+  dependencies:
2093
+    dom-serializer "0"
2094
+    domelementtype "1"
2095
+
2096
+dot-prop@^4.1.0:
2097
+  version "4.2.0"
2098
+  resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
2099
+  dependencies:
2100
+    is-obj "^1.0.0"
2101
+
2102
+dotenv-expand@4.2.0:
2103
+  version "4.2.0"
2104
+  resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-4.2.0.tgz#def1f1ca5d6059d24a766e587942c21106ce1275"
2105
+
2106
+dotenv@4.0.0:
2107
+  version "4.0.0"
2108
+  resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d"
2109
+
2110
+duplexer3@^0.1.4:
2111
+  version "0.1.4"
2112
+  resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
2113
+
2114
+duplexer@^0.1.1:
2115
+  version "0.1.1"
2116
+  resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
2117
+
2118
+ecc-jsbn@~0.1.1:
2119
+  version "0.1.1"
2120
+  resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
2121
+  dependencies:
2122
+    jsbn "~0.1.0"
2123
+
2124
+ee-first@1.1.1:
2125
+  version "1.1.1"
2126
+  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
2127
+
2128
+electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.30:
2129
+  version "1.3.34"
2130
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.34.tgz#d93498f40391bb0c16a603d8241b9951404157ed"
2131
+
2132
+elliptic@^6.0.0:
2133
+  version "6.4.0"
2134
+  resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
2135
+  dependencies:
2136
+    bn.js "^4.4.0"
2137
+    brorand "^1.0.1"
2138
+    hash.js "^1.0.0"
2139
+    hmac-drbg "^1.0.0"
2140
+    inherits "^2.0.1"
2141
+    minimalistic-assert "^1.0.0"
2142
+    minimalistic-crypto-utils "^1.0.0"
2143
+
2144
+emoji-regex@^6.1.0:
2145
+  version "6.5.1"
2146
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2"
2147
+
2148
+emojis-list@^2.0.0:
2149
+  version "2.1.0"
2150
+  resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
2151
+
2152
+encodeurl@~1.0.1:
2153
+  version "1.0.2"
2154
+  resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
2155
+
2156
+encoding@^0.1.11:
2157
+  version "0.1.12"
2158
+  resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
2159
+  dependencies:
2160
+    iconv-lite "~0.4.13"
2161
+
2162
+enhanced-resolve@^3.4.0:
2163
+  version "3.4.1"
2164
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
2165
+  dependencies:
2166
+    graceful-fs "^4.1.2"
2167
+    memory-fs "^0.4.0"
2168
+    object-assign "^4.0.1"
2169
+    tapable "^0.2.7"
2170
+
2171
+entities@~1.1.1:
2172
+  version "1.1.1"
2173
+  resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
2174
+
2175
+errno@^0.1.3, errno@~0.1.7:
2176
+  version "0.1.7"
2177
+  resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
2178
+  dependencies:
2179
+    prr "~1.0.1"
2180
+
2181
+error-ex@^1.2.0:
2182
+  version "1.3.1"
2183
+  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
2184
+  dependencies:
2185
+    is-arrayish "^0.2.1"
2186
+
2187
+es-abstract@^1.7.0:
2188
+  version "1.10.0"
2189
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
2190
+  dependencies:
2191
+    es-to-primitive "^1.1.1"
2192
+    function-bind "^1.1.1"
2193
+    has "^1.0.1"
2194
+    is-callable "^1.1.3"
2195
+    is-regex "^1.0.4"
2196
+
2197
+es-to-primitive@^1.1.1:
2198
+  version "1.1.1"
2199
+  resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
2200
+  dependencies:
2201
+    is-callable "^1.1.1"
2202
+    is-date-object "^1.0.1"
2203
+    is-symbol "^1.0.1"
2204
+
2205
+es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
2206
+  version "0.10.39"
2207
+  resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.39.tgz#fca21b67559277ca4ac1a1ed7048b107b6f76d87"
2208
+  dependencies:
2209
+    es6-iterator "~2.0.3"
2210
+    es6-symbol "~3.1.1"
2211
+
2212
+es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3:
2213
+  version "2.0.3"
2214
+  resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
2215
+  dependencies:
2216
+    d "1"
2217
+    es5-ext "^0.10.35"
2218
+    es6-symbol "^3.1.1"
2219
+
2220
+es6-map@^0.1.3:
2221
+  version "0.1.5"
2222
+  resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
2223
+  dependencies:
2224
+    d "1"
2225
+    es5-ext "~0.10.14"
2226
+    es6-iterator "~2.0.1"
2227
+    es6-set "~0.1.5"
2228
+    es6-symbol "~3.1.1"
2229
+    event-emitter "~0.3.5"
2230
+
2231
+es6-promise@^4.0.5:
2232
+  version "4.2.4"
2233
+  resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29"
2234
+
2235
+es6-set@~0.1.5:
2236
+  version "0.1.5"
2237
+  resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
2238
+  dependencies:
2239
+    d "1"
2240
+    es5-ext "~0.10.14"
2241
+    es6-iterator "~2.0.1"
2242
+    es6-symbol "3.1.1"
2243
+    event-emitter "~0.3.5"
2244
+
2245
+es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
2246
+  version "3.1.1"
2247
+  resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
2248
+  dependencies:
2249
+    d "1"
2250
+    es5-ext "~0.10.14"
2251
+
2252
+es6-weak-map@^2.0.1:
2253
+  version "2.0.2"
2254
+  resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
2255
+  dependencies:
2256
+    d "1"
2257
+    es5-ext "^0.10.14"
2258
+    es6-iterator "^2.0.1"
2259
+    es6-symbol "^3.1.1"
2260
+
2261
+escape-html@~1.0.3:
2262
+  version "1.0.3"
2263
+  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
2264
+
2265
+escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
2266
+  version "1.0.5"
2267
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
2268
+
2269
+escodegen@^1.6.1:
2270
+  version "1.9.1"
2271
+  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2"
2272
+  dependencies:
2273
+    esprima "^3.1.3"
2274
+    estraverse "^4.2.0"
2275
+    esutils "^2.0.2"
2276
+    optionator "^0.8.1"
2277
+  optionalDependencies:
2278
+    source-map "~0.6.1"
2279
+
2280
+escope@^3.6.0:
2281
+  version "3.6.0"
2282
+  resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
2283
+  dependencies:
2284
+    es6-map "^0.1.3"
2285
+    es6-weak-map "^2.0.1"
2286
+    esrecurse "^4.1.0"
2287
+    estraverse "^4.1.1"
2288
+
2289
+eslint-config-react-app@^2.1.0:
2290
+  version "2.1.0"
2291
+  resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz#23c909f71cbaff76b945b831d2d814b8bde169eb"
2292
+
2293
+eslint-import-resolver-node@^0.3.1:
2294
+  version "0.3.2"
2295
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
2296
+  dependencies:
2297
+    debug "^2.6.9"
2298
+    resolve "^1.5.0"
2299
+
2300
+eslint-loader@1.9.0:
2301
+  version "1.9.0"
2302
+  resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.9.0.tgz#7e1be9feddca328d3dcfaef1ad49d5beffe83a13"
2303
+  dependencies:
2304
+    loader-fs-cache "^1.0.0"
2305
+    loader-utils "^1.0.2"
2306
+    object-assign "^4.0.1"
2307
+    object-hash "^1.1.4"
2308
+    rimraf "^2.6.1"
2309
+
2310
+eslint-module-utils@^2.1.1:
2311
+  version "2.1.1"
2312
+  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
2313
+  dependencies:
2314
+    debug "^2.6.8"
2315
+    pkg-dir "^1.0.0"
2316
+
2317
+eslint-plugin-flowtype@2.39.1:
2318
+  version "2.39.1"
2319
+  resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz#b5624622a0388bcd969f4351131232dcb9649cd5"
2320
+  dependencies:
2321
+    lodash "^4.15.0"
2322
+
2323
+eslint-plugin-import@2.8.0:
2324
+  version "2.8.0"
2325
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894"
2326
+  dependencies:
2327
+    builtin-modules "^1.1.1"
2328
+    contains-path "^0.1.0"
2329
+    debug "^2.6.8"
2330
+    doctrine "1.5.0"
2331
+    eslint-import-resolver-node "^0.3.1"
2332
+    eslint-module-utils "^2.1.1"
2333
+    has "^1.0.1"
2334
+    lodash.cond "^4.3.0"
2335
+    minimatch "^3.0.3"
2336
+    read-pkg-up "^2.0.0"
2337
+
2338
+eslint-plugin-jsx-a11y@5.1.1:
2339
+  version "5.1.1"
2340
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1"
2341
+  dependencies:
2342
+    aria-query "^0.7.0"
2343
+    array-includes "^3.0.3"
2344
+    ast-types-flow "0.0.7"
2345
+    axobject-query "^0.1.0"
2346
+    damerau-levenshtein "^1.0.0"
2347
+    emoji-regex "^6.1.0"
2348
+    jsx-ast-utils "^1.4.0"
2349
+
2350
+eslint-plugin-react@7.4.0:
2351
+  version "7.4.0"
2352
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz#300a95861b9729c087d362dd64abcc351a74364a"
2353
+  dependencies:
2354
+    doctrine "^2.0.0"
2355
+    has "^1.0.1"
2356
+    jsx-ast-utils "^2.0.0"
2357
+    prop-types "^15.5.10"
2358
+
2359
+eslint-scope@^3.7.1:
2360
+  version "3.7.1"
2361
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
2362
+  dependencies:
2363
+    esrecurse "^4.1.0"
2364
+    estraverse "^4.1.1"
2365
+
2366
+eslint@4.10.0:
2367
+  version "4.10.0"
2368
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.10.0.tgz#f25d0d7955c81968c2309aa5c9a229e045176bb7"
2369
+  dependencies:
2370
+    ajv "^5.2.0"
2371
+    babel-code-frame "^6.22.0"
2372
+    chalk "^2.1.0"
2373
+    concat-stream "^1.6.0"
2374
+    cross-spawn "^5.1.0"
2375
+    debug "^3.0.1"
2376
+    doctrine "^2.0.0"
2377
+    eslint-scope "^3.7.1"
2378
+    espree "^3.5.1"
2379
+    esquery "^1.0.0"
2380
+    estraverse "^4.2.0"
2381
+    esutils "^2.0.2"
2382
+    file-entry-cache "^2.0.0"
2383
+    functional-red-black-tree "^1.0.1"
2384
+    glob "^7.1.2"
2385
+    globals "^9.17.0"
2386
+    ignore "^3.3.3"
2387
+    imurmurhash "^0.1.4"
2388
+    inquirer "^3.0.6"
2389
+    is-resolvable "^1.0.0"
2390
+    js-yaml "^3.9.1"
2391
+    json-stable-stringify "^1.0.1"
2392
+    levn "^0.3.0"
2393
+    lodash "^4.17.4"
2394
+    minimatch "^3.0.2"
2395
+    mkdirp "^0.5.1"
2396
+    natural-compare "^1.4.0"
2397
+    optionator "^0.8.2"
2398
+    path-is-inside "^1.0.2"
2399
+    pluralize "^7.0.0"
2400
+    progress "^2.0.0"
2401
+    require-uncached "^1.0.3"
2402
+    semver "^5.3.0"
2403
+    strip-ansi "^4.0.0"
2404
+    strip-json-comments "~2.0.1"
2405
+    table "^4.0.1"
2406
+    text-table "~0.2.0"
2407
+
2408
+espree@^3.5.1:
2409
+  version "3.5.4"
2410
+  resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
2411
+  dependencies:
2412
+    acorn "^5.5.0"
2413
+    acorn-jsx "^3.0.0"
2414
+
2415
+esprima@^2.6.0:
2416
+  version "2.7.3"
2417
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
2418
+
2419
+esprima@^3.1.3:
2420
+  version "3.1.3"
2421
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
2422
+
2423
+esprima@^4.0.0:
2424
+  version "4.0.0"
2425
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
2426
+
2427
+esquery@^1.0.0:
2428
+  version "1.0.0"
2429
+  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
2430
+  dependencies:
2431
+    estraverse "^4.0.0"
2432
+
2433
+esrecurse@^4.1.0:
2434
+  version "4.2.1"
2435
+  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
2436
+  dependencies:
2437
+    estraverse "^4.1.0"
2438
+
2439
+estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
2440
+  version "4.2.0"
2441
+  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
2442
+
2443
+esutils@^2.0.2:
2444
+  version "2.0.2"
2445
+  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
2446
+
2447
+etag@~1.8.1:
2448
+  version "1.8.1"
2449
+  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
2450
+
2451
+event-emitter@~0.3.5:
2452
+  version "0.3.5"
2453
+  resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
2454
+  dependencies:
2455
+    d "1"
2456
+    es5-ext "~0.10.14"
2457
+
2458
+eventemitter3@1.x.x:
2459
+  version "1.2.0"
2460
+  resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508"
2461
+
2462
+events@^1.0.0:
2463
+  version "1.1.1"
2464
+  resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
2465
+
2466
+eventsource@0.1.6:
2467
+  version "0.1.6"
2468
+  resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232"
2469
+  dependencies:
2470
+    original ">=0.0.5"
2471
+
2472
+evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
2473
+  version "1.0.3"
2474
+  resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
2475
+  dependencies:
2476
+    md5.js "^1.3.4"
2477
+    safe-buffer "^5.1.1"
2478
+
2479
+exec-sh@^0.2.0:
2480
+  version "0.2.1"
2481
+  resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
2482
+  dependencies:
2483
+    merge "^1.1.3"
2484
+
2485
+execa@^0.7.0:
2486
+  version "0.7.0"
2487
+  resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
2488
+  dependencies:
2489
+    cross-spawn "^5.0.1"
2490
+    get-stream "^3.0.0"
2491
+    is-stream "^1.1.0"
2492
+    npm-run-path "^2.0.0"
2493
+    p-finally "^1.0.0"
2494
+    signal-exit "^3.0.0"
2495
+    strip-eof "^1.0.0"
2496
+
2497
+expand-brackets@^0.1.4:
2498
+  version "0.1.5"
2499
+  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
2500
+  dependencies:
2501
+    is-posix-bracket "^0.1.0"
2502
+
2503
+expand-brackets@^2.1.4:
2504
+  version "2.1.4"
2505
+  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
2506
+  dependencies:
2507
+    debug "^2.3.3"
2508
+    define-property "^0.2.5"
2509
+    extend-shallow "^2.0.1"
2510
+    posix-character-classes "^0.1.0"
2511
+    regex-not "^1.0.0"
2512
+    snapdragon "^0.8.1"
2513
+    to-regex "^3.0.1"
2514
+
2515
+expand-range@^1.8.1:
2516
+  version "1.8.2"
2517
+  resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
2518
+  dependencies:
2519
+    fill-range "^2.1.0"
2520
+
2521
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
2522
+  version "2.0.2"
2523
+  resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
2524
+  dependencies:
2525
+    homedir-polyfill "^1.0.1"
2526
+
2527
+express@^4.13.3:
2528
+  version "4.16.2"
2529
+  resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c"
2530
+  dependencies:
2531
+    accepts "~1.3.4"
2532
+    array-flatten "1.1.1"
2533
+    body-parser "1.18.2"
2534
+    content-disposition "0.5.2"
2535
+    content-type "~1.0.4"
2536
+    cookie "0.3.1"
2537
+    cookie-signature "1.0.6"
2538
+    debug "2.6.9"
2539
+    depd "~1.1.1"
2540
+    encodeurl "~1.0.1"
2541
+    escape-html "~1.0.3"
2542
+    etag "~1.8.1"
2543
+    finalhandler "1.1.0"
2544
+    fresh "0.5.2"
2545
+    merge-descriptors "1.0.1"
2546
+    methods "~1.1.2"
2547
+    on-finished "~2.3.0"
2548
+    parseurl "~1.3.2"
2549
+    path-to-regexp "0.1.7"
2550
+    proxy-addr "~2.0.2"
2551
+    qs "6.5.1"
2552
+    range-parser "~1.2.0"
2553
+    safe-buffer "5.1.1"
2554
+    send "0.16.1"
2555
+    serve-static "1.13.1"
2556
+    setprototypeof "1.1.0"
2557
+    statuses "~1.3.1"
2558
+    type-is "~1.6.15"
2559
+    utils-merge "1.0.1"
2560
+    vary "~1.1.2"
2561
+
2562
+extend-shallow@^2.0.1:
2563
+  version "2.0.1"
2564
+  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
2565
+  dependencies:
2566
+    is-extendable "^0.1.0"
2567
+
2568
+extend-shallow@^3.0.0, extend-shallow@^3.0.2:
2569
+  version "3.0.2"
2570
+  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
2571
+  dependencies:
2572
+    assign-symbols "^1.0.0"
2573
+    is-extendable "^1.0.1"
2574
+
2575
+extend@~3.0.0, extend@~3.0.1:
2576
+  version "3.0.1"
2577
+  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
2578
+
2579
+external-editor@^2.0.4:
2580
+  version "2.1.0"
2581
+  resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48"
2582
+  dependencies:
2583
+    chardet "^0.4.0"
2584
+    iconv-lite "^0.4.17"
2585
+    tmp "^0.0.33"
2586
+
2587
+extglob@^0.3.1:
2588
+  version "0.3.2"
2589
+  resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
2590
+  dependencies:
2591
+    is-extglob "^1.0.0"
2592
+
2593
+extglob@^2.0.4:
2594
+  version "2.0.4"
2595
+  resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
2596
+  dependencies:
2597
+    array-unique "^0.3.2"
2598
+    define-property "^1.0.0"
2599
+    expand-brackets "^2.1.4"
2600
+    extend-shallow "^2.0.1"
2601
+    fragment-cache "^0.2.1"
2602
+    regex-not "^1.0.0"
2603
+    snapdragon "^0.8.1"
2604
+    to-regex "^3.0.1"
2605
+
2606
+extract-text-webpack-plugin@3.0.2:
2607
+  version "3.0.2"
2608
+  resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7"
2609
+  dependencies:
2610
+    async "^2.4.1"
2611
+    loader-utils "^1.1.0"
2612
+    schema-utils "^0.3.0"
2613
+    webpack-sources "^1.0.1"
2614
+
2615
+extsprintf@1.3.0:
2616
+  version "1.3.0"
2617
+  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
2618
+
2619
+extsprintf@^1.2.0:
2620
+  version "1.4.0"
2621
+  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
2622
+
2623
+fast-deep-equal@^1.0.0:
2624
+  version "1.1.0"
2625
+  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
2626
+
2627
+fast-json-stable-stringify@^2.0.0:
2628
+  version "2.0.0"
2629
+  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
2630
+
2631
+fast-levenshtein@~2.0.4:
2632
+  version "2.0.6"
2633
+  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
2634
+
2635
+fastparse@^1.1.1:
2636
+  version "1.1.1"
2637
+  resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8"
2638
+
2639
+faye-websocket@^0.10.0:
2640
+  version "0.10.0"
2641
+  resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
2642
+  dependencies:
2643
+    websocket-driver ">=0.5.1"
2644
+
2645
+faye-websocket@~0.11.0:
2646
+  version "0.11.1"
2647
+  resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"
2648
+  dependencies:
2649
+    websocket-driver ">=0.5.1"
2650
+
2651
+fb-watchman@^1.8.0:
2652
+  version "1.9.2"
2653
+  resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383"
2654
+  dependencies:
2655
+    bser "1.0.2"
2656
+
2657
+fb-watchman@^2.0.0:
2658
+  version "2.0.0"
2659
+  resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
2660
+  dependencies:
2661
+    bser "^2.0.0"
2662
+
2663
+fbjs@^0.8.16:
2664
+  version "0.8.16"
2665
+  resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db"
2666
+  dependencies:
2667
+    core-js "^1.0.0"
2668
+    isomorphic-fetch "^2.1.1"
2669
+    loose-envify "^1.0.0"
2670
+    object-assign "^4.1.0"
2671
+    promise "^7.1.1"
2672
+    setimmediate "^1.0.5"
2673
+    ua-parser-js "^0.7.9"
2674
+
2675
+figures@^2.0.0:
2676
+  version "2.0.0"
2677
+  resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
2678
+  dependencies:
2679
+    escape-string-regexp "^1.0.5"
2680
+
2681
+file-entry-cache@^2.0.0:
2682
+  version "2.0.0"
2683
+  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
2684
+  dependencies:
2685
+    flat-cache "^1.2.1"
2686
+    object-assign "^4.0.1"
2687
+
2688
+file-loader@1.1.5:
2689
+  version "1.1.5"
2690
+  resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.5.tgz#91c25b6b6fbe56dae99f10a425fd64933b5c9daa"
2691
+  dependencies:
2692
+    loader-utils "^1.0.2"
2693
+    schema-utils "^0.3.0"
2694
+
2695
+filename-regex@^2.0.0:
2696
+  version "2.0.1"
2697
+  resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
2698
+
2699
+fileset@^2.0.2:
2700
+  version "2.0.3"
2701
+  resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
2702
+  dependencies:
2703
+    glob "^7.0.3"
2704
+    minimatch "^3.0.3"
2705
+
2706
+filesize@3.5.11:
2707
+  version "3.5.11"
2708
+  resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee"
2709
+
2710
+fill-range@^2.1.0:
2711
+  version "2.2.3"
2712
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
2713
+  dependencies:
2714
+    is-number "^2.1.0"
2715
+    isobject "^2.0.0"
2716
+    randomatic "^1.1.3"
2717
+    repeat-element "^1.1.2"
2718
+    repeat-string "^1.5.2"
2719
+
2720
+fill-range@^4.0.0:
2721
+  version "4.0.0"
2722
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
2723
+  dependencies:
2724
+    extend-shallow "^2.0.1"
2725
+    is-number "^3.0.0"
2726
+    repeat-string "^1.6.1"
2727
+    to-regex-range "^2.1.0"
2728
+
2729
+finalhandler@1.1.0:
2730
+  version "1.1.0"
2731
+  resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5"
2732
+  dependencies:
2733
+    debug "2.6.9"
2734
+    encodeurl "~1.0.1"
2735
+    escape-html "~1.0.3"
2736
+    on-finished "~2.3.0"
2737
+    parseurl "~1.3.2"
2738
+    statuses "~1.3.1"
2739
+    unpipe "~1.0.0"
2740
+
2741
+find-cache-dir@^0.1.1:
2742
+  version "0.1.1"
2743
+  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
2744
+  dependencies:
2745
+    commondir "^1.0.1"
2746
+    mkdirp "^0.5.1"
2747
+    pkg-dir "^1.0.0"
2748
+
2749
+find-cache-dir@^1.0.0:
2750
+  version "1.0.0"
2751
+  resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
2752
+  dependencies:
2753
+    commondir "^1.0.1"
2754
+    make-dir "^1.0.0"
2755
+    pkg-dir "^2.0.0"
2756
+
2757
+find-up@^1.0.0:
2758
+  version "1.1.2"
2759
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
2760
+  dependencies:
2761
+    path-exists "^2.0.0"
2762
+    pinkie-promise "^2.0.0"
2763
+
2764
+find-up@^2.0.0, find-up@^2.1.0:
2765
+  version "2.1.0"
2766
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
2767
+  dependencies:
2768
+    locate-path "^2.0.0"
2769
+
2770
+flat-cache@^1.2.1:
2771
+  version "1.3.0"
2772
+  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
2773
+  dependencies:
2774
+    circular-json "^0.3.1"
2775
+    del "^2.0.2"
2776
+    graceful-fs "^4.1.2"
2777
+    write "^0.2.1"
2778
+
2779
+flatten@^1.0.2:
2780
+  version "1.0.2"
2781
+  resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
2782
+
2783
+for-in@^1.0.1, for-in@^1.0.2:
2784
+  version "1.0.2"
2785
+  resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
2786
+
2787
+for-own@^0.1.4:
2788
+  version "0.1.5"
2789
+  resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
2790
+  dependencies:
2791
+    for-in "^1.0.1"
2792
+
2793
+foreach@^2.0.5:
2794
+  version "2.0.5"
2795
+  resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
2796
+
2797
+forever-agent@~0.6.1:
2798
+  version "0.6.1"
2799
+  resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
2800
+
2801
+form-data@~2.1.1:
2802
+  version "2.1.4"
2803
+  resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
2804
+  dependencies:
2805
+    asynckit "^0.4.0"
2806
+    combined-stream "^1.0.5"
2807
+    mime-types "^2.1.12"
2808
+
2809
+form-data@~2.3.1:
2810
+  version "2.3.2"
2811
+  resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
2812
+  dependencies:
2813
+    asynckit "^0.4.0"
2814
+    combined-stream "1.0.6"
2815
+    mime-types "^2.1.12"
2816
+
2817
+forwarded@~0.1.2:
2818
+  version "0.1.2"
2819
+  resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
2820
+
2821
+fragment-cache@^0.2.1:
2822
+  version "0.2.1"
2823
+  resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
2824
+  dependencies:
2825
+    map-cache "^0.2.2"
2826
+
2827
+fresh@0.5.2:
2828
+  version "0.5.2"
2829
+  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
2830
+
2831
+fs-extra@3.0.1:
2832
+  version "3.0.1"
2833
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
2834
+  dependencies:
2835
+    graceful-fs "^4.1.2"
2836
+    jsonfile "^3.0.0"
2837
+    universalify "^0.1.0"
2838
+
2839
+fs-extra@^0.30.0:
2840
+  version "0.30.0"
2841
+  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
2842
+  dependencies:
2843
+    graceful-fs "^4.1.2"
2844
+    jsonfile "^2.1.0"
2845
+    klaw "^1.0.0"
2846
+    path-is-absolute "^1.0.0"
2847
+    rimraf "^2.2.8"
2848
+
2849
+fs.realpath@^1.0.0:
2850
+  version "1.0.0"
2851
+  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
2852
+
2853
+fsevents@^1.0.0, fsevents@^1.1.3:
2854
+  version "1.1.3"
2855
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
2856
+  dependencies:
2857
+    nan "^2.3.0"
2858
+    node-pre-gyp "^0.6.39"
2859
+
2860
+fstream-ignore@^1.0.5:
2861
+  version "1.0.5"
2862
+  resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
2863
+  dependencies:
2864
+    fstream "^1.0.0"
2865
+    inherits "2"
2866
+    minimatch "^3.0.0"
2867
+
2868
+fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
2869
+  version "1.0.11"
2870
+  resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
2871
+  dependencies:
2872
+    graceful-fs "^4.1.2"
2873
+    inherits "~2.0.0"
2874
+    mkdirp ">=0.5 0"
2875
+    rimraf "2"
2876
+
2877
+function-bind@^1.0.2, function-bind@^1.1.1:
2878
+  version "1.1.1"
2879
+  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
2880
+
2881
+functional-red-black-tree@^1.0.1:
2882
+  version "1.0.1"
2883
+  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
2884
+
2885
+gauge@~2.7.3:
2886
+  version "2.7.4"
2887
+  resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
2888
+  dependencies:
2889
+    aproba "^1.0.3"
2890
+    console-control-strings "^1.0.0"
2891
+    has-unicode "^2.0.0"
2892
+    object-assign "^4.1.0"
2893
+    signal-exit "^3.0.0"
2894
+    string-width "^1.0.1"
2895
+    strip-ansi "^3.0.1"
2896
+    wide-align "^1.1.0"
2897
+
2898
+get-caller-file@^1.0.1:
2899
+  version "1.0.2"
2900
+  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
2901
+
2902
+get-stdin@^4.0.1:
2903
+  version "4.0.1"
2904
+  resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
2905
+
2906
+get-stream@^3.0.0:
2907
+  version "3.0.0"
2908
+  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
2909
+
2910
+get-value@^2.0.3, get-value@^2.0.6:
2911
+  version "2.0.6"
2912
+  resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
2913
+
2914
+getpass@^0.1.1:
2915
+  version "0.1.7"
2916
+  resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
2917
+  dependencies:
2918
+    assert-plus "^1.0.0"
2919
+
2920
+glob-base@^0.3.0:
2921
+  version "0.3.0"
2922
+  resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
2923
+  dependencies:
2924
+    glob-parent "^2.0.0"
2925
+    is-glob "^2.0.0"
2926
+
2927
+glob-parent@^2.0.0:
2928
+  version "2.0.0"
2929
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
2930
+  dependencies:
2931
+    is-glob "^2.0.0"
2932
+
2933
+glob-parent@^3.1.0:
2934
+  version "3.1.0"
2935
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
2936
+  dependencies:
2937
+    is-glob "^3.1.0"
2938
+    path-dirname "^1.0.0"
2939
+
2940
+glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
2941
+  version "7.1.2"
2942
+  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
2943
+  dependencies:
2944
+    fs.realpath "^1.0.0"
2945
+    inflight "^1.0.4"
2946
+    inherits "2"
2947
+    minimatch "^3.0.4"
2948
+    once "^1.3.0"
2949
+    path-is-absolute "^1.0.0"
2950
+
2951
+global-dirs@^0.1.0:
2952
+  version "0.1.1"
2953
+  resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
2954
+  dependencies:
2955
+    ini "^1.3.4"
2956
+
2957
+global-modules@1.0.0, global-modules@^1.0.0:
2958
+  version "1.0.0"
2959
+  resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
2960
+  dependencies:
2961
+    global-prefix "^1.0.1"
2962
+    is-windows "^1.0.1"
2963
+    resolve-dir "^1.0.0"
2964
+
2965
+global-prefix@^1.0.1:
2966
+  version "1.0.2"
2967
+  resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
2968
+  dependencies:
2969
+    expand-tilde "^2.0.2"
2970
+    homedir-polyfill "^1.0.1"
2971
+    ini "^1.3.4"
2972
+    is-windows "^1.0.1"
2973
+    which "^1.2.14"
2974
+
2975
+globals@^9.17.0, globals@^9.18.0:
2976
+  version "9.18.0"
2977
+  resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
2978
+
2979
+globby@^5.0.0:
2980
+  version "5.0.0"
2981
+  resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
2982
+  dependencies:
2983
+    array-union "^1.0.1"
2984
+    arrify "^1.0.0"
2985
+    glob "^7.0.3"
2986
+    object-assign "^4.0.1"
2987
+    pify "^2.0.0"
2988
+    pinkie-promise "^2.0.0"
2989
+
2990
+globby@^6.1.0:
2991
+  version "6.1.0"
2992
+  resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
2993
+  dependencies:
2994
+    array-union "^1.0.1"
2995
+    glob "^7.0.3"
2996
+    object-assign "^4.0.1"
2997
+    pify "^2.0.0"
2998
+    pinkie-promise "^2.0.0"
2999
+
3000
+got@^6.7.1:
3001
+  version "6.7.1"
3002
+  resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
3003
+  dependencies:
3004
+    create-error-class "^3.0.0"
3005
+    duplexer3 "^0.1.4"
3006
+    get-stream "^3.0.0"
3007
+    is-redirect "^1.0.0"
3008
+    is-retry-allowed "^1.0.0"
3009
+    is-stream "^1.0.0"
3010
+    lowercase-keys "^1.0.0"
3011
+    safe-buffer "^5.0.1"
3012
+    timed-out "^4.0.0"
3013
+    unzip-response "^2.0.1"
3014
+    url-parse-lax "^1.0.0"
3015
+
3016
+graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
3017
+  version "4.1.11"
3018
+  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
3019
+
3020
+growly@^1.3.0:
3021
+  version "1.3.0"
3022
+  resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
3023
+
3024
+gzip-size@3.0.0:
3025
+  version "3.0.0"
3026
+  resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
3027
+  dependencies:
3028
+    duplexer "^0.1.1"
3029
+
3030
+handle-thing@^1.2.5:
3031
+  version "1.2.5"
3032
+  resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4"
3033
+
3034
+handlebars@^4.0.3:
3035
+  version "4.0.11"
3036
+  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
3037
+  dependencies:
3038
+    async "^1.4.0"
3039
+    optimist "^0.6.1"
3040
+    source-map "^0.4.4"
3041
+  optionalDependencies:
3042
+    uglify-js "^2.6"
3043
+
3044
+har-schema@^1.0.5:
3045
+  version "1.0.5"
3046
+  resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
3047
+
3048
+har-schema@^2.0.0:
3049
+  version "2.0.0"
3050
+  resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
3051
+
3052
+har-validator@~4.2.1:
3053
+  version "4.2.1"
3054
+  resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
3055
+  dependencies:
3056
+    ajv "^4.9.1"
3057
+    har-schema "^1.0.5"
3058
+
3059
+har-validator@~5.0.3:
3060
+  version "5.0.3"
3061
+  resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
3062
+  dependencies:
3063
+    ajv "^5.1.0"
3064
+    har-schema "^2.0.0"
3065
+
3066
+has-ansi@^2.0.0:
3067
+  version "2.0.0"
3068
+  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
3069
+  dependencies:
3070
+    ansi-regex "^2.0.0"
3071
+
3072
+has-flag@^1.0.0:
3073
+  version "1.0.0"
3074
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
3075
+
3076
+has-flag@^2.0.0:
3077
+  version "2.0.0"
3078
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
3079
+
3080
+has-flag@^3.0.0:
3081
+  version "3.0.0"
3082
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
3083
+
3084
+has-unicode@^2.0.0:
3085
+  version "2.0.1"
3086
+  resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
3087
+
3088
+has-value@^0.3.1:
3089
+  version "0.3.1"
3090
+  resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
3091
+  dependencies:
3092
+    get-value "^2.0.3"
3093
+    has-values "^0.1.4"
3094
+    isobject "^2.0.0"
3095
+
3096
+has-value@^1.0.0:
3097
+  version "1.0.0"
3098
+  resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
3099
+  dependencies:
3100
+    get-value "^2.0.6"
3101
+    has-values "^1.0.0"
3102
+    isobject "^3.0.0"
3103
+
3104
+has-values@^0.1.4:
3105
+  version "0.1.4"
3106
+  resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
3107
+
3108
+has-values@^1.0.0:
3109
+  version "1.0.0"
3110
+  resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
3111
+  dependencies:
3112
+    is-number "^3.0.0"
3113
+    kind-of "^4.0.0"
3114
+
3115
+has@^1.0.1:
3116
+  version "1.0.1"
3117
+  resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
3118
+  dependencies:
3119
+    function-bind "^1.0.2"
3120
+
3121
+hash-base@^2.0.0:
3122
+  version "2.0.2"
3123
+  resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
3124
+  dependencies:
3125
+    inherits "^2.0.1"
3126
+
3127
+hash-base@^3.0.0:
3128
+  version "3.0.4"
3129
+  resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
3130
+  dependencies:
3131
+    inherits "^2.0.1"
3132
+    safe-buffer "^5.0.1"
3133
+
3134
+hash.js@^1.0.0, hash.js@^1.0.3:
3135
+  version "1.1.3"
3136
+  resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
3137
+  dependencies:
3138
+    inherits "^2.0.3"
3139
+    minimalistic-assert "^1.0.0"
3140
+
3141
+hawk@3.1.3, hawk@~3.1.3:
3142
+  version "3.1.3"
3143
+  resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
3144
+  dependencies:
3145
+    boom "2.x.x"
3146
+    cryptiles "2.x.x"
3147
+    hoek "2.x.x"
3148
+    sntp "1.x.x"
3149
+
3150
+hawk@~6.0.2:
3151
+  version "6.0.2"
3152
+  resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
3153
+  dependencies:
3154
+    boom "4.x.x"
3155
+    cryptiles "3.x.x"
3156
+    hoek "4.x.x"
3157
+    sntp "2.x.x"
3158
+
3159
+he@1.1.x:
3160
+  version "1.1.1"
3161
+  resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
3162
+
3163
+hmac-drbg@^1.0.0:
3164
+  version "1.0.1"
3165
+  resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
3166
+  dependencies:
3167
+    hash.js "^1.0.3"
3168
+    minimalistic-assert "^1.0.0"
3169
+    minimalistic-crypto-utils "^1.0.1"
3170
+
3171
+hoek@2.x.x:
3172
+  version "2.16.3"
3173
+  resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
3174
+
3175
+hoek@4.x.x:
3176
+  version "4.2.1"
3177
+  resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb"
3178
+
3179
+home-or-tmp@^2.0.0:
3180
+  version "2.0.0"
3181
+  resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
3182
+  dependencies:
3183
+    os-homedir "^1.0.0"
3184
+    os-tmpdir "^1.0.1"
3185
+
3186
+homedir-polyfill@^1.0.1:
3187
+  version "1.0.1"
3188
+  resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc"
3189
+  dependencies:
3190
+    parse-passwd "^1.0.0"
3191
+
3192
+hosted-git-info@^2.1.4:
3193
+  version "2.5.0"
3194
+  resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
3195
+
3196
+hpack.js@^2.1.6:
3197
+  version "2.1.6"
3198
+  resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
3199
+  dependencies:
3200
+    inherits "^2.0.1"
3201
+    obuf "^1.0.0"
3202
+    readable-stream "^2.0.1"
3203
+    wbuf "^1.1.0"
3204
+
3205
+html-comment-regex@^1.1.0:
3206
+  version "1.1.1"
3207
+  resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e"
3208
+
3209
+html-encoding-sniffer@^1.0.1:
3210
+  version "1.0.2"
3211
+  resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
3212
+  dependencies:
3213
+    whatwg-encoding "^1.0.1"
3214
+
3215
+html-entities@^1.2.0:
3216
+  version "1.2.1"
3217
+  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
3218
+
3219
+html-minifier@^3.2.3:
3220
+  version "3.5.10"
3221
+  resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.10.tgz#8522c772c388db81aa5c26f62033302d906ea1c7"
3222
+  dependencies:
3223
+    camel-case "3.0.x"
3224
+    clean-css "4.1.x"
3225
+    commander "2.14.x"
3226
+    he "1.1.x"
3227
+    ncname "1.0.x"
3228
+    param-case "2.1.x"
3229
+    relateurl "0.2.x"
3230
+    uglify-js "3.3.x"
3231
+
3232
+html-webpack-plugin@2.29.0:
3233
+  version "2.29.0"
3234
+  resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.29.0.tgz#e987f421853d3b6938c8c4c8171842e5fd17af23"
3235
+  dependencies:
3236
+    bluebird "^3.4.7"
3237
+    html-minifier "^3.2.3"
3238
+    loader-utils "^0.2.16"
3239
+    lodash "^4.17.3"
3240
+    pretty-error "^2.0.2"
3241
+    toposort "^1.0.0"
3242
+
3243
+htmlparser2@~3.3.0:
3244
+  version "3.3.0"
3245
+  resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe"
3246
+  dependencies:
3247
+    domelementtype "1"
3248
+    domhandler "2.1"
3249
+    domutils "1.1"
3250
+    readable-stream "1.0"
3251
+
3252
+http-deceiver@^1.2.7:
3253
+  version "1.2.7"
3254
+  resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
3255
+
3256
+http-errors@1.6.2, http-errors@~1.6.2:
3257
+  version "1.6.2"
3258
+  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
3259
+  dependencies:
3260
+    depd "1.1.1"
3261
+    inherits "2.0.3"
3262
+    setprototypeof "1.0.3"
3263
+    statuses ">= 1.3.1 < 2"
3264
+
3265
+http-parser-js@>=0.4.0:
3266
+  version "0.4.10"
3267
+  resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4"
3268
+
3269
+http-proxy-middleware@~0.17.4:
3270
+  version "0.17.4"
3271
+  resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833"
3272
+  dependencies:
3273
+    http-proxy "^1.16.2"
3274
+    is-glob "^3.1.0"
3275
+    lodash "^4.17.2"
3276
+    micromatch "^2.3.11"
3277
+
3278
+http-proxy@^1.16.2:
3279
+  version "1.16.2"
3280
+  resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742"
3281
+  dependencies:
3282
+    eventemitter3 "1.x.x"
3283
+    requires-port "1.x.x"
3284
+
3285
+http-signature@~1.1.0:
3286
+  version "1.1.1"
3287
+  resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
3288
+  dependencies:
3289
+    assert-plus "^0.2.0"
3290
+    jsprim "^1.2.2"
3291
+    sshpk "^1.7.0"
3292
+
3293
+http-signature@~1.2.0:
3294
+  version "1.2.0"
3295
+  resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
3296
+  dependencies:
3297
+    assert-plus "^1.0.0"
3298
+    jsprim "^1.2.2"
3299
+    sshpk "^1.7.0"
3300
+
3301
+https-browserify@^1.0.0:
3302
+  version "1.0.0"
3303
+  resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
3304
+
3305
+iconv-lite@0.4.19, iconv-lite@^0.4.17, iconv-lite@~0.4.13:
3306
+  version "0.4.19"
3307
+  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
3308
+
3309
+icss-replace-symbols@^1.1.0:
3310
+  version "1.1.0"
3311
+  resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
3312
+
3313
+icss-utils@^2.1.0:
3314
+  version "2.1.0"
3315
+  resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962"
3316
+  dependencies:
3317
+    postcss "^6.0.1"
3318
+
3319
+ieee754@^1.1.4:
3320
+  version "1.1.8"
3321
+  resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
3322
+
3323
+ignore@^3.3.3:
3324
+  version "3.3.7"
3325
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021"
3326
+
3327
+import-lazy@^2.1.0:
3328
+  version "2.1.0"
3329
+  resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
3330
+
3331
+import-local@^0.1.1:
3332
+  version "0.1.1"
3333
+  resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8"
3334
+  dependencies:
3335
+    pkg-dir "^2.0.0"
3336
+    resolve-cwd "^2.0.0"
3337
+
3338
+imurmurhash@^0.1.4:
3339
+  version "0.1.4"
3340
+  resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
3341
+
3342
+indent-string@^2.1.0:
3343
+  version "2.1.0"
3344
+  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
3345
+  dependencies:
3346
+    repeating "^2.0.0"
3347
+
3348
+indexes-of@^1.0.1:
3349
+  version "1.0.1"
3350
+  resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
3351
+
3352
+indexof@0.0.1:
3353
+  version "0.0.1"
3354
+  resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
3355
+
3356
+inflight@^1.0.4:
3357
+  version "1.0.6"
3358
+  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
3359
+  dependencies:
3360
+    once "^1.3.0"
3361
+    wrappy "1"
3362
+
3363
+inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
3364
+  version "2.0.3"
3365
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
3366
+
3367
+inherits@2.0.1:
3368
+  version "2.0.1"
3369
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
3370
+
3371
+ini@^1.3.4, ini@~1.3.0:
3372
+  version "1.3.5"
3373
+  resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
3374
+
3375
+inquirer@3.3.0, inquirer@^3.0.6:
3376
+  version "3.3.0"
3377
+  resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
3378
+  dependencies:
3379
+    ansi-escapes "^3.0.0"
3380
+    chalk "^2.0.0"
3381
+    cli-cursor "^2.1.0"
3382
+    cli-width "^2.0.0"
3383
+    external-editor "^2.0.4"
3384
+    figures "^2.0.0"
3385
+    lodash "^4.3.0"
3386
+    mute-stream "0.0.7"
3387
+    run-async "^2.2.0"
3388
+    rx-lite "^4.0.8"
3389
+    rx-lite-aggregates "^4.0.8"
3390
+    string-width "^2.1.0"
3391
+    strip-ansi "^4.0.0"
3392
+    through "^2.3.6"
3393
+
3394
+internal-ip@1.2.0:
3395
+  version "1.2.0"
3396
+  resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c"
3397
+  dependencies:
3398
+    meow "^3.3.0"
3399
+
3400
+interpret@^1.0.0:
3401
+  version "1.1.0"
3402
+  resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
3403
+
3404
+invariant@^2.2.2:
3405
+  version "2.2.3"
3406
+  resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688"
3407
+  dependencies:
3408
+    loose-envify "^1.0.0"
3409
+
3410
+invert-kv@^1.0.0:
3411
+  version "1.0.0"
3412
+  resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
3413
+
3414
+ip@^1.1.0, ip@^1.1.5:
3415
+  version "1.1.5"
3416
+  resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
3417
+
3418
+ipaddr.js@1.6.0:
3419
+  version "1.6.0"
3420
+  resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b"
3421
+
3422
+is-absolute-url@^2.0.0:
3423
+  version "2.1.0"
3424
+  resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
3425
+
3426
+is-accessor-descriptor@^0.1.6:
3427
+  version "0.1.6"
3428
+  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
3429
+  dependencies:
3430
+    kind-of "^3.0.2"
3431
+
3432
+is-accessor-descriptor@^1.0.0:
3433
+  version "1.0.0"
3434
+  resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
3435
+  dependencies:
3436
+    kind-of "^6.0.0"
3437
+
3438
+is-arrayish@^0.2.1:
3439
+  version "0.2.1"
3440
+  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
3441
+
3442
+is-binary-path@^1.0.0:
3443
+  version "1.0.1"
3444
+  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
3445
+  dependencies:
3446
+    binary-extensions "^1.0.0"
3447
+
3448
+is-buffer@^1.1.5:
3449
+  version "1.1.6"
3450
+  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
3451
+
3452
+is-builtin-module@^1.0.0:
3453
+  version "1.0.0"
3454
+  resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
3455
+  dependencies:
3456
+    builtin-modules "^1.0.0"
3457
+
3458
+is-callable@^1.1.1, is-callable@^1.1.3:
3459
+  version "1.1.3"
3460
+  resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
3461
+
3462
+is-ci@^1.0.10:
3463
+  version "1.1.0"
3464
+  resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
3465
+  dependencies:
3466
+    ci-info "^1.0.0"
3467
+
3468
+is-data-descriptor@^0.1.4:
3469
+  version "0.1.4"
3470
+  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
3471
+  dependencies:
3472
+    kind-of "^3.0.2"
3473
+
3474
+is-data-descriptor@^1.0.0:
3475
+  version "1.0.0"
3476
+  resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
3477
+  dependencies:
3478
+    kind-of "^6.0.0"
3479
+
3480
+is-date-object@^1.0.1:
3481
+  version "1.0.1"
3482
+  resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
3483
+
3484
+is-descriptor@^0.1.0:
3485
+  version "0.1.6"
3486
+  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
3487
+  dependencies:
3488
+    is-accessor-descriptor "^0.1.6"
3489
+    is-data-descriptor "^0.1.4"
3490
+    kind-of "^5.0.0"
3491
+
3492
+is-descriptor@^1.0.0, is-descriptor@^1.0.2:
3493
+  version "1.0.2"
3494
+  resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
3495
+  dependencies:
3496
+    is-accessor-descriptor "^1.0.0"
3497
+    is-data-descriptor "^1.0.0"
3498
+    kind-of "^6.0.2"
3499
+
3500
+is-directory@^0.3.1:
3501
+  version "0.3.1"
3502
+  resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
3503
+
3504
+is-dotfile@^1.0.0:
3505
+  version "1.0.3"
3506
+  resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
3507
+
3508
+is-equal-shallow@^0.1.3:
3509
+  version "0.1.3"
3510
+  resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
3511
+  dependencies:
3512
+    is-primitive "^2.0.0"
3513
+
3514
+is-extendable@^0.1.0, is-extendable@^0.1.1:
3515
+  version "0.1.1"
3516
+  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
3517
+
3518
+is-extendable@^1.0.1:
3519
+  version "1.0.1"
3520
+  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
3521
+  dependencies:
3522
+    is-plain-object "^2.0.4"
3523
+
3524
+is-extglob@^1.0.0:
3525
+  version "1.0.0"
3526
+  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
3527
+
3528
+is-extglob@^2.1.0, is-extglob@^2.1.1:
3529
+  version "2.1.1"
3530
+  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
3531
+
3532
+is-finite@^1.0.0:
3533
+  version "1.0.2"
3534
+  resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
3535
+  dependencies:
3536
+    number-is-nan "^1.0.0"
3537
+
3538
+is-fullwidth-code-point@^1.0.0:
3539
+  version "1.0.0"
3540
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
3541
+  dependencies:
3542
+    number-is-nan "^1.0.0"
3543
+
3544
+is-fullwidth-code-point@^2.0.0:
3545
+  version "2.0.0"
3546
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
3547
+
3548
+is-glob@^2.0.0, is-glob@^2.0.1:
3549
+  version "2.0.1"
3550
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
3551
+  dependencies:
3552
+    is-extglob "^1.0.0"
3553
+
3554
+is-glob@^3.1.0:
3555
+  version "3.1.0"
3556
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
3557
+  dependencies:
3558
+    is-extglob "^2.1.0"
3559
+
3560
+is-glob@^4.0.0:
3561
+  version "4.0.0"
3562
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
3563
+  dependencies:
3564
+    is-extglob "^2.1.1"
3565
+
3566
+is-installed-globally@^0.1.0:
3567
+  version "0.1.0"
3568
+  resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
3569
+  dependencies:
3570
+    global-dirs "^0.1.0"
3571
+    is-path-inside "^1.0.0"
3572
+
3573
+is-npm@^1.0.0:
3574
+  version "1.0.0"
3575
+  resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
3576
+
3577
+is-number@^2.1.0:
3578
+  version "2.1.0"
3579
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
3580
+  dependencies:
3581
+    kind-of "^3.0.2"
3582
+
3583
+is-number@^3.0.0:
3584
+  version "3.0.0"
3585
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
3586
+  dependencies:
3587
+    kind-of "^3.0.2"
3588
+
3589
+is-number@^4.0.0:
3590
+  version "4.0.0"
3591
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
3592
+
3593
+is-obj@^1.0.0:
3594
+  version "1.0.1"
3595
+  resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
3596
+
3597
+is-odd@^2.0.0:
3598
+  version "2.0.0"
3599
+  resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24"
3600
+  dependencies:
3601
+    is-number "^4.0.0"
3602
+
3603
+is-path-cwd@^1.0.0:
3604
+  version "1.0.0"
3605
+  resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
3606
+
3607
+is-path-in-cwd@^1.0.0:
3608
+  version "1.0.0"
3609
+  resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
3610
+  dependencies:
3611
+    is-path-inside "^1.0.0"
3612
+
3613
+is-path-inside@^1.0.0:
3614
+  version "1.0.1"
3615
+  resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
3616
+  dependencies:
3617
+    path-is-inside "^1.0.1"
3618
+
3619
+is-plain-obj@^1.0.0:
3620
+  version "1.1.0"
3621
+  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
3622
+
3623
+is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
3624
+  version "2.0.4"
3625
+  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
3626
+  dependencies:
3627
+    isobject "^3.0.1"
3628
+
3629
+is-posix-bracket@^0.1.0:
3630
+  version "0.1.1"
3631
+  resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
3632
+
3633
+is-primitive@^2.0.0:
3634
+  version "2.0.0"
3635
+  resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
3636
+
3637
+is-promise@^2.1.0:
3638
+  version "2.1.0"
3639
+  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
3640
+
3641
+is-redirect@^1.0.0:
3642
+  version "1.0.0"
3643
+  resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
3644
+
3645
+is-regex@^1.0.4:
3646
+  version "1.0.4"
3647
+  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
3648
+  dependencies:
3649
+    has "^1.0.1"
3650
+
3651
+is-resolvable@^1.0.0:
3652
+  version "1.1.0"
3653
+  resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
3654
+
3655
+is-retry-allowed@^1.0.0:
3656
+  version "1.1.0"
3657
+  resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
3658
+
3659
+is-root@1.0.0:
3660
+  version "1.0.0"
3661
+  resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5"
3662
+
3663
+is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
3664
+  version "1.1.0"
3665
+  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
3666
+
3667
+is-svg@^2.0.0:
3668
+  version "2.1.0"
3669
+  resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
3670
+  dependencies:
3671
+    html-comment-regex "^1.1.0"
3672
+
3673
+is-symbol@^1.0.1:
3674
+  version "1.0.1"
3675
+  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
3676
+
3677
+is-typedarray@~1.0.0:
3678
+  version "1.0.0"
3679
+  resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
3680
+
3681
+is-utf8@^0.2.0:
3682
+  version "0.2.1"
3683
+  resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
3684
+
3685
+is-windows@^1.0.1, is-windows@^1.0.2:
3686
+  version "1.0.2"
3687
+  resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
3688
+
3689
+is-wsl@^1.1.0:
3690
+  version "1.1.0"
3691
+  resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
3692
+
3693
+isarray@0.0.1:
3694
+  version "0.0.1"
3695
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
3696
+
3697
+isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
3698
+  version "1.0.0"
3699
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
3700
+
3701
+isexe@^2.0.0:
3702
+  version "2.0.0"
3703
+  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
3704
+
3705
+isobject@^2.0.0:
3706
+  version "2.1.0"
3707
+  resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
3708
+  dependencies:
3709
+    isarray "1.0.0"
3710
+
3711
+isobject@^3.0.0, isobject@^3.0.1:
3712
+  version "3.0.1"
3713
+  resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
3714
+
3715
+isomorphic-fetch@^2.1.1:
3716
+  version "2.2.1"
3717
+  resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
3718
+  dependencies:
3719
+    node-fetch "^1.0.1"
3720
+    whatwg-fetch ">=0.10.0"
3721
+
3722
+isstream@~0.1.2:
3723
+  version "0.1.2"
3724
+  resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
3725
+
3726
+istanbul-api@^1.1.1:
3727
+  version "1.2.2"
3728
+  resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.2.tgz#e17cd519dd5ec4141197f246fdf380b75487f3b1"
3729
+  dependencies:
3730
+    async "^2.1.4"
3731
+    fileset "^2.0.2"
3732
+    istanbul-lib-coverage "^1.1.2"
3733
+    istanbul-lib-hook "^1.1.0"
3734
+    istanbul-lib-instrument "^1.9.2"
3735
+    istanbul-lib-report "^1.1.3"
3736
+    istanbul-lib-source-maps "^1.2.3"
3737
+    istanbul-reports "^1.1.4"
3738
+    js-yaml "^3.7.0"
3739
+    mkdirp "^0.5.1"
3740
+    once "^1.4.0"
3741
+
3742
+istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.2:
3743
+  version "1.1.2"
3744
+  resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.2.tgz#4113c8ff6b7a40a1ef7350b01016331f63afde14"
3745
+
3746
+istanbul-lib-hook@^1.1.0:
3747
+  version "1.1.0"
3748
+  resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
3749
+  dependencies:
3750
+    append-transform "^0.4.0"
3751
+
3752
+istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.2:
3753
+  version "1.9.2"
3754
+  resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.2.tgz#84905bf47f7e0b401d6b840da7bad67086b4aab6"
3755
+  dependencies:
3756
+    babel-generator "^6.18.0"
3757
+    babel-template "^6.16.0"
3758
+    babel-traverse "^6.18.0"
3759
+    babel-types "^6.18.0"
3760
+    babylon "^6.18.0"
3761
+    istanbul-lib-coverage "^1.1.2"
3762
+    semver "^5.3.0"
3763
+
3764
+istanbul-lib-report@^1.1.3:
3765
+  version "1.1.3"
3766
+  resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.3.tgz#2df12188c0fa77990c0d2176d2d0ba3394188259"
3767
+  dependencies:
3768
+    istanbul-lib-coverage "^1.1.2"
3769
+    mkdirp "^0.5.1"
3770
+    path-parse "^1.0.5"
3771
+    supports-color "^3.1.2"
3772
+
3773
+istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.3:
3774
+  version "1.2.3"
3775
+  resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6"
3776
+  dependencies:
3777
+    debug "^3.1.0"
3778
+    istanbul-lib-coverage "^1.1.2"
3779
+    mkdirp "^0.5.1"
3780
+    rimraf "^2.6.1"
3781
+    source-map "^0.5.3"
3782
+
3783
+istanbul-reports@^1.1.4:
3784
+  version "1.1.4"
3785
+  resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.4.tgz#5ccba5e22b7b5a5d91d5e0a830f89be334bf97bd"
3786
+  dependencies:
3787
+    handlebars "^4.0.3"
3788
+
3789
+jest-changed-files@^20.0.3:
3790
+  version "20.0.3"
3791
+  resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8"
3792
+
3793
+jest-cli@^20.0.4:
3794
+  version "20.0.4"
3795
+  resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93"
3796
+  dependencies:
3797
+    ansi-escapes "^1.4.0"
3798
+    callsites "^2.0.0"
3799
+    chalk "^1.1.3"
3800
+    graceful-fs "^4.1.11"
3801
+    is-ci "^1.0.10"
3802
+    istanbul-api "^1.1.1"
3803
+    istanbul-lib-coverage "^1.0.1"
3804
+    istanbul-lib-instrument "^1.4.2"
3805
+    istanbul-lib-source-maps "^1.1.0"
3806
+    jest-changed-files "^20.0.3"
3807
+    jest-config "^20.0.4"
3808
+    jest-docblock "^20.0.3"
3809
+    jest-environment-jsdom "^20.0.3"
3810
+    jest-haste-map "^20.0.4"
3811
+    jest-jasmine2 "^20.0.4"
3812
+    jest-message-util "^20.0.3"
3813
+    jest-regex-util "^20.0.3"
3814
+    jest-resolve-dependencies "^20.0.3"
3815
+    jest-runtime "^20.0.4"
3816
+    jest-snapshot "^20.0.3"
3817
+    jest-util "^20.0.3"
3818
+    micromatch "^2.3.11"
3819
+    node-notifier "^5.0.2"
3820
+    pify "^2.3.0"
3821
+    slash "^1.0.0"
3822
+    string-length "^1.0.1"
3823
+    throat "^3.0.0"
3824
+    which "^1.2.12"
3825
+    worker-farm "^1.3.1"
3826
+    yargs "^7.0.2"
3827
+
3828
+jest-config@^20.0.4:
3829
+  version "20.0.4"
3830
+  resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea"
3831
+  dependencies:
3832
+    chalk "^1.1.3"
3833
+    glob "^7.1.1"
3834
+    jest-environment-jsdom "^20.0.3"
3835
+    jest-environment-node "^20.0.3"
3836
+    jest-jasmine2 "^20.0.4"
3837
+    jest-matcher-utils "^20.0.3"
3838
+    jest-regex-util "^20.0.3"
3839
+    jest-resolve "^20.0.4"
3840
+    jest-validate "^20.0.3"
3841
+    pretty-format "^20.0.3"
3842
+
3843
+jest-diff@^20.0.3:
3844
+  version "20.0.3"
3845
+  resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617"
3846
+  dependencies:
3847
+    chalk "^1.1.3"
3848
+    diff "^3.2.0"
3849
+    jest-matcher-utils "^20.0.3"
3850
+    pretty-format "^20.0.3"
3851
+
3852
+jest-docblock@^20.0.3:
3853
+  version "20.0.3"
3854
+  resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712"
3855
+
3856
+jest-environment-jsdom@^20.0.3:
3857
+  version "20.0.3"
3858
+  resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99"
3859
+  dependencies:
3860
+    jest-mock "^20.0.3"
3861
+    jest-util "^20.0.3"
3862
+    jsdom "^9.12.0"
3863
+
3864
+jest-environment-node@^20.0.3:
3865
+  version "20.0.3"
3866
+  resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403"
3867
+  dependencies:
3868
+    jest-mock "^20.0.3"
3869
+    jest-util "^20.0.3"
3870
+
3871
+jest-haste-map@^20.0.4:
3872
+  version "20.0.5"
3873
+  resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112"
3874
+  dependencies:
3875
+    fb-watchman "^2.0.0"
3876
+    graceful-fs "^4.1.11"
3877
+    jest-docblock "^20.0.3"
3878
+    micromatch "^2.3.11"
3879
+    sane "~1.6.0"
3880
+    worker-farm "^1.3.1"
3881
+
3882
+jest-jasmine2@^20.0.4:
3883
+  version "20.0.4"
3884
+  resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1"
3885
+  dependencies:
3886
+    chalk "^1.1.3"
3887
+    graceful-fs "^4.1.11"
3888
+    jest-diff "^20.0.3"
3889
+    jest-matcher-utils "^20.0.3"
3890
+    jest-matchers "^20.0.3"
3891
+    jest-message-util "^20.0.3"
3892
+    jest-snapshot "^20.0.3"
3893
+    once "^1.4.0"
3894
+    p-map "^1.1.1"
3895
+
3896
+jest-matcher-utils@^20.0.3:
3897
+  version "20.0.3"
3898
+  resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612"
3899
+  dependencies:
3900
+    chalk "^1.1.3"
3901
+    pretty-format "^20.0.3"
3902
+
3903
+jest-matchers@^20.0.3:
3904
+  version "20.0.3"
3905
+  resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60"
3906
+  dependencies:
3907
+    jest-diff "^20.0.3"
3908
+    jest-matcher-utils "^20.0.3"
3909
+    jest-message-util "^20.0.3"
3910
+    jest-regex-util "^20.0.3"
3911
+
3912
+jest-message-util@^20.0.3:
3913
+  version "20.0.3"
3914
+  resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c"
3915
+  dependencies:
3916
+    chalk "^1.1.3"
3917
+    micromatch "^2.3.11"
3918
+    slash "^1.0.0"
3919
+
3920
+jest-mock@^20.0.3:
3921
+  version "20.0.3"
3922
+  resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59"
3923
+
3924
+jest-regex-util@^20.0.3:
3925
+  version "20.0.3"
3926
+  resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762"
3927
+
3928
+jest-resolve-dependencies@^20.0.3:
3929
+  version "20.0.3"
3930
+  resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a"
3931
+  dependencies:
3932
+    jest-regex-util "^20.0.3"
3933
+
3934
+jest-resolve@^20.0.4:
3935
+  version "20.0.4"
3936
+  resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5"
3937
+  dependencies:
3938
+    browser-resolve "^1.11.2"
3939
+    is-builtin-module "^1.0.0"
3940
+    resolve "^1.3.2"
3941
+
3942
+jest-runtime@^20.0.4:
3943
+  version "20.0.4"
3944
+  resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8"
3945
+  dependencies:
3946
+    babel-core "^6.0.0"
3947
+    babel-jest "^20.0.3"
3948
+    babel-plugin-istanbul "^4.0.0"
3949
+    chalk "^1.1.3"
3950
+    convert-source-map "^1.4.0"
3951
+    graceful-fs "^4.1.11"
3952
+    jest-config "^20.0.4"
3953
+    jest-haste-map "^20.0.4"
3954
+    jest-regex-util "^20.0.3"
3955
+    jest-resolve "^20.0.4"
3956
+    jest-util "^20.0.3"
3957
+    json-stable-stringify "^1.0.1"
3958
+    micromatch "^2.3.11"
3959
+    strip-bom "3.0.0"
3960
+    yargs "^7.0.2"
3961
+
3962
+jest-snapshot@^20.0.3:
3963
+  version "20.0.3"
3964
+  resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566"
3965
+  dependencies:
3966
+    chalk "^1.1.3"
3967
+    jest-diff "^20.0.3"
3968
+    jest-matcher-utils "^20.0.3"
3969
+    jest-util "^20.0.3"
3970
+    natural-compare "^1.4.0"
3971
+    pretty-format "^20.0.3"
3972
+
3973
+jest-util@^20.0.3:
3974
+  version "20.0.3"
3975
+  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad"
3976
+  dependencies:
3977
+    chalk "^1.1.3"
3978
+    graceful-fs "^4.1.11"
3979
+    jest-message-util "^20.0.3"
3980
+    jest-mock "^20.0.3"
3981
+    jest-validate "^20.0.3"
3982
+    leven "^2.1.0"
3983
+    mkdirp "^0.5.1"
3984
+
3985
+jest-validate@^20.0.3:
3986
+  version "20.0.3"
3987
+  resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab"
3988
+  dependencies:
3989
+    chalk "^1.1.3"
3990
+    jest-matcher-utils "^20.0.3"
3991
+    leven "^2.1.0"
3992
+    pretty-format "^20.0.3"
3993
+
3994
+jest@20.0.4:
3995
+  version "20.0.4"
3996
+  resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac"
3997
+  dependencies:
3998
+    jest-cli "^20.0.4"
3999
+
4000
+js-base64@^2.1.9:
4001
+  version "2.4.3"
4002
+  resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582"
4003
+
4004
+js-tokens@^3.0.0, js-tokens@^3.0.2:
4005
+  version "3.0.2"
4006
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
4007
+
4008
+js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1:
4009
+  version "3.10.0"
4010
+  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
4011
+  dependencies:
4012
+    argparse "^1.0.7"
4013
+    esprima "^4.0.0"
4014
+
4015
+js-yaml@~3.7.0:
4016
+  version "3.7.0"
4017
+  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
4018
+  dependencies:
4019
+    argparse "^1.0.7"
4020
+    esprima "^2.6.0"
4021
+
4022
+jsbn@~0.1.0:
4023
+  version "0.1.1"
4024
+  resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
4025
+
4026
+jsdom@^9.12.0:
4027
+  version "9.12.0"
4028
+  resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4"
4029
+  dependencies:
4030
+    abab "^1.0.3"
4031
+    acorn "^4.0.4"
4032
+    acorn-globals "^3.1.0"
4033
+    array-equal "^1.0.0"
4034
+    content-type-parser "^1.0.1"
4035
+    cssom ">= 0.3.2 < 0.4.0"
4036
+    cssstyle ">= 0.2.37 < 0.3.0"
4037
+    escodegen "^1.6.1"
4038
+    html-encoding-sniffer "^1.0.1"
4039
+    nwmatcher ">= 1.3.9 < 2.0.0"
4040
+    parse5 "^1.5.1"
4041
+    request "^2.79.0"
4042
+    sax "^1.2.1"
4043
+    symbol-tree "^3.2.1"
4044
+    tough-cookie "^2.3.2"
4045
+    webidl-conversions "^4.0.0"
4046
+    whatwg-encoding "^1.0.1"
4047
+    whatwg-url "^4.3.0"
4048
+    xml-name-validator "^2.0.1"
4049
+
4050
+jsesc@^1.3.0:
4051
+  version "1.3.0"
4052
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
4053
+
4054
+jsesc@~0.5.0:
4055
+  version "0.5.0"
4056
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
4057
+
4058
+json-loader@^0.5.4:
4059
+  version "0.5.7"
4060
+  resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
4061
+
4062
+json-schema-traverse@^0.3.0:
4063
+  version "0.3.1"
4064
+  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
4065
+
4066
+json-schema@0.2.3:
4067
+  version "0.2.3"
4068
+  resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
4069
+
4070
+json-stable-stringify@^1.0.1:
4071
+  version "1.0.1"
4072
+  resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
4073
+  dependencies:
4074
+    jsonify "~0.0.0"
4075
+
4076
+json-stringify-safe@~5.0.1:
4077
+  version "5.0.1"
4078
+  resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
4079
+
4080
+json3@^3.3.2:
4081
+  version "3.3.2"
4082
+  resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
4083
+
4084
+json5@^0.5.0, json5@^0.5.1:
4085
+  version "0.5.1"
4086
+  resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
4087
+
4088
+jsonfile@^2.1.0:
4089
+  version "2.4.0"
4090
+  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
4091
+  optionalDependencies:
4092
+    graceful-fs "^4.1.6"
4093
+
4094
+jsonfile@^3.0.0:
4095
+  version "3.0.1"
4096
+  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66"
4097
+  optionalDependencies:
4098
+    graceful-fs "^4.1.6"
4099
+
4100
+jsonify@~0.0.0:
4101
+  version "0.0.0"
4102
+  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
4103
+
4104
+jsprim@^1.2.2:
4105
+  version "1.4.1"
4106
+  resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
4107
+  dependencies:
4108
+    assert-plus "1.0.0"
4109
+    extsprintf "1.3.0"
4110
+    json-schema "0.2.3"
4111
+    verror "1.10.0"
4112
+
4113
+jsx-ast-utils@^1.4.0:
4114
+  version "1.4.1"
4115
+  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
4116
+
4117
+jsx-ast-utils@^2.0.0:
4118
+  version "2.0.1"
4119
+  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f"
4120
+  dependencies:
4121
+    array-includes "^3.0.3"
4122
+
4123
+killable@^1.0.0:
4124
+  version "1.0.0"
4125
+  resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.0.tgz#da8b84bd47de5395878f95d64d02f2449fe05e6b"
4126
+
4127
+kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
4128
+  version "3.2.2"
4129
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
4130
+  dependencies:
4131
+    is-buffer "^1.1.5"
4132
+
4133
+kind-of@^4.0.0:
4134
+  version "4.0.0"
4135
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
4136
+  dependencies:
4137
+    is-buffer "^1.1.5"
4138
+
4139
+kind-of@^5.0.0:
4140
+  version "5.1.0"
4141
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
4142
+
4143
+kind-of@^6.0.0, kind-of@^6.0.2:
4144
+  version "6.0.2"
4145
+  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
4146
+
4147
+klaw@^1.0.0:
4148
+  version "1.3.1"
4149
+  resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
4150
+  optionalDependencies:
4151
+    graceful-fs "^4.1.9"
4152
+
4153
+latest-version@^3.0.0:
4154
+  version "3.1.0"
4155
+  resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
4156
+  dependencies:
4157
+    package-json "^4.0.0"
4158
+
4159
+lazy-cache@^1.0.3:
4160
+  version "1.0.4"
4161
+  resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
4162
+
4163
+lazy-cache@^2.0.2:
4164
+  version "2.0.2"
4165
+  resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264"
4166
+  dependencies:
4167
+    set-getter "^0.1.0"
4168
+
4169
+lcid@^1.0.0:
4170
+  version "1.0.0"
4171
+  resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
4172
+  dependencies:
4173
+    invert-kv "^1.0.0"
4174
+
4175
+leven@^2.1.0:
4176
+  version "2.1.0"
4177
+  resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
4178
+
4179
+levn@^0.3.0, levn@~0.3.0:
4180
+  version "0.3.0"
4181
+  resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
4182
+  dependencies:
4183
+    prelude-ls "~1.1.2"
4184
+    type-check "~0.3.2"
4185
+
4186
+load-json-file@^1.0.0:
4187
+  version "1.1.0"
4188
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
4189
+  dependencies:
4190
+    graceful-fs "^4.1.2"
4191
+    parse-json "^2.2.0"
4192
+    pify "^2.0.0"
4193
+    pinkie-promise "^2.0.0"
4194
+    strip-bom "^2.0.0"
4195
+
4196
+load-json-file@^2.0.0:
4197
+  version "2.0.0"
4198
+  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
4199
+  dependencies:
4200
+    graceful-fs "^4.1.2"
4201
+    parse-json "^2.2.0"
4202
+    pify "^2.0.0"
4203
+    strip-bom "^3.0.0"
4204
+
4205
+loader-fs-cache@^1.0.0:
4206
+  version "1.0.1"
4207
+  resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc"
4208
+  dependencies:
4209
+    find-cache-dir "^0.1.1"
4210
+    mkdirp "0.5.1"
4211
+
4212
+loader-runner@^2.3.0:
4213
+  version "2.3.0"
4214
+  resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
4215
+
4216
+loader-utils@^0.2.16:
4217
+  version "0.2.17"
4218
+  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
4219
+  dependencies:
4220
+    big.js "^3.1.3"
4221
+    emojis-list "^2.0.0"
4222
+    json5 "^0.5.0"
4223
+    object-assign "^4.0.1"
4224
+
4225
+loader-utils@^1.0.2, loader-utils@^1.1.0:
4226
+  version "1.1.0"
4227
+  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
4228
+  dependencies:
4229
+    big.js "^3.1.3"
4230
+    emojis-list "^2.0.0"
4231
+    json5 "^0.5.0"
4232
+
4233
+locate-path@^2.0.0:
4234
+  version "2.0.0"
4235
+  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
4236
+  dependencies:
4237
+    p-locate "^2.0.0"
4238
+    path-exists "^3.0.0"
4239
+
4240
+lodash._reinterpolate@~3.0.0:
4241
+  version "3.0.0"
4242
+  resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
4243
+
4244
+lodash.camelcase@^4.3.0:
4245
+  version "4.3.0"
4246
+  resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
4247
+
4248
+lodash.cond@^4.3.0:
4249
+  version "4.5.2"
4250
+  resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
4251
+
4252
+lodash.defaults@^4.2.0:
4253
+  version "4.2.0"
4254
+  resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
4255
+
4256
+lodash.memoize@^4.1.2:
4257
+  version "4.1.2"
4258
+  resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
4259
+
4260
+lodash.template@^4.4.0:
4261
+  version "4.4.0"
4262
+  resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
4263
+  dependencies:
4264
+    lodash._reinterpolate "~3.0.0"
4265
+    lodash.templatesettings "^4.0.0"
4266
+
4267
+lodash.templatesettings@^4.0.0:
4268
+  version "4.1.0"
4269
+  resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
4270
+  dependencies:
4271
+    lodash._reinterpolate "~3.0.0"
4272
+
4273
+lodash.uniq@^4.5.0:
4274
+  version "4.5.0"
4275
+  resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
4276
+
4277
+"lodash@>=3.5 <5", lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.3.0:
4278
+  version "4.17.5"
4279
+  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
4280
+
4281
+loglevel@^1.4.1:
4282
+  version "1.6.1"
4283
+  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
4284
+
4285
+longest@^1.0.1:
4286
+  version "1.0.1"
4287
+  resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
4288
+
4289
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
4290
+  version "1.3.1"
4291
+  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
4292
+  dependencies:
4293
+    js-tokens "^3.0.0"
4294
+
4295
+loud-rejection@^1.0.0:
4296
+  version "1.6.0"
4297
+  resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
4298
+  dependencies:
4299
+    currently-unhandled "^0.4.1"
4300
+    signal-exit "^3.0.0"
4301
+
4302
+lower-case@^1.1.1:
4303
+  version "1.1.4"
4304
+  resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
4305
+
4306
+lowercase-keys@^1.0.0:
4307
+  version "1.0.0"
4308
+  resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
4309
+
4310
+lru-cache@^4.0.1:
4311
+  version "4.1.1"
4312
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
4313
+  dependencies:
4314
+    pseudomap "^1.0.2"
4315
+    yallist "^2.1.2"
4316
+
4317
+macaddress@^0.2.8:
4318
+  version "0.2.8"
4319
+  resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12"
4320
+
4321
+make-dir@^1.0.0:
4322
+  version "1.2.0"
4323
+  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b"
4324
+  dependencies:
4325
+    pify "^3.0.0"
4326
+
4327
+makeerror@1.0.x:
4328
+  version "1.0.11"
4329
+  resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
4330
+  dependencies:
4331
+    tmpl "1.0.x"
4332
+
4333
+map-cache@^0.2.2:
4334
+  version "0.2.2"
4335
+  resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
4336
+
4337
+map-obj@^1.0.0, map-obj@^1.0.1:
4338
+  version "1.0.1"
4339
+  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
4340
+
4341
+map-visit@^1.0.0:
4342
+  version "1.0.0"
4343
+  resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
4344
+  dependencies:
4345
+    object-visit "^1.0.0"
4346
+
4347
+math-expression-evaluator@^1.2.14:
4348
+  version "1.2.17"
4349
+  resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
4350
+
4351
+md5.js@^1.3.4:
4352
+  version "1.3.4"
4353
+  resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
4354
+  dependencies:
4355
+    hash-base "^3.0.0"
4356
+    inherits "^2.0.1"
4357
+
4358
+media-typer@0.3.0:
4359
+  version "0.3.0"
4360
+  resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
4361
+
4362
+mem@^1.1.0:
4363
+  version "1.1.0"
4364
+  resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
4365
+  dependencies:
4366
+    mimic-fn "^1.0.0"
4367
+
4368
+memory-fs@^0.4.0, memory-fs@~0.4.1:
4369
+  version "0.4.1"
4370
+  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
4371
+  dependencies:
4372
+    errno "^0.1.3"
4373
+    readable-stream "^2.0.1"
4374
+
4375
+meow@^3.3.0, meow@^3.7.0:
4376
+  version "3.7.0"
4377
+  resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
4378
+  dependencies:
4379
+    camelcase-keys "^2.0.0"
4380
+    decamelize "^1.1.2"
4381
+    loud-rejection "^1.0.0"
4382
+    map-obj "^1.0.1"
4383
+    minimist "^1.1.3"
4384
+    normalize-package-data "^2.3.4"
4385
+    object-assign "^4.0.1"
4386
+    read-pkg-up "^1.0.1"
4387
+    redent "^1.0.0"
4388
+    trim-newlines "^1.0.0"
4389
+
4390
+merge-descriptors@1.0.1:
4391
+  version "1.0.1"
4392
+  resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
4393
+
4394
+merge@^1.1.3:
4395
+  version "1.2.0"
4396
+  resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
4397
+
4398
+methods@~1.1.2:
4399
+  version "1.1.2"
4400
+  resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
4401
+
4402
+micromatch@^2.1.5, micromatch@^2.3.11:
4403
+  version "2.3.11"
4404
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
4405
+  dependencies:
4406
+    arr-diff "^2.0.0"
4407
+    array-unique "^0.2.1"
4408
+    braces "^1.8.2"
4409
+    expand-brackets "^0.1.4"
4410
+    extglob "^0.3.1"
4411
+    filename-regex "^2.0.0"
4412
+    is-extglob "^1.0.0"
4413
+    is-glob "^2.0.1"
4414
+    kind-of "^3.0.2"
4415
+    normalize-path "^2.0.1"
4416
+    object.omit "^2.0.0"
4417
+    parse-glob "^3.0.4"
4418
+    regex-cache "^0.4.2"
4419
+
4420
+micromatch@^3.1.4:
4421
+  version "3.1.9"
4422
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89"
4423
+  dependencies:
4424
+    arr-diff "^4.0.0"
4425
+    array-unique "^0.3.2"
4426
+    braces "^2.3.1"
4427
+    define-property "^2.0.2"
4428
+    extend-shallow "^3.0.2"
4429
+    extglob "^2.0.4"
4430
+    fragment-cache "^0.2.1"
4431
+    kind-of "^6.0.2"
4432
+    nanomatch "^1.2.9"
4433
+    object.pick "^1.3.0"
4434
+    regex-not "^1.0.0"
4435
+    snapdragon "^0.8.1"
4436
+    to-regex "^3.0.1"
4437
+
4438
+miller-rabin@^4.0.0:
4439
+  version "4.0.1"
4440
+  resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
4441
+  dependencies:
4442
+    bn.js "^4.0.0"
4443
+    brorand "^1.0.1"
4444
+
4445
+"mime-db@>= 1.33.0 < 2", mime-db@~1.33.0:
4446
+  version "1.33.0"
4447
+  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
4448
+
4449
+mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.7:
4450
+  version "2.1.18"
4451
+  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
4452
+  dependencies:
4453
+    mime-db "~1.33.0"
4454
+
4455
+mime@1.4.1:
4456
+  version "1.4.1"
4457
+  resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
4458
+
4459
+mime@^1.4.1, mime@^1.5.0:
4460
+  version "1.6.0"
4461
+  resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
4462
+
4463
+mimic-fn@^1.0.0:
4464
+  version "1.2.0"
4465
+  resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
4466
+
4467
+minimalistic-assert@^1.0.0:
4468
+  version "1.0.0"
4469
+  resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
4470
+
4471
+minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
4472
+  version "1.0.1"
4473
+  resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
4474
+
4475
+minimatch@3.0.3:
4476
+  version "3.0.3"
4477
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
4478
+  dependencies:
4479
+    brace-expansion "^1.0.0"
4480
+
4481
+minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
4482
+  version "3.0.4"
4483
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
4484
+  dependencies:
4485
+    brace-expansion "^1.1.7"
4486
+
4487
+minimist@0.0.8:
4488
+  version "0.0.8"
4489
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
4490
+
4491
+minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
4492
+  version "1.2.0"
4493
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
4494
+
4495
+minimist@~0.0.1:
4496
+  version "0.0.10"
4497
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
4498
+
4499
+mixin-deep@^1.2.0:
4500
+  version "1.3.1"
4501
+  resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
4502
+  dependencies:
4503
+    for-in "^1.0.2"
4504
+    is-extendable "^1.0.1"
4505
+
4506
+mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
4507
+  version "0.5.1"
4508
+  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
4509
+  dependencies:
4510
+    minimist "0.0.8"
4511
+
4512
+ms@2.0.0:
4513
+  version "2.0.0"
4514
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
4515
+
4516
+multicast-dns-service-types@^1.1.0:
4517
+  version "1.1.0"
4518
+  resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
4519
+
4520
+multicast-dns@^6.0.1:
4521
+  version "6.2.3"
4522
+  resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
4523
+  dependencies:
4524
+    dns-packet "^1.3.1"
4525
+    thunky "^1.0.2"
4526
+
4527
+mute-stream@0.0.7:
4528
+  version "0.0.7"
4529
+  resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
4530
+
4531
+nan@^2.3.0:
4532
+  version "2.9.2"
4533
+  resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866"
4534
+
4535
+nanomatch@^1.2.9:
4536
+  version "1.2.9"
4537
+  resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2"
4538
+  dependencies:
4539
+    arr-diff "^4.0.0"
4540
+    array-unique "^0.3.2"
4541
+    define-property "^2.0.2"
4542
+    extend-shallow "^3.0.2"
4543
+    fragment-cache "^0.2.1"
4544
+    is-odd "^2.0.0"
4545
+    is-windows "^1.0.2"
4546
+    kind-of "^6.0.2"
4547
+    object.pick "^1.3.0"
4548
+    regex-not "^1.0.0"
4549
+    snapdragon "^0.8.1"
4550
+    to-regex "^3.0.1"
4551
+
4552
+natural-compare@^1.4.0:
4553
+  version "1.4.0"
4554
+  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
4555
+
4556
+ncname@1.0.x:
4557
+  version "1.0.0"
4558
+  resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c"
4559
+  dependencies:
4560
+    xml-char-classes "^1.0.0"
4561
+
4562
+negotiator@0.6.1:
4563
+  version "0.6.1"
4564
+  resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
4565
+
4566
+neo-async@^2.5.0:
4567
+  version "2.5.0"
4568
+  resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.0.tgz#76b1c823130cca26acfbaccc8fbaf0a2fa33b18f"
4569
+
4570
+no-case@^2.2.0:
4571
+  version "2.3.2"
4572
+  resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
4573
+  dependencies:
4574
+    lower-case "^1.1.1"
4575
+
4576
+node-fetch@^1.0.1:
4577
+  version "1.7.3"
4578
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
4579
+  dependencies:
4580
+    encoding "^0.1.11"
4581
+    is-stream "^1.0.1"
4582
+
4583
+node-forge@0.7.1:
4584
+  version "0.7.1"
4585
+  resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.1.tgz#9da611ea08982f4b94206b3beb4cc9665f20c300"
4586
+
4587
+node-int64@^0.4.0:
4588
+  version "0.4.0"
4589
+  resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
4590
+
4591
+node-libs-browser@^2.0.0:
4592
+  version "2.1.0"
4593
+  resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df"
4594
+  dependencies:
4595
+    assert "^1.1.1"
4596
+    browserify-zlib "^0.2.0"
4597
+    buffer "^4.3.0"
4598
+    console-browserify "^1.1.0"
4599
+    constants-browserify "^1.0.0"
4600
+    crypto-browserify "^3.11.0"
4601
+    domain-browser "^1.1.1"
4602
+    events "^1.0.0"
4603
+    https-browserify "^1.0.0"
4604
+    os-browserify "^0.3.0"
4605
+    path-browserify "0.0.0"
4606
+    process "^0.11.10"
4607
+    punycode "^1.2.4"
4608
+    querystring-es3 "^0.2.0"
4609
+    readable-stream "^2.3.3"
4610
+    stream-browserify "^2.0.1"
4611
+    stream-http "^2.7.2"
4612
+    string_decoder "^1.0.0"
4613
+    timers-browserify "^2.0.4"
4614
+    tty-browserify "0.0.0"
4615
+    url "^0.11.0"
4616
+    util "^0.10.3"
4617
+    vm-browserify "0.0.4"
4618
+
4619
+node-notifier@^5.0.2:
4620
+  version "5.2.1"
4621
+  resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea"
4622
+  dependencies:
4623
+    growly "^1.3.0"
4624
+    semver "^5.4.1"
4625
+    shellwords "^0.1.1"
4626
+    which "^1.3.0"
4627
+
4628
+node-pre-gyp@^0.6.39:
4629
+  version "0.6.39"
4630
+  resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
4631
+  dependencies:
4632
+    detect-libc "^1.0.2"
4633
+    hawk "3.1.3"
4634
+    mkdirp "^0.5.1"
4635
+    nopt "^4.0.1"
4636
+    npmlog "^4.0.2"
4637
+    rc "^1.1.7"
4638
+    request "2.81.0"
4639
+    rimraf "^2.6.1"
4640
+    semver "^5.3.0"
4641
+    tar "^2.2.1"
4642
+    tar-pack "^3.4.0"
4643
+
4644
+nopt@^4.0.1:
4645
+  version "4.0.1"
4646
+  resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
4647
+  dependencies:
4648
+    abbrev "1"
4649
+    osenv "^0.1.4"
4650
+
4651
+normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
4652
+  version "2.4.0"
4653
+  resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
4654
+  dependencies:
4655
+    hosted-git-info "^2.1.4"
4656
+    is-builtin-module "^1.0.0"
4657
+    semver "2 || 3 || 4 || 5"
4658
+    validate-npm-package-license "^3.0.1"
4659
+
4660
+normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
4661
+  version "2.1.1"
4662
+  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
4663
+  dependencies:
4664
+    remove-trailing-separator "^1.0.1"
4665
+
4666
+normalize-range@^0.1.2:
4667
+  version "0.1.2"
4668
+  resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
4669
+
4670
+normalize-url@^1.4.0:
4671
+  version "1.9.1"
4672
+  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
4673
+  dependencies:
4674
+    object-assign "^4.0.1"
4675
+    prepend-http "^1.0.0"
4676
+    query-string "^4.1.0"
4677
+    sort-keys "^1.0.0"
4678
+
4679
+npm-run-path@^2.0.0:
4680
+  version "2.0.2"
4681
+  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
4682
+  dependencies:
4683
+    path-key "^2.0.0"
4684
+
4685
+npmlog@^4.0.2:
4686
+  version "4.1.2"
4687
+  resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
4688
+  dependencies:
4689
+    are-we-there-yet "~1.1.2"
4690
+    console-control-strings "~1.1.0"
4691
+    gauge "~2.7.3"
4692
+    set-blocking "~2.0.0"
4693
+
4694
+nth-check@~1.0.1:
4695
+  version "1.0.1"
4696
+  resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
4697
+  dependencies:
4698
+    boolbase "~1.0.0"
4699
+
4700
+num2fraction@^1.2.2:
4701
+  version "1.2.2"
4702
+  resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
4703
+
4704
+number-is-nan@^1.0.0:
4705
+  version "1.0.1"
4706
+  resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
4707
+
4708
+"nwmatcher@>= 1.3.9 < 2.0.0":
4709
+  version "1.4.3"
4710
+  resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
4711
+
4712
+oauth-sign@~0.8.1, oauth-sign@~0.8.2:
4713
+  version "0.8.2"
4714
+  resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
4715
+
4716
+object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
4717
+  version "4.1.1"
4718
+  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
4719
+
4720
+object-copy@^0.1.0:
4721
+  version "0.1.0"
4722
+  resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
4723
+  dependencies:
4724
+    copy-descriptor "^0.1.0"
4725
+    define-property "^0.2.5"
4726
+    kind-of "^3.0.3"
4727
+
4728
+object-hash@^1.1.4:
4729
+  version "1.2.0"
4730
+  resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.2.0.tgz#e96af0e96981996a1d47f88ead8f74f1ebc4422b"
4731
+
4732
+object-keys@^1.0.8:
4733
+  version "1.0.11"
4734
+  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
4735
+
4736
+object-visit@^1.0.0:
4737
+  version "1.0.1"
4738
+  resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
4739
+  dependencies:
4740
+    isobject "^3.0.0"
4741
+
4742
+object.omit@^2.0.0:
4743
+  version "2.0.1"
4744
+  resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
4745
+  dependencies:
4746
+    for-own "^0.1.4"
4747
+    is-extendable "^0.1.1"
4748
+
4749
+object.pick@^1.3.0:
4750
+  version "1.3.0"
4751
+  resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
4752
+  dependencies:
4753
+    isobject "^3.0.1"
4754
+
4755
+obuf@^1.0.0, obuf@^1.1.1:
4756
+  version "1.1.1"
4757
+  resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e"
4758
+
4759
+on-finished@~2.3.0:
4760
+  version "2.3.0"
4761
+  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
4762
+  dependencies:
4763
+    ee-first "1.1.1"
4764
+
4765
+on-headers@~1.0.1:
4766
+  version "1.0.1"
4767
+  resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
4768
+
4769
+once@^1.3.0, once@^1.3.3, once@^1.4.0:
4770
+  version "1.4.0"
4771
+  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
4772
+  dependencies:
4773
+    wrappy "1"
4774
+
4775
+onetime@^2.0.0:
4776
+  version "2.0.1"
4777
+  resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
4778
+  dependencies:
4779
+    mimic-fn "^1.0.0"
4780
+
4781
+opn@5.2.0, opn@^5.1.0:
4782
+  version "5.2.0"
4783
+  resolved "https://registry.yarnpkg.com/opn/-/opn-5.2.0.tgz#71fdf934d6827d676cecbea1531f95d354641225"
4784
+  dependencies:
4785
+    is-wsl "^1.1.0"
4786
+
4787
+optimist@^0.6.1:
4788
+  version "0.6.1"
4789
+  resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
4790
+  dependencies:
4791
+    minimist "~0.0.1"
4792
+    wordwrap "~0.0.2"
4793
+
4794
+optionator@^0.8.1, optionator@^0.8.2:
4795
+  version "0.8.2"
4796
+  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
4797
+  dependencies:
4798
+    deep-is "~0.1.3"
4799
+    fast-levenshtein "~2.0.4"
4800
+    levn "~0.3.0"
4801
+    prelude-ls "~1.1.2"
4802
+    type-check "~0.3.2"
4803
+    wordwrap "~1.0.0"
4804
+
4805
+original@>=0.0.5:
4806
+  version "1.0.0"
4807
+  resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b"
4808
+  dependencies:
4809
+    url-parse "1.0.x"
4810
+
4811
+os-browserify@^0.3.0:
4812
+  version "0.3.0"
4813
+  resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
4814
+
4815
+os-homedir@^1.0.0, os-homedir@^1.0.1:
4816
+  version "1.0.2"
4817
+  resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
4818
+
4819
+os-locale@^1.4.0:
4820
+  version "1.4.0"
4821
+  resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
4822
+  dependencies:
4823
+    lcid "^1.0.0"
4824
+
4825
+os-locale@^2.0.0:
4826
+  version "2.1.0"
4827
+  resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
4828
+  dependencies:
4829
+    execa "^0.7.0"
4830
+    lcid "^1.0.0"
4831
+    mem "^1.1.0"
4832
+
4833
+os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
4834
+  version "1.0.2"
4835
+  resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
4836
+
4837
+osenv@^0.1.4:
4838
+  version "0.1.5"
4839
+  resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
4840
+  dependencies:
4841
+    os-homedir "^1.0.0"
4842
+    os-tmpdir "^1.0.0"
4843
+
4844
+p-finally@^1.0.0:
4845
+  version "1.0.0"
4846
+  resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
4847
+
4848
+p-limit@^1.1.0:
4849
+  version "1.2.0"
4850
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
4851
+  dependencies:
4852
+    p-try "^1.0.0"
4853
+
4854
+p-locate@^2.0.0:
4855
+  version "2.0.0"
4856
+  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
4857
+  dependencies:
4858
+    p-limit "^1.1.0"
4859
+
4860
+p-map@^1.1.1:
4861
+  version "1.2.0"
4862
+  resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
4863
+
4864
+p-try@^1.0.0:
4865
+  version "1.0.0"
4866
+  resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
4867
+
4868
+package-json@^4.0.0:
4869
+  version "4.0.1"
4870
+  resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
4871
+  dependencies:
4872
+    got "^6.7.1"
4873
+    registry-auth-token "^3.0.1"
4874
+    registry-url "^3.0.3"
4875
+    semver "^5.1.0"
4876
+
4877
+pako@~1.0.5:
4878
+  version "1.0.6"
4879
+  resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258"
4880
+
4881
+param-case@2.1.x:
4882
+  version "2.1.1"
4883
+  resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
4884
+  dependencies:
4885
+    no-case "^2.2.0"
4886
+
4887
+parse-asn1@^5.0.0:
4888
+  version "5.1.0"
4889
+  resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
4890
+  dependencies:
4891
+    asn1.js "^4.0.0"
4892
+    browserify-aes "^1.0.0"
4893
+    create-hash "^1.1.0"
4894
+    evp_bytestokey "^1.0.0"
4895
+    pbkdf2 "^3.0.3"
4896
+
4897
+parse-glob@^3.0.4:
4898
+  version "3.0.4"
4899
+  resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
4900
+  dependencies:
4901
+    glob-base "^0.3.0"
4902
+    is-dotfile "^1.0.0"
4903
+    is-extglob "^1.0.0"
4904
+    is-glob "^2.0.0"
4905
+
4906
+parse-json@^2.2.0:
4907
+  version "2.2.0"
4908
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
4909
+  dependencies:
4910
+    error-ex "^1.2.0"
4911
+
4912
+parse-passwd@^1.0.0:
4913
+  version "1.0.0"
4914
+  resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
4915
+
4916
+parse5@^1.5.1:
4917
+  version "1.5.1"
4918
+  resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"
4919
+
4920
+parseurl@~1.3.2:
4921
+  version "1.3.2"
4922
+  resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
4923
+
4924
+pascalcase@^0.1.1:
4925
+  version "0.1.1"
4926
+  resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
4927
+
4928
+path-browserify@0.0.0:
4929
+  version "0.0.0"
4930
+  resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
4931
+
4932
+path-dirname@^1.0.0:
4933
+  version "1.0.2"
4934
+  resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
4935
+
4936
+path-exists@^2.0.0:
4937
+  version "2.1.0"
4938
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
4939
+  dependencies:
4940
+    pinkie-promise "^2.0.0"
4941
+
4942
+path-exists@^3.0.0:
4943
+  version "3.0.0"
4944
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
4945
+
4946
+path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
4947
+  version "1.0.1"
4948
+  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
4949
+
4950
+path-is-inside@^1.0.1, path-is-inside@^1.0.2:
4951
+  version "1.0.2"
4952
+  resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
4953
+
4954
+path-key@^2.0.0:
4955
+  version "2.0.1"
4956
+  resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
4957
+
4958
+path-parse@^1.0.5:
4959
+  version "1.0.5"
4960
+  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
4961
+
4962
+path-to-regexp@0.1.7:
4963
+  version "0.1.7"
4964
+  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
4965
+
4966
+path-to-regexp@^1.0.1:
4967
+  version "1.7.0"
4968
+  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d"
4969
+  dependencies:
4970
+    isarray "0.0.1"
4971
+
4972
+path-type@^1.0.0:
4973
+  version "1.1.0"
4974
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
4975
+  dependencies:
4976
+    graceful-fs "^4.1.2"
4977
+    pify "^2.0.0"
4978
+    pinkie-promise "^2.0.0"
4979
+
4980
+path-type@^2.0.0:
4981
+  version "2.0.0"
4982
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
4983
+  dependencies:
4984
+    pify "^2.0.0"
4985
+
4986
+pbkdf2@^3.0.3:
4987
+  version "3.0.14"
4988
+  resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
4989
+  dependencies:
4990
+    create-hash "^1.1.2"
4991
+    create-hmac "^1.1.4"
4992
+    ripemd160 "^2.0.1"
4993
+    safe-buffer "^5.0.1"
4994
+    sha.js "^2.4.8"
4995
+
4996
+performance-now@^0.2.0:
4997
+  version "0.2.0"
4998
+  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
4999
+
5000
+performance-now@^2.1.0:
5001
+  version "2.1.0"
5002
+  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
5003
+
5004
+pify@^2.0.0, pify@^2.3.0:
5005
+  version "2.3.0"
5006
+  resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
5007
+
5008
+pify@^3.0.0:
5009
+  version "3.0.0"
5010
+  resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
5011
+
5012
+pinkie-promise@^2.0.0:
5013
+  version "2.0.1"
5014
+  resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
5015
+  dependencies:
5016
+    pinkie "^2.0.0"
5017
+
5018
+pinkie@^2.0.0:
5019
+  version "2.0.4"
5020
+  resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
5021
+
5022
+pkg-dir@^1.0.0:
5023
+  version "1.0.0"
5024
+  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
5025
+  dependencies:
5026
+    find-up "^1.0.0"
5027
+
5028
+pkg-dir@^2.0.0:
5029
+  version "2.0.0"
5030
+  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
5031
+  dependencies:
5032
+    find-up "^2.1.0"
5033
+
5034
+pluralize@^7.0.0:
5035
+  version "7.0.0"
5036
+  resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
5037
+
5038
+portfinder@^1.0.9:
5039
+  version "1.0.13"
5040
+  resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9"
5041
+  dependencies:
5042
+    async "^1.5.2"
5043
+    debug "^2.2.0"
5044
+    mkdirp "0.5.x"
5045
+
5046
+posix-character-classes@^0.1.0:
5047
+  version "0.1.1"
5048
+  resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
5049
+
5050
+postcss-calc@^5.2.0:
5051
+  version "5.3.1"
5052
+  resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
5053
+  dependencies:
5054
+    postcss "^5.0.2"
5055
+    postcss-message-helpers "^2.0.0"
5056
+    reduce-css-calc "^1.2.6"
5057
+
5058
+postcss-colormin@^2.1.8:
5059
+  version "2.2.2"
5060
+  resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
5061
+  dependencies:
5062
+    colormin "^1.0.5"
5063
+    postcss "^5.0.13"
5064
+    postcss-value-parser "^3.2.3"
5065
+
5066
+postcss-convert-values@^2.3.4:
5067
+  version "2.6.1"
5068
+  resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
5069
+  dependencies:
5070
+    postcss "^5.0.11"
5071
+    postcss-value-parser "^3.1.2"
5072
+
5073
+postcss-discard-comments@^2.0.4:
5074
+  version "2.0.4"
5075
+  resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
5076
+  dependencies:
5077
+    postcss "^5.0.14"
5078
+
5079
+postcss-discard-duplicates@^2.0.1:
5080
+  version "2.1.0"
5081
+  resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
5082
+  dependencies:
5083
+    postcss "^5.0.4"
5084
+
5085
+postcss-discard-empty@^2.0.1:
5086
+  version "2.1.0"
5087
+  resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
5088
+  dependencies:
5089
+    postcss "^5.0.14"
5090
+
5091
+postcss-discard-overridden@^0.1.1:
5092
+  version "0.1.1"
5093
+  resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
5094
+  dependencies:
5095
+    postcss "^5.0.16"
5096
+
5097
+postcss-discard-unused@^2.2.1:
5098
+  version "2.2.3"
5099
+  resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
5100
+  dependencies:
5101
+    postcss "^5.0.14"
5102
+    uniqs "^2.0.0"
5103
+
5104
+postcss-filter-plugins@^2.0.0:
5105
+  version "2.0.2"
5106
+  resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c"
5107
+  dependencies:
5108
+    postcss "^5.0.4"
5109
+    uniqid "^4.0.0"
5110
+
5111
+postcss-flexbugs-fixes@3.2.0:
5112
+  version "3.2.0"
5113
+  resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz#9b8b932c53f9cf13ba0f61875303e447c33dcc51"
5114
+  dependencies:
5115
+    postcss "^6.0.1"
5116
+
5117
+postcss-load-config@^1.2.0:
5118
+  version "1.2.0"
5119
+  resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
5120
+  dependencies:
5121
+    cosmiconfig "^2.1.0"
5122
+    object-assign "^4.1.0"
5123
+    postcss-load-options "^1.2.0"
5124
+    postcss-load-plugins "^2.3.0"
5125
+
5126
+postcss-load-options@^1.2.0:
5127
+  version "1.2.0"
5128
+  resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
5129
+  dependencies:
5130
+    cosmiconfig "^2.1.0"
5131
+    object-assign "^4.1.0"
5132
+
5133
+postcss-load-plugins@^2.3.0:
5134
+  version "2.3.0"
5135
+  resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
5136
+  dependencies:
5137
+    cosmiconfig "^2.1.1"
5138
+    object-assign "^4.1.0"
5139
+
5140
+postcss-loader@2.0.8:
5141
+  version "2.0.8"
5142
+  resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.8.tgz#8c67ddb029407dfafe684a406cfc16bad2ce0814"
5143
+  dependencies:
5144
+    loader-utils "^1.1.0"
5145
+    postcss "^6.0.0"
5146
+    postcss-load-config "^1.2.0"
5147
+    schema-utils "^0.3.0"
5148
+
5149
+postcss-merge-idents@^2.1.5:
5150
+  version "2.1.7"
5151
+  resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
5152
+  dependencies:
5153
+    has "^1.0.1"
5154
+    postcss "^5.0.10"
5155
+    postcss-value-parser "^3.1.1"
5156
+
5157
+postcss-merge-longhand@^2.0.1:
5158
+  version "2.0.2"
5159
+  resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
5160
+  dependencies:
5161
+    postcss "^5.0.4"
5162
+
5163
+postcss-merge-rules@^2.0.3:
5164
+  version "2.1.2"
5165
+  resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
5166
+  dependencies:
5167
+    browserslist "^1.5.2"
5168
+    caniuse-api "^1.5.2"
5169
+    postcss "^5.0.4"
5170
+    postcss-selector-parser "^2.2.2"
5171
+    vendors "^1.0.0"
5172
+
5173
+postcss-message-helpers@^2.0.0:
5174
+  version "2.0.0"
5175
+  resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
5176
+
5177
+postcss-minify-font-values@^1.0.2:
5178
+  version "1.0.5"
5179
+  resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
5180
+  dependencies:
5181
+    object-assign "^4.0.1"
5182
+    postcss "^5.0.4"
5183
+    postcss-value-parser "^3.0.2"
5184
+
5185
+postcss-minify-gradients@^1.0.1:
5186
+  version "1.0.5"
5187
+  resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
5188
+  dependencies:
5189
+    postcss "^5.0.12"
5190
+    postcss-value-parser "^3.3.0"
5191
+
5192
+postcss-minify-params@^1.0.4:
5193
+  version "1.2.2"
5194
+  resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
5195
+  dependencies:
5196
+    alphanum-sort "^1.0.1"
5197
+    postcss "^5.0.2"
5198
+    postcss-value-parser "^3.0.2"
5199
+    uniqs "^2.0.0"
5200
+
5201
+postcss-minify-selectors@^2.0.4:
5202
+  version "2.1.1"
5203
+  resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
5204
+  dependencies:
5205
+    alphanum-sort "^1.0.2"
5206
+    has "^1.0.1"
5207
+    postcss "^5.0.14"
5208
+    postcss-selector-parser "^2.0.0"
5209
+
5210
+postcss-modules-extract-imports@^1.0.0:
5211
+  version "1.1.0"
5212
+  resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb"
5213
+  dependencies:
5214
+    postcss "^6.0.1"
5215
+
5216
+postcss-modules-local-by-default@^1.0.1:
5217
+  version "1.2.0"
5218
+  resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
5219
+  dependencies:
5220
+    css-selector-tokenizer "^0.7.0"
5221
+    postcss "^6.0.1"
5222
+
5223
+postcss-modules-scope@^1.0.0:
5224
+  version "1.1.0"
5225
+  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
5226
+  dependencies:
5227
+    css-selector-tokenizer "^0.7.0"
5228
+    postcss "^6.0.1"
5229
+
5230
+postcss-modules-values@^1.1.0:
5231
+  version "1.3.0"
5232
+  resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
5233
+  dependencies:
5234
+    icss-replace-symbols "^1.1.0"
5235
+    postcss "^6.0.1"
5236
+
5237
+postcss-normalize-charset@^1.1.0:
5238
+  version "1.1.1"
5239
+  resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
5240
+  dependencies:
5241
+    postcss "^5.0.5"
5242
+
5243
+postcss-normalize-url@^3.0.7:
5244
+  version "3.0.8"
5245
+  resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
5246
+  dependencies:
5247
+    is-absolute-url "^2.0.0"
5248
+    normalize-url "^1.4.0"
5249
+    postcss "^5.0.14"
5250
+    postcss-value-parser "^3.2.3"
5251
+
5252
+postcss-ordered-values@^2.1.0:
5253
+  version "2.2.3"
5254
+  resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
5255
+  dependencies:
5256
+    postcss "^5.0.4"
5257
+    postcss-value-parser "^3.0.1"
5258
+
5259
+postcss-reduce-idents@^2.2.2:
5260
+  version "2.4.0"
5261
+  resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
5262
+  dependencies:
5263
+    postcss "^5.0.4"
5264
+    postcss-value-parser "^3.0.2"
5265
+
5266
+postcss-reduce-initial@^1.0.0:
5267
+  version "1.0.1"
5268
+  resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
5269
+  dependencies:
5270
+    postcss "^5.0.4"
5271
+
5272
+postcss-reduce-transforms@^1.0.3:
5273
+  version "1.0.4"
5274
+  resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
5275
+  dependencies:
5276
+    has "^1.0.1"
5277
+    postcss "^5.0.8"
5278
+    postcss-value-parser "^3.0.1"
5279
+
5280
+postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
5281
+  version "2.2.3"
5282
+  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
5283
+  dependencies:
5284
+    flatten "^1.0.2"
5285
+    indexes-of "^1.0.1"
5286
+    uniq "^1.0.1"
5287
+
5288
+postcss-svgo@^2.1.1:
5289
+  version "2.1.6"
5290
+  resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
5291
+  dependencies:
5292
+    is-svg "^2.0.0"
5293
+    postcss "^5.0.14"
5294
+    postcss-value-parser "^3.2.3"
5295
+    svgo "^0.7.0"
5296
+
5297
+postcss-unique-selectors@^2.0.2:
5298
+  version "2.0.2"
5299
+  resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
5300
+  dependencies:
5301
+    alphanum-sort "^1.0.1"
5302
+    postcss "^5.0.4"
5303
+    uniqs "^2.0.0"
5304
+
5305
+postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
5306
+  version "3.3.0"
5307
+  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
5308
+
5309
+postcss-zindex@^2.0.1:
5310
+  version "2.2.0"
5311
+  resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
5312
+  dependencies:
5313
+    has "^1.0.1"
5314
+    postcss "^5.0.4"
5315
+    uniqs "^2.0.0"
5316
+
5317
+postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16:
5318
+  version "5.2.18"
5319
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
5320
+  dependencies:
5321
+    chalk "^1.1.3"
5322
+    js-base64 "^2.1.9"
5323
+    source-map "^0.5.6"
5324
+    supports-color "^3.2.3"
5325
+
5326
+postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.13:
5327
+  version "6.0.19"
5328
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.19.tgz#76a78386f670b9d9494a655bf23ac012effd1555"
5329
+  dependencies:
5330
+    chalk "^2.3.1"
5331
+    source-map "^0.6.1"
5332
+    supports-color "^5.2.0"
5333
+
5334
+prelude-ls@~1.1.2:
5335
+  version "1.1.2"
5336
+  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
5337
+
5338
+prepend-http@^1.0.0, prepend-http@^1.0.1:
5339
+  version "1.0.4"
5340
+  resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
5341
+
5342
+preserve@^0.2.0:
5343
+  version "0.2.0"
5344
+  resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
5345
+
5346
+pretty-bytes@^4.0.2:
5347
+  version "4.0.2"
5348
+  resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
5349
+
5350
+pretty-error@^2.0.2:
5351
+  version "2.1.1"
5352
+  resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"
5353
+  dependencies:
5354
+    renderkid "^2.0.1"
5355
+    utila "~0.4"
5356
+
5357
+pretty-format@^20.0.3:
5358
+  version "20.0.3"
5359
+  resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14"
5360
+  dependencies:
5361
+    ansi-regex "^2.1.1"
5362
+    ansi-styles "^3.0.0"
5363
+
5364
+private@^0.1.6, private@^0.1.7:
5365
+  version "0.1.8"
5366
+  resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
5367
+
5368
+process-nextick-args@~2.0.0:
5369
+  version "2.0.0"
5370
+  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
5371
+
5372
+process@^0.11.10:
5373
+  version "0.11.10"
5374
+  resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
5375
+
5376
+progress@^2.0.0:
5377
+  version "2.0.0"
5378
+  resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
5379
+
5380
+promise@8.0.1:
5381
+  version "8.0.1"
5382
+  resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.1.tgz#e45d68b00a17647b6da711bf85ed6ed47208f450"
5383
+  dependencies:
5384
+    asap "~2.0.3"
5385
+
5386
+promise@^7.1.1:
5387
+  version "7.3.1"
5388
+  resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
5389
+  dependencies:
5390
+    asap "~2.0.3"
5391
+
5392
+prop-types@^15.5.10, prop-types@^15.6.0:
5393
+  version "15.6.1"
5394
+  resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca"
5395
+  dependencies:
5396
+    fbjs "^0.8.16"
5397
+    loose-envify "^1.3.1"
5398
+    object-assign "^4.1.1"
5399
+
5400
+proxy-addr@~2.0.2:
5401
+  version "2.0.3"
5402
+  resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
5403
+  dependencies:
5404
+    forwarded "~0.1.2"
5405
+    ipaddr.js "1.6.0"
5406
+
5407
+prr@~1.0.1:
5408
+  version "1.0.1"
5409
+  resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
5410
+
5411
+pseudomap@^1.0.2:
5412
+  version "1.0.2"
5413
+  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
5414
+
5415
+public-encrypt@^4.0.0:
5416
+  version "4.0.0"
5417
+  resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
5418
+  dependencies:
5419
+    bn.js "^4.1.0"
5420
+    browserify-rsa "^4.0.0"
5421
+    create-hash "^1.1.0"
5422
+    parse-asn1 "^5.0.0"
5423
+    randombytes "^2.0.1"
5424
+
5425
+punycode@1.3.2:
5426
+  version "1.3.2"
5427
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
5428
+
5429
+punycode@^1.2.4, punycode@^1.4.1:
5430
+  version "1.4.1"
5431
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
5432
+
5433
+q@^1.1.2:
5434
+  version "1.5.1"
5435
+  resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
5436
+
5437
+qs@6.5.1, qs@~6.5.1:
5438
+  version "6.5.1"
5439
+  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
5440
+
5441
+qs@~6.4.0:
5442
+  version "6.4.0"
5443
+  resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
5444
+
5445
+query-string@^4.1.0:
5446
+  version "4.3.4"
5447
+  resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
5448
+  dependencies:
5449
+    object-assign "^4.1.0"
5450
+    strict-uri-encode "^1.0.0"
5451
+
5452
+querystring-es3@^0.2.0:
5453
+  version "0.2.1"
5454
+  resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
5455
+
5456
+querystring@0.2.0:
5457
+  version "0.2.0"
5458
+  resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
5459
+
5460
+querystringify@0.0.x:
5461
+  version "0.0.4"
5462
+  resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c"
5463
+
5464
+querystringify@~1.0.0:
5465
+  version "1.0.0"
5466
+  resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb"
5467
+
5468
+raf@3.4.0:
5469
+  version "3.4.0"
5470
+  resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575"
5471
+  dependencies:
5472
+    performance-now "^2.1.0"
5473
+
5474
+randomatic@^1.1.3:
5475
+  version "1.1.7"
5476
+  resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
5477
+  dependencies:
5478
+    is-number "^3.0.0"
5479
+    kind-of "^4.0.0"
5480
+
5481
+randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
5482
+  version "2.0.6"
5483
+  resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80"
5484
+  dependencies:
5485
+    safe-buffer "^5.1.0"
5486
+
5487
+randomfill@^1.0.3:
5488
+  version "1.0.4"
5489
+  resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
5490
+  dependencies:
5491
+    randombytes "^2.0.5"
5492
+    safe-buffer "^5.1.0"
5493
+
5494
+range-parser@^1.0.3, range-parser@~1.2.0:
5495
+  version "1.2.0"
5496
+  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
5497
+
5498
+raw-body@2.3.2:
5499
+  version "2.3.2"
5500
+  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
5501
+  dependencies:
5502
+    bytes "3.0.0"
5503
+    http-errors "1.6.2"
5504
+    iconv-lite "0.4.19"
5505
+    unpipe "1.0.0"
5506
+
5507
+rc@^1.0.1, rc@^1.1.6, rc@^1.1.7:
5508
+  version "1.2.5"
5509
+  resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd"
5510
+  dependencies:
5511
+    deep-extend "~0.4.0"
5512
+    ini "~1.3.0"
5513
+    minimist "^1.2.0"
5514
+    strip-json-comments "~2.0.1"
5515
+
5516
+react-dev-utils@^5.0.0:
5517
+  version "5.0.0"
5518
+  resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-5.0.0.tgz#425ac7c9c40c2603bc4f7ab8836c1406e96bb473"
5519
+  dependencies:
5520
+    address "1.0.3"
5521
+    babel-code-frame "6.26.0"
5522
+    chalk "1.1.3"
5523
+    cross-spawn "5.1.0"
5524
+    detect-port-alt "1.1.5"
5525
+    escape-string-regexp "1.0.5"
5526
+    filesize "3.5.11"
5527
+    global-modules "1.0.0"
5528
+    gzip-size "3.0.0"
5529
+    inquirer "3.3.0"
5530
+    is-root "1.0.0"
5531
+    opn "5.2.0"
5532
+    react-error-overlay "^4.0.0"
5533
+    recursive-readdir "2.2.1"
5534
+    shell-quote "1.6.1"
5535
+    sockjs-client "1.1.4"
5536
+    strip-ansi "3.0.1"
5537
+    text-table "0.2.0"
5538
+
5539
+react-dom@16.2.0:
5540
+  version "16.2.0"
5541
+  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.2.0.tgz#69003178601c0ca19b709b33a83369fe6124c044"
5542
+  dependencies:
5543
+    fbjs "^0.8.16"
5544
+    loose-envify "^1.1.0"
5545
+    object-assign "^4.1.1"
5546
+    prop-types "^15.6.0"
5547
+
5548
+react-error-overlay@^4.0.0:
5549
+  version "4.0.0"
5550
+  resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-4.0.0.tgz#d198408a85b4070937a98667f500c832f86bd5d4"
5551
+
5552
+react-scripts@1.1.1:
5553
+  version "1.1.1"
5554
+  resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-1.1.1.tgz#279d449f7311fed910506987a1ade014027788a8"
5555
+  dependencies:
5556
+    autoprefixer "7.1.6"
5557
+    babel-core "6.26.0"
5558
+    babel-eslint "7.2.3"
5559
+    babel-jest "20.0.3"
5560
+    babel-loader "7.1.2"
5561
+    babel-preset-react-app "^3.1.1"
5562
+    babel-runtime "6.26.0"
5563
+    case-sensitive-paths-webpack-plugin "2.1.1"
5564
+    chalk "1.1.3"
5565
+    css-loader "0.28.7"
5566
+    dotenv "4.0.0"
5567
+    dotenv-expand "4.2.0"
5568
+    eslint "4.10.0"
5569
+    eslint-config-react-app "^2.1.0"
5570
+    eslint-loader "1.9.0"
5571
+    eslint-plugin-flowtype "2.39.1"
5572
+    eslint-plugin-import "2.8.0"
5573
+    eslint-plugin-jsx-a11y "5.1.1"
5574
+    eslint-plugin-react "7.4.0"
5575
+    extract-text-webpack-plugin "3.0.2"
5576
+    file-loader "1.1.5"
5577
+    fs-extra "3.0.1"
5578
+    html-webpack-plugin "2.29.0"
5579
+    jest "20.0.4"
5580
+    object-assign "4.1.1"
5581
+    postcss-flexbugs-fixes "3.2.0"
5582
+    postcss-loader "2.0.8"
5583
+    promise "8.0.1"
5584
+    raf "3.4.0"
5585
+    react-dev-utils "^5.0.0"
5586
+    style-loader "0.19.0"
5587
+    sw-precache-webpack-plugin "0.11.4"
5588
+    url-loader "0.6.2"
5589
+    webpack "3.8.1"
5590
+    webpack-dev-server "2.9.4"
5591
+    webpack-manifest-plugin "1.3.2"
5592
+    whatwg-fetch "2.0.3"
5593
+  optionalDependencies:
5594
+    fsevents "^1.1.3"
5595
+
5596
+react@16.2.0:
5597
+  version "16.2.0"
5598
+  resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba"
5599
+  dependencies:
5600
+    fbjs "^0.8.16"
5601
+    loose-envify "^1.1.0"
5602
+    object-assign "^4.1.1"
5603
+    prop-types "^15.6.0"
5604
+
5605
+read-pkg-up@^1.0.1:
5606
+  version "1.0.1"
5607
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
5608
+  dependencies:
5609
+    find-up "^1.0.0"
5610
+    read-pkg "^1.0.0"
5611
+
5612
+read-pkg-up@^2.0.0:
5613
+  version "2.0.0"
5614
+  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
5615
+  dependencies:
5616
+    find-up "^2.0.0"
5617
+    read-pkg "^2.0.0"
5618
+
5619
+read-pkg@^1.0.0:
5620
+  version "1.1.0"
5621
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
5622
+  dependencies:
5623
+    load-json-file "^1.0.0"
5624
+    normalize-package-data "^2.3.2"
5625
+    path-type "^1.0.0"
5626
+
5627
+read-pkg@^2.0.0:
5628
+  version "2.0.0"
5629
+  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
5630
+  dependencies:
5631
+    load-json-file "^2.0.0"
5632
+    normalize-package-data "^2.3.2"
5633
+    path-type "^2.0.0"
5634
+
5635
+readable-stream@1.0:
5636
+  version "1.0.34"
5637
+  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
5638
+  dependencies:
5639
+    core-util-is "~1.0.0"
5640
+    inherits "~2.0.1"
5641
+    isarray "0.0.1"
5642
+    string_decoder "~0.10.x"
5643
+
5644
+readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.3:
5645
+  version "2.3.5"
5646
+  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d"
5647
+  dependencies:
5648
+    core-util-is "~1.0.0"
5649
+    inherits "~2.0.3"
5650
+    isarray "~1.0.0"
5651
+    process-nextick-args "~2.0.0"
5652
+    safe-buffer "~5.1.1"
5653
+    string_decoder "~1.0.3"
5654
+    util-deprecate "~1.0.1"
5655
+
5656
+readdirp@^2.0.0:
5657
+  version "2.1.0"
5658
+  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
5659
+  dependencies:
5660
+    graceful-fs "^4.1.2"
5661
+    minimatch "^3.0.2"
5662
+    readable-stream "^2.0.2"
5663
+    set-immediate-shim "^1.0.1"
5664
+
5665
+recursive-readdir@2.2.1:
5666
+  version "2.2.1"
5667
+  resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.1.tgz#90ef231d0778c5ce093c9a48d74e5c5422d13a99"
5668
+  dependencies:
5669
+    minimatch "3.0.3"
5670
+
5671
+redent@^1.0.0:
5672
+  version "1.0.0"
5673
+  resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
5674
+  dependencies:
5675
+    indent-string "^2.1.0"
5676
+    strip-indent "^1.0.1"
5677
+
5678
+reduce-css-calc@^1.2.6:
5679
+  version "1.3.0"
5680
+  resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
5681
+  dependencies:
5682
+    balanced-match "^0.4.2"
5683
+    math-expression-evaluator "^1.2.14"
5684
+    reduce-function-call "^1.0.1"
5685
+
5686
+reduce-function-call@^1.0.1:
5687
+  version "1.0.2"
5688
+  resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
5689
+  dependencies:
5690
+    balanced-match "^0.4.2"
5691
+
5692
+regenerate@^1.2.1:
5693
+  version "1.3.3"
5694
+  resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
5695
+
5696
+regenerator-runtime@^0.11.0:
5697
+  version "0.11.1"
5698
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
5699
+
5700
+regenerator-transform@^0.10.0:
5701
+  version "0.10.1"
5702
+  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
5703
+  dependencies:
5704
+    babel-runtime "^6.18.0"
5705
+    babel-types "^6.19.0"
5706
+    private "^0.1.6"
5707
+
5708
+regex-cache@^0.4.2:
5709
+  version "0.4.4"
5710
+  resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
5711
+  dependencies:
5712
+    is-equal-shallow "^0.1.3"
5713
+
5714
+regex-not@^1.0.0, regex-not@^1.0.2:
5715
+  version "1.0.2"
5716
+  resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
5717
+  dependencies:
5718
+    extend-shallow "^3.0.2"
5719
+    safe-regex "^1.1.0"
5720
+
5721
+regexpu-core@^1.0.0:
5722
+  version "1.0.0"
5723
+  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
5724
+  dependencies:
5725
+    regenerate "^1.2.1"
5726
+    regjsgen "^0.2.0"
5727
+    regjsparser "^0.1.4"
5728
+
5729
+regexpu-core@^2.0.0:
5730
+  version "2.0.0"
5731
+  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
5732
+  dependencies:
5733
+    regenerate "^1.2.1"
5734
+    regjsgen "^0.2.0"
5735
+    regjsparser "^0.1.4"
5736
+
5737
+registry-auth-token@^3.0.1:
5738
+  version "3.3.2"
5739
+  resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20"
5740
+  dependencies:
5741
+    rc "^1.1.6"
5742
+    safe-buffer "^5.0.1"
5743
+
5744
+registry-url@^3.0.3:
5745
+  version "3.1.0"
5746
+  resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
5747
+  dependencies:
5748
+    rc "^1.0.1"
5749
+
5750
+regjsgen@^0.2.0:
5751
+  version "0.2.0"
5752
+  resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
5753
+
5754
+regjsparser@^0.1.4:
5755
+  version "0.1.5"
5756
+  resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
5757
+  dependencies:
5758
+    jsesc "~0.5.0"
5759
+
5760
+relateurl@0.2.x:
5761
+  version "0.2.7"
5762
+  resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
5763
+
5764
+remove-trailing-separator@^1.0.1:
5765
+  version "1.1.0"
5766
+  resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
5767
+
5768
+renderkid@^2.0.1:
5769
+  version "2.0.1"
5770
+  resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319"
5771
+  dependencies:
5772
+    css-select "^1.1.0"
5773
+    dom-converter "~0.1"
5774
+    htmlparser2 "~3.3.0"
5775
+    strip-ansi "^3.0.0"
5776
+    utila "~0.3"
5777
+
5778
+repeat-element@^1.1.2:
5779
+  version "1.1.2"
5780
+  resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
5781
+
5782
+repeat-string@^1.5.2, repeat-string@^1.6.1:
5783
+  version "1.6.1"
5784
+  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
5785
+
5786
+repeating@^2.0.0:
5787
+  version "2.0.1"
5788
+  resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
5789
+  dependencies:
5790
+    is-finite "^1.0.0"
5791
+
5792
+request@2.81.0:
5793
+  version "2.81.0"
5794
+  resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
5795
+  dependencies:
5796
+    aws-sign2 "~0.6.0"
5797
+    aws4 "^1.2.1"
5798
+    caseless "~0.12.0"
5799
+    combined-stream "~1.0.5"
5800
+    extend "~3.0.0"
5801
+    forever-agent "~0.6.1"
5802
+    form-data "~2.1.1"
5803
+    har-validator "~4.2.1"
5804
+    hawk "~3.1.3"
5805
+    http-signature "~1.1.0"
5806
+    is-typedarray "~1.0.0"
5807
+    isstream "~0.1.2"
5808
+    json-stringify-safe "~5.0.1"
5809
+    mime-types "~2.1.7"
5810
+    oauth-sign "~0.8.1"
5811
+    performance-now "^0.2.0"
5812
+    qs "~6.4.0"
5813
+    safe-buffer "^5.0.1"
5814
+    stringstream "~0.0.4"
5815
+    tough-cookie "~2.3.0"
5816
+    tunnel-agent "^0.6.0"
5817
+    uuid "^3.0.0"
5818
+
5819
+request@^2.79.0:
5820
+  version "2.83.0"
5821
+  resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
5822
+  dependencies:
5823
+    aws-sign2 "~0.7.0"
5824
+    aws4 "^1.6.0"
5825
+    caseless "~0.12.0"
5826
+    combined-stream "~1.0.5"
5827
+    extend "~3.0.1"
5828
+    forever-agent "~0.6.1"
5829
+    form-data "~2.3.1"
5830
+    har-validator "~5.0.3"
5831
+    hawk "~6.0.2"
5832
+    http-signature "~1.2.0"
5833
+    is-typedarray "~1.0.0"
5834
+    isstream "~0.1.2"
5835
+    json-stringify-safe "~5.0.1"
5836
+    mime-types "~2.1.17"
5837
+    oauth-sign "~0.8.2"
5838
+    performance-now "^2.1.0"
5839
+    qs "~6.5.1"
5840
+    safe-buffer "^5.1.1"
5841
+    stringstream "~0.0.5"
5842
+    tough-cookie "~2.3.3"
5843
+    tunnel-agent "^0.6.0"
5844
+    uuid "^3.1.0"
5845
+
5846
+require-directory@^2.1.1:
5847
+  version "2.1.1"
5848
+  resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
5849
+
5850
+require-from-string@^1.1.0:
5851
+  version "1.2.1"
5852
+  resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
5853
+
5854
+require-main-filename@^1.0.1:
5855
+  version "1.0.1"
5856
+  resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
5857
+
5858
+require-uncached@^1.0.3:
5859
+  version "1.0.3"
5860
+  resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
5861
+  dependencies:
5862
+    caller-path "^0.1.0"
5863
+    resolve-from "^1.0.0"
5864
+
5865
+requires-port@1.0.x, requires-port@1.x.x, requires-port@~1.0.0:
5866
+  version "1.0.0"
5867
+  resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
5868
+
5869
+resolve-cwd@^2.0.0:
5870
+  version "2.0.0"
5871
+  resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
5872
+  dependencies:
5873
+    resolve-from "^3.0.0"
5874
+
5875
+resolve-dir@^1.0.0:
5876
+  version "1.0.1"
5877
+  resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
5878
+  dependencies:
5879
+    expand-tilde "^2.0.0"
5880
+    global-modules "^1.0.0"
5881
+
5882
+resolve-from@^1.0.0:
5883
+  version "1.0.1"
5884
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
5885
+
5886
+resolve-from@^3.0.0:
5887
+  version "3.0.0"
5888
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
5889
+
5890
+resolve-url@^0.2.1:
5891
+  version "0.2.1"
5892
+  resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
5893
+
5894
+resolve@1.1.7:
5895
+  version "1.1.7"
5896
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
5897
+
5898
+resolve@^1.3.2, resolve@^1.5.0:
5899
+  version "1.5.0"
5900
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
5901
+  dependencies:
5902
+    path-parse "^1.0.5"
5903
+
5904
+restore-cursor@^2.0.0:
5905
+  version "2.0.0"
5906
+  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
5907
+  dependencies:
5908
+    onetime "^2.0.0"
5909
+    signal-exit "^3.0.2"
5910
+
5911
+ret@~0.1.10:
5912
+  version "0.1.15"
5913
+  resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
5914
+
5915
+right-align@^0.1.1:
5916
+  version "0.1.3"
5917
+  resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
5918
+  dependencies:
5919
+    align-text "^0.1.1"
5920
+
5921
+rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
5922
+  version "2.6.2"
5923
+  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
5924
+  dependencies:
5925
+    glob "^7.0.5"
5926
+
5927
+ripemd160@^2.0.0, ripemd160@^2.0.1:
5928
+  version "2.0.1"
5929
+  resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
5930
+  dependencies:
5931
+    hash-base "^2.0.0"
5932
+    inherits "^2.0.1"
5933
+
5934
+run-async@^2.2.0:
5935
+  version "2.3.0"
5936
+  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
5937
+  dependencies:
5938
+    is-promise "^2.1.0"
5939
+
5940
+rx-lite-aggregates@^4.0.8:
5941
+  version "4.0.8"
5942
+  resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
5943
+  dependencies:
5944
+    rx-lite "*"
5945
+
5946
+rx-lite@*, rx-lite@^4.0.8:
5947
+  version "4.0.8"
5948
+  resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
5949
+
5950
+safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
5951
+  version "5.1.1"
5952
+  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
5953
+
5954
+safe-regex@^1.1.0:
5955
+  version "1.1.0"
5956
+  resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
5957
+  dependencies:
5958
+    ret "~0.1.10"
5959
+
5960
+sane@~1.6.0:
5961
+  version "1.6.0"
5962
+  resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775"
5963
+  dependencies:
5964
+    anymatch "^1.3.0"
5965
+    exec-sh "^0.2.0"
5966
+    fb-watchman "^1.8.0"
5967
+    minimatch "^3.0.2"
5968
+    minimist "^1.1.1"
5969
+    walker "~1.0.5"
5970
+    watch "~0.10.0"
5971
+
5972
+sax@^1.2.1, sax@~1.2.1:
5973
+  version "1.2.4"
5974
+  resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
5975
+
5976
+schema-utils@^0.3.0:
5977
+  version "0.3.0"
5978
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf"
5979
+  dependencies:
5980
+    ajv "^5.0.0"
5981
+
5982
+select-hose@^2.0.0:
5983
+  version "2.0.0"
5984
+  resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
5985
+
5986
+selfsigned@^1.9.1:
5987
+  version "1.10.2"
5988
+  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.2.tgz#b4449580d99929b65b10a48389301a6592088758"
5989
+  dependencies:
5990
+    node-forge "0.7.1"
5991
+
5992
+semver-diff@^2.0.0:
5993
+  version "2.1.0"
5994
+  resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
5995
+  dependencies:
5996
+    semver "^5.0.3"
5997
+
5998
+"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1:
5999
+  version "5.5.0"
6000
+  resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
6001
+
6002
+send@0.16.1:
6003
+  version "0.16.1"
6004
+  resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3"
6005
+  dependencies:
6006
+    debug "2.6.9"
6007
+    depd "~1.1.1"
6008
+    destroy "~1.0.4"
6009
+    encodeurl "~1.0.1"
6010
+    escape-html "~1.0.3"
6011
+    etag "~1.8.1"
6012
+    fresh "0.5.2"
6013
+    http-errors "~1.6.2"
6014
+    mime "1.4.1"
6015
+    ms "2.0.0"
6016
+    on-finished "~2.3.0"
6017
+    range-parser "~1.2.0"
6018
+    statuses "~1.3.1"
6019
+
6020
+serve-index@^1.7.2:
6021
+  version "1.9.1"
6022
+  resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
6023
+  dependencies:
6024
+    accepts "~1.3.4"
6025
+    batch "0.6.1"
6026
+    debug "2.6.9"
6027
+    escape-html "~1.0.3"
6028
+    http-errors "~1.6.2"
6029
+    mime-types "~2.1.17"
6030
+    parseurl "~1.3.2"
6031
+
6032
+serve-static@1.13.1:
6033
+  version "1.13.1"
6034
+  resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719"
6035
+  dependencies:
6036
+    encodeurl "~1.0.1"
6037
+    escape-html "~1.0.3"
6038
+    parseurl "~1.3.2"
6039
+    send "0.16.1"
6040
+
6041
+serviceworker-cache-polyfill@^4.0.0:
6042
+  version "4.0.0"
6043
+  resolved "https://registry.yarnpkg.com/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz#de19ee73bef21ab3c0740a37b33db62464babdeb"
6044
+
6045
+set-blocking@^2.0.0, set-blocking@~2.0.0:
6046
+  version "2.0.0"
6047
+  resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
6048
+
6049
+set-getter@^0.1.0:
6050
+  version "0.1.0"
6051
+  resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376"
6052
+  dependencies:
6053
+    to-object-path "^0.3.0"
6054
+
6055
+set-immediate-shim@^1.0.1:
6056
+  version "1.0.1"
6057
+  resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
6058
+
6059
+set-value@^0.4.3:
6060
+  version "0.4.3"
6061
+  resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
6062
+  dependencies:
6063
+    extend-shallow "^2.0.1"
6064
+    is-extendable "^0.1.1"
6065
+    is-plain-object "^2.0.1"
6066
+    to-object-path "^0.3.0"
6067
+
6068
+set-value@^2.0.0:
6069
+  version "2.0.0"
6070
+  resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
6071
+  dependencies:
6072
+    extend-shallow "^2.0.1"
6073
+    is-extendable "^0.1.1"
6074
+    is-plain-object "^2.0.3"
6075
+    split-string "^3.0.1"
6076
+
6077
+setimmediate@^1.0.4, setimmediate@^1.0.5:
6078
+  version "1.0.5"
6079
+  resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
6080
+
6081
+setprototypeof@1.0.3:
6082
+  version "1.0.3"
6083
+  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
6084
+
6085
+setprototypeof@1.1.0:
6086
+  version "1.1.0"
6087
+  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
6088
+
6089
+sha.js@^2.4.0, sha.js@^2.4.8:
6090
+  version "2.4.10"
6091
+  resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b"
6092
+  dependencies:
6093
+    inherits "^2.0.1"
6094
+    safe-buffer "^5.0.1"
6095
+
6096
+shebang-command@^1.2.0:
6097
+  version "1.2.0"
6098
+  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
6099
+  dependencies:
6100
+    shebang-regex "^1.0.0"
6101
+
6102
+shebang-regex@^1.0.0:
6103
+  version "1.0.0"
6104
+  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
6105
+
6106
+shell-quote@1.6.1:
6107
+  version "1.6.1"
6108
+  resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
6109
+  dependencies:
6110
+    array-filter "~0.0.0"
6111
+    array-map "~0.0.0"
6112
+    array-reduce "~0.0.0"
6113
+    jsonify "~0.0.0"
6114
+
6115
+shellwords@^0.1.1:
6116
+  version "0.1.1"
6117
+  resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
6118
+
6119
+signal-exit@^3.0.0, signal-exit@^3.0.2:
6120
+  version "3.0.2"
6121
+  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
6122
+
6123
+slash@^1.0.0:
6124
+  version "1.0.0"
6125
+  resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
6126
+
6127
+slice-ansi@1.0.0:
6128
+  version "1.0.0"
6129
+  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
6130
+  dependencies:
6131
+    is-fullwidth-code-point "^2.0.0"
6132
+
6133
+snapdragon-node@^2.0.1:
6134
+  version "2.1.1"
6135
+  resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
6136
+  dependencies:
6137
+    define-property "^1.0.0"
6138
+    isobject "^3.0.0"
6139
+    snapdragon-util "^3.0.1"
6140
+
6141
+snapdragon-util@^3.0.1:
6142
+  version "3.0.1"
6143
+  resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
6144
+  dependencies:
6145
+    kind-of "^3.2.0"
6146
+
6147
+snapdragon@^0.8.1:
6148
+  version "0.8.1"
6149
+  resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370"
6150
+  dependencies:
6151
+    base "^0.11.1"
6152
+    debug "^2.2.0"
6153
+    define-property "^0.2.5"
6154
+    extend-shallow "^2.0.1"
6155
+    map-cache "^0.2.2"
6156
+    source-map "^0.5.6"
6157
+    source-map-resolve "^0.5.0"
6158
+    use "^2.0.0"
6159
+
6160
+sntp@1.x.x:
6161
+  version "1.0.9"
6162
+  resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
6163
+  dependencies:
6164
+    hoek "2.x.x"
6165
+
6166
+sntp@2.x.x:
6167
+  version "2.1.0"
6168
+  resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
6169
+  dependencies:
6170
+    hoek "4.x.x"
6171
+
6172
+sockjs-client@1.1.4:
6173
+  version "1.1.4"
6174
+  resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12"
6175
+  dependencies:
6176
+    debug "^2.6.6"
6177
+    eventsource "0.1.6"
6178
+    faye-websocket "~0.11.0"
6179
+    inherits "^2.0.1"
6180
+    json3 "^3.3.2"
6181
+    url-parse "^1.1.8"
6182
+
6183
+sockjs@0.3.18:
6184
+  version "0.3.18"
6185
+  resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207"
6186
+  dependencies:
6187
+    faye-websocket "^0.10.0"
6188
+    uuid "^2.0.2"
6189
+
6190
+sort-keys@^1.0.0:
6191
+  version "1.1.2"
6192
+  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
6193
+  dependencies:
6194
+    is-plain-obj "^1.0.0"
6195
+
6196
+source-list-map@^2.0.0:
6197
+  version "2.0.0"
6198
+  resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
6199
+
6200
+source-map-resolve@^0.5.0:
6201
+  version "0.5.1"
6202
+  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a"
6203
+  dependencies:
6204
+    atob "^2.0.0"
6205
+    decode-uri-component "^0.2.0"
6206
+    resolve-url "^0.2.1"
6207
+    source-map-url "^0.4.0"
6208
+    urix "^0.1.0"
6209
+
6210
+source-map-support@^0.4.15:
6211
+  version "0.4.18"
6212
+  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
6213
+  dependencies:
6214
+    source-map "^0.5.6"
6215
+
6216
+source-map-url@^0.4.0:
6217
+  version "0.4.0"
6218
+  resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
6219
+
6220
+source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
6221
+  version "0.5.7"
6222
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
6223
+
6224
+source-map@^0.4.4:
6225
+  version "0.4.4"
6226
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
6227
+  dependencies:
6228
+    amdefine ">=0.0.4"
6229
+
6230
+source-map@^0.6.1, source-map@~0.6.1:
6231
+  version "0.6.1"
6232
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
6233
+
6234
+spdx-correct@^3.0.0:
6235
+  version "3.0.0"
6236
+  resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
6237
+  dependencies:
6238
+    spdx-expression-parse "^3.0.0"
6239
+    spdx-license-ids "^3.0.0"
6240
+
6241
+spdx-exceptions@^2.1.0:
6242
+  version "2.1.0"
6243
+  resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
6244
+
6245
+spdx-expression-parse@^3.0.0:
6246
+  version "3.0.0"
6247
+  resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
6248
+  dependencies:
6249
+    spdx-exceptions "^2.1.0"
6250
+    spdx-license-ids "^3.0.0"
6251
+
6252
+spdx-license-ids@^3.0.0:
6253
+  version "3.0.0"
6254
+  resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
6255
+
6256
+spdy-transport@^2.0.18:
6257
+  version "2.0.20"
6258
+  resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d"
6259
+  dependencies:
6260
+    debug "^2.6.8"
6261
+    detect-node "^2.0.3"
6262
+    hpack.js "^2.1.6"
6263
+    obuf "^1.1.1"
6264
+    readable-stream "^2.2.9"
6265
+    safe-buffer "^5.0.1"
6266
+    wbuf "^1.7.2"
6267
+
6268
+spdy@^3.4.1:
6269
+  version "3.4.7"
6270
+  resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc"
6271
+  dependencies:
6272
+    debug "^2.6.8"
6273
+    handle-thing "^1.2.5"
6274
+    http-deceiver "^1.2.7"
6275
+    safe-buffer "^5.0.1"
6276
+    select-hose "^2.0.0"
6277
+    spdy-transport "^2.0.18"
6278
+
6279
+split-string@^3.0.1, split-string@^3.0.2:
6280
+  version "3.1.0"
6281
+  resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
6282
+  dependencies:
6283
+    extend-shallow "^3.0.0"
6284
+
6285
+sprintf-js@~1.0.2:
6286
+  version "1.0.3"
6287
+  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
6288
+
6289
+sshpk@^1.7.0:
6290
+  version "1.13.1"
6291
+  resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
6292
+  dependencies:
6293
+    asn1 "~0.2.3"
6294
+    assert-plus "^1.0.0"
6295
+    dashdash "^1.12.0"
6296
+    getpass "^0.1.1"
6297
+  optionalDependencies:
6298
+    bcrypt-pbkdf "^1.0.0"
6299
+    ecc-jsbn "~0.1.1"
6300
+    jsbn "~0.1.0"
6301
+    tweetnacl "~0.14.0"
6302
+
6303
+static-extend@^0.1.1:
6304
+  version "0.1.2"
6305
+  resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
6306
+  dependencies:
6307
+    define-property "^0.2.5"
6308
+    object-copy "^0.1.0"
6309
+
6310
+"statuses@>= 1.3.1 < 2":
6311
+  version "1.4.0"
6312
+  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
6313
+
6314
+statuses@~1.3.1:
6315
+  version "1.3.1"
6316
+  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
6317
+
6318
+stream-browserify@^2.0.1:
6319
+  version "2.0.1"
6320
+  resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
6321
+  dependencies:
6322
+    inherits "~2.0.1"
6323
+    readable-stream "^2.0.2"
6324
+
6325
+stream-http@^2.7.2:
6326
+  version "2.8.0"
6327
+  resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10"
6328
+  dependencies:
6329
+    builtin-status-codes "^3.0.0"
6330
+    inherits "^2.0.1"
6331
+    readable-stream "^2.3.3"
6332
+    to-arraybuffer "^1.0.0"
6333
+    xtend "^4.0.0"
6334
+
6335
+strict-uri-encode@^1.0.0:
6336
+  version "1.1.0"
6337
+  resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
6338
+
6339
+string-length@^1.0.1:
6340
+  version "1.0.1"
6341
+  resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac"
6342
+  dependencies:
6343
+    strip-ansi "^3.0.0"
6344
+
6345
+string-width@^1.0.1, string-width@^1.0.2:
6346
+  version "1.0.2"
6347
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
6348
+  dependencies:
6349
+    code-point-at "^1.0.0"
6350
+    is-fullwidth-code-point "^1.0.0"
6351
+    strip-ansi "^3.0.0"
6352
+
6353
+string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
6354
+  version "2.1.1"
6355
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
6356
+  dependencies:
6357
+    is-fullwidth-code-point "^2.0.0"
6358
+    strip-ansi "^4.0.0"
6359
+
6360
+string_decoder@^1.0.0, string_decoder@~1.0.3:
6361
+  version "1.0.3"
6362
+  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
6363
+  dependencies:
6364
+    safe-buffer "~5.1.0"
6365
+
6366
+string_decoder@~0.10.x:
6367
+  version "0.10.31"
6368
+  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
6369
+
6370
+stringstream@~0.0.4, stringstream@~0.0.5:
6371
+  version "0.0.5"
6372
+  resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
6373
+
6374
+strip-ansi@3.0.1, strip-ansi@^3.0.0, strip-ansi@^3.0.1:
6375
+  version "3.0.1"
6376
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
6377
+  dependencies:
6378
+    ansi-regex "^2.0.0"
6379
+
6380
+strip-ansi@^4.0.0:
6381
+  version "4.0.0"
6382
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
6383
+  dependencies:
6384
+    ansi-regex "^3.0.0"
6385
+
6386
+strip-bom@3.0.0, strip-bom@^3.0.0:
6387
+  version "3.0.0"
6388
+  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
6389
+
6390
+strip-bom@^2.0.0:
6391
+  version "2.0.0"
6392
+  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
6393
+  dependencies:
6394
+    is-utf8 "^0.2.0"
6395
+
6396
+strip-eof@^1.0.0:
6397
+  version "1.0.0"
6398
+  resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
6399
+
6400
+strip-indent@^1.0.1:
6401
+  version "1.0.1"
6402
+  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
6403
+  dependencies:
6404
+    get-stdin "^4.0.1"
6405
+
6406
+strip-json-comments@~2.0.1:
6407
+  version "2.0.1"
6408
+  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
6409
+
6410
+style-loader@0.19.0:
6411
+  version "0.19.0"
6412
+  resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.19.0.tgz#7258e788f0fee6a42d710eaf7d6c2412a4c50759"
6413
+  dependencies:
6414
+    loader-utils "^1.0.2"
6415
+    schema-utils "^0.3.0"
6416
+
6417
+supports-color@^2.0.0:
6418
+  version "2.0.0"
6419
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
6420
+
6421
+supports-color@^3.1.2, supports-color@^3.2.3:
6422
+  version "3.2.3"
6423
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
6424
+  dependencies:
6425
+    has-flag "^1.0.0"
6426
+
6427
+supports-color@^4.2.1:
6428
+  version "4.5.0"
6429
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
6430
+  dependencies:
6431
+    has-flag "^2.0.0"
6432
+
6433
+supports-color@^5.2.0, supports-color@^5.3.0:
6434
+  version "5.3.0"
6435
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0"
6436
+  dependencies:
6437
+    has-flag "^3.0.0"
6438
+
6439
+svgo@^0.7.0:
6440
+  version "0.7.2"
6441
+  resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
6442
+  dependencies:
6443
+    coa "~1.0.1"
6444
+    colors "~1.1.2"
6445
+    csso "~2.3.1"
6446
+    js-yaml "~3.7.0"
6447
+    mkdirp "~0.5.1"
6448
+    sax "~1.2.1"
6449
+    whet.extend "~0.9.9"
6450
+
6451
+sw-precache-webpack-plugin@0.11.4:
6452
+  version "0.11.4"
6453
+  resolved "https://registry.yarnpkg.com/sw-precache-webpack-plugin/-/sw-precache-webpack-plugin-0.11.4.tgz#a695017e54eed575551493a519dc1da8da2dc5e0"
6454
+  dependencies:
6455
+    del "^2.2.2"
6456
+    sw-precache "^5.1.1"
6457
+    uglify-js "^3.0.13"
6458
+
6459
+sw-precache@^5.1.1:
6460
+  version "5.2.1"
6461
+  resolved "https://registry.yarnpkg.com/sw-precache/-/sw-precache-5.2.1.tgz#06134f319eec68f3b9583ce9a7036b1c119f7179"
6462
+  dependencies:
6463
+    dom-urls "^1.1.0"
6464
+    es6-promise "^4.0.5"
6465
+    glob "^7.1.1"
6466
+    lodash.defaults "^4.2.0"
6467
+    lodash.template "^4.4.0"
6468
+    meow "^3.7.0"
6469
+    mkdirp "^0.5.1"
6470
+    pretty-bytes "^4.0.2"
6471
+    sw-toolbox "^3.4.0"
6472
+    update-notifier "^2.3.0"
6473
+
6474
+sw-toolbox@^3.4.0:
6475
+  version "3.6.0"
6476
+  resolved "https://registry.yarnpkg.com/sw-toolbox/-/sw-toolbox-3.6.0.tgz#26df1d1c70348658e4dea2884319149b7b3183b5"
6477
+  dependencies:
6478
+    path-to-regexp "^1.0.1"
6479
+    serviceworker-cache-polyfill "^4.0.0"
6480
+
6481
+symbol-tree@^3.2.1:
6482
+  version "3.2.2"
6483
+  resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
6484
+
6485
+table@^4.0.1:
6486
+  version "4.0.3"
6487
+  resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
6488
+  dependencies:
6489
+    ajv "^6.0.1"
6490
+    ajv-keywords "^3.0.0"
6491
+    chalk "^2.1.0"
6492
+    lodash "^4.17.4"
6493
+    slice-ansi "1.0.0"
6494
+    string-width "^2.1.1"
6495
+
6496
+tapable@^0.2.7:
6497
+  version "0.2.8"
6498
+  resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
6499
+
6500
+tar-pack@^3.4.0:
6501
+  version "3.4.1"
6502
+  resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
6503
+  dependencies:
6504
+    debug "^2.2.0"
6505
+    fstream "^1.0.10"
6506
+    fstream-ignore "^1.0.5"
6507
+    once "^1.3.3"
6508
+    readable-stream "^2.1.4"
6509
+    rimraf "^2.5.1"
6510
+    tar "^2.2.1"
6511
+    uid-number "^0.0.6"
6512
+
6513
+tar@^2.2.1:
6514
+  version "2.2.1"
6515
+  resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
6516
+  dependencies:
6517
+    block-stream "*"
6518
+    fstream "^1.0.2"
6519
+    inherits "2"
6520
+
6521
+term-size@^1.2.0:
6522
+  version "1.2.0"
6523
+  resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
6524
+  dependencies:
6525
+    execa "^0.7.0"
6526
+
6527
+test-exclude@^4.1.1:
6528
+  version "4.2.0"
6529
+  resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.0.tgz#07e3613609a362c74516a717515e13322ab45b3c"
6530
+  dependencies:
6531
+    arrify "^1.0.1"
6532
+    micromatch "^2.3.11"
6533
+    object-assign "^4.1.0"
6534
+    read-pkg-up "^1.0.1"
6535
+    require-main-filename "^1.0.1"
6536
+
6537
+text-table@0.2.0, text-table@~0.2.0:
6538
+  version "0.2.0"
6539
+  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
6540
+
6541
+throat@^3.0.0:
6542
+  version "3.2.0"
6543
+  resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836"
6544
+
6545
+through@^2.3.6:
6546
+  version "2.3.8"
6547
+  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
6548
+
6549
+thunky@^1.0.2:
6550
+  version "1.0.2"
6551
+  resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.0.2.tgz#a862e018e3fb1ea2ec3fce5d55605cf57f247371"
6552
+
6553
+time-stamp@^2.0.0:
6554
+  version "2.0.0"
6555
+  resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357"
6556
+
6557
+timed-out@^4.0.0:
6558
+  version "4.0.1"
6559
+  resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
6560
+
6561
+timers-browserify@^2.0.4:
6562
+  version "2.0.6"
6563
+  resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.6.tgz#241e76927d9ca05f4d959819022f5b3664b64bae"
6564
+  dependencies:
6565
+    setimmediate "^1.0.4"
6566
+
6567
+tmp@^0.0.33:
6568
+  version "0.0.33"
6569
+  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
6570
+  dependencies:
6571
+    os-tmpdir "~1.0.2"
6572
+
6573
+tmpl@1.0.x:
6574
+  version "1.0.4"
6575
+  resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
6576
+
6577
+to-arraybuffer@^1.0.0:
6578
+  version "1.0.1"
6579
+  resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
6580
+
6581
+to-fast-properties@^1.0.3:
6582
+  version "1.0.3"
6583
+  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
6584
+
6585
+to-object-path@^0.3.0:
6586
+  version "0.3.0"
6587
+  resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
6588
+  dependencies:
6589
+    kind-of "^3.0.2"
6590
+
6591
+to-regex-range@^2.1.0:
6592
+  version "2.1.1"
6593
+  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
6594
+  dependencies:
6595
+    is-number "^3.0.0"
6596
+    repeat-string "^1.6.1"
6597
+
6598
+to-regex@^3.0.1:
6599
+  version "3.0.2"
6600
+  resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
6601
+  dependencies:
6602
+    define-property "^2.0.2"
6603
+    extend-shallow "^3.0.2"
6604
+    regex-not "^1.0.2"
6605
+    safe-regex "^1.1.0"
6606
+
6607
+toposort@^1.0.0:
6608
+  version "1.0.6"
6609
+  resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.6.tgz#c31748e55d210effc00fdcdc7d6e68d7d7bb9cec"
6610
+
6611
+tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
6612
+  version "2.3.4"
6613
+  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
6614
+  dependencies:
6615
+    punycode "^1.4.1"
6616
+
6617
+tr46@~0.0.3:
6618
+  version "0.0.3"
6619
+  resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
6620
+
6621
+trim-newlines@^1.0.0:
6622
+  version "1.0.0"
6623
+  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
6624
+
6625
+trim-right@^1.0.1:
6626
+  version "1.0.1"
6627
+  resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
6628
+
6629
+tty-browserify@0.0.0:
6630
+  version "0.0.0"
6631
+  resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
6632
+
6633
+tunnel-agent@^0.6.0:
6634
+  version "0.6.0"
6635
+  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
6636
+  dependencies:
6637
+    safe-buffer "^5.0.1"
6638
+
6639
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
6640
+  version "0.14.5"
6641
+  resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
6642
+
6643
+type-check@~0.3.2:
6644
+  version "0.3.2"
6645
+  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
6646
+  dependencies:
6647
+    prelude-ls "~1.1.2"
6648
+
6649
+type-is@~1.6.15:
6650
+  version "1.6.16"
6651
+  resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
6652
+  dependencies:
6653
+    media-typer "0.3.0"
6654
+    mime-types "~2.1.18"
6655
+
6656
+typedarray@^0.0.6:
6657
+  version "0.0.6"
6658
+  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
6659
+
6660
+ua-parser-js@^0.7.9:
6661
+  version "0.7.17"
6662
+  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac"
6663
+
6664
+uglify-js@3.3.x, uglify-js@^3.0.13:
6665
+  version "3.3.13"
6666
+  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.13.tgz#8a1a89eeb16e2d6a66b0db2b04cb871af3c669cf"
6667
+  dependencies:
6668
+    commander "~2.14.1"
6669
+    source-map "~0.6.1"
6670
+
6671
+uglify-js@^2.6, uglify-js@^2.8.29:
6672
+  version "2.8.29"
6673
+  resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
6674
+  dependencies:
6675
+    source-map "~0.5.1"
6676
+    yargs "~3.10.0"
6677
+  optionalDependencies:
6678
+    uglify-to-browserify "~1.0.0"
6679
+
6680
+uglify-to-browserify@~1.0.0:
6681
+  version "1.0.2"
6682
+  resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
6683
+
6684
+uglifyjs-webpack-plugin@^0.4.6:
6685
+  version "0.4.6"
6686
+  resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
6687
+  dependencies:
6688
+    source-map "^0.5.6"
6689
+    uglify-js "^2.8.29"
6690
+    webpack-sources "^1.0.1"
6691
+
6692
+uid-number@^0.0.6:
6693
+  version "0.0.6"
6694
+  resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
6695
+
6696
+union-value@^1.0.0:
6697
+  version "1.0.0"
6698
+  resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
6699
+  dependencies:
6700
+    arr-union "^3.1.0"
6701
+    get-value "^2.0.6"
6702
+    is-extendable "^0.1.1"
6703
+    set-value "^0.4.3"
6704
+
6705
+uniq@^1.0.1:
6706
+  version "1.0.1"
6707
+  resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
6708
+
6709
+uniqid@^4.0.0:
6710
+  version "4.1.1"
6711
+  resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1"
6712
+  dependencies:
6713
+    macaddress "^0.2.8"
6714
+
6715
+uniqs@^2.0.0:
6716
+  version "2.0.0"
6717
+  resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
6718
+
6719
+unique-string@^1.0.0:
6720
+  version "1.0.0"
6721
+  resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
6722
+  dependencies:
6723
+    crypto-random-string "^1.0.0"
6724
+
6725
+universalify@^0.1.0:
6726
+  version "0.1.1"
6727
+  resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
6728
+
6729
+unpipe@1.0.0, unpipe@~1.0.0:
6730
+  version "1.0.0"
6731
+  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
6732
+
6733
+unset-value@^1.0.0:
6734
+  version "1.0.0"
6735
+  resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
6736
+  dependencies:
6737
+    has-value "^0.3.1"
6738
+    isobject "^3.0.0"
6739
+
6740
+unzip-response@^2.0.1:
6741
+  version "2.0.1"
6742
+  resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
6743
+
6744
+upath@^1.0.0:
6745
+  version "1.0.4"
6746
+  resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.4.tgz#ee2321ba0a786c50973db043a50b7bcba822361d"
6747
+
6748
+update-notifier@^2.3.0:
6749
+  version "2.3.0"
6750
+  resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451"
6751
+  dependencies:
6752
+    boxen "^1.2.1"
6753
+    chalk "^2.0.1"
6754
+    configstore "^3.0.0"
6755
+    import-lazy "^2.1.0"
6756
+    is-installed-globally "^0.1.0"
6757
+    is-npm "^1.0.0"
6758
+    latest-version "^3.0.0"
6759
+    semver-diff "^2.0.0"
6760
+    xdg-basedir "^3.0.0"
6761
+
6762
+upper-case@^1.1.1:
6763
+  version "1.1.3"
6764
+  resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
6765
+
6766
+urijs@^1.16.1:
6767
+  version "1.19.1"
6768
+  resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.19.1.tgz#5b0ff530c0cbde8386f6342235ba5ca6e995d25a"
6769
+
6770
+urix@^0.1.0:
6771
+  version "0.1.0"
6772
+  resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
6773
+
6774
+url-loader@0.6.2:
6775
+  version "0.6.2"
6776
+  resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.6.2.tgz#a007a7109620e9d988d14bce677a1decb9a993f7"
6777
+  dependencies:
6778
+    loader-utils "^1.0.2"
6779
+    mime "^1.4.1"
6780
+    schema-utils "^0.3.0"
6781
+
6782
+url-parse-lax@^1.0.0:
6783
+  version "1.0.0"
6784
+  resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
6785
+  dependencies:
6786
+    prepend-http "^1.0.1"
6787
+
6788
+url-parse@1.0.x:
6789
+  version "1.0.5"
6790
+  resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b"
6791
+  dependencies:
6792
+    querystringify "0.0.x"
6793
+    requires-port "1.0.x"
6794
+
6795
+url-parse@^1.1.8:
6796
+  version "1.2.0"
6797
+  resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986"
6798
+  dependencies:
6799
+    querystringify "~1.0.0"
6800
+    requires-port "~1.0.0"
6801
+
6802
+url@^0.11.0:
6803
+  version "0.11.0"
6804
+  resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
6805
+  dependencies:
6806
+    punycode "1.3.2"
6807
+    querystring "0.2.0"
6808
+
6809
+use@^2.0.0:
6810
+  version "2.0.2"
6811
+  resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8"
6812
+  dependencies:
6813
+    define-property "^0.2.5"
6814
+    isobject "^3.0.0"
6815
+    lazy-cache "^2.0.2"
6816
+
6817
+util-deprecate@~1.0.1:
6818
+  version "1.0.2"
6819
+  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
6820
+
6821
+util@0.10.3, util@^0.10.3:
6822
+  version "0.10.3"
6823
+  resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
6824
+  dependencies:
6825
+    inherits "2.0.1"
6826
+
6827
+utila@~0.3:
6828
+  version "0.3.3"
6829
+  resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226"
6830
+
6831
+utila@~0.4:
6832
+  version "0.4.0"
6833
+  resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
6834
+
6835
+utils-merge@1.0.1:
6836
+  version "1.0.1"
6837
+  resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
6838
+
6839
+uuid@^2.0.2:
6840
+  version "2.0.3"
6841
+  resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a"
6842
+
6843
+uuid@^3.0.0, uuid@^3.1.0:
6844
+  version "3.2.1"
6845
+  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
6846
+
6847
+validate-npm-package-license@^3.0.1:
6848
+  version "3.0.3"
6849
+  resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
6850
+  dependencies:
6851
+    spdx-correct "^3.0.0"
6852
+    spdx-expression-parse "^3.0.0"
6853
+
6854
+vary@~1.1.2:
6855
+  version "1.1.2"
6856
+  resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
6857
+
6858
+vendors@^1.0.0:
6859
+  version "1.0.1"
6860
+  resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22"
6861
+
6862
+verror@1.10.0:
6863
+  version "1.10.0"
6864
+  resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
6865
+  dependencies:
6866
+    assert-plus "^1.0.0"
6867
+    core-util-is "1.0.2"
6868
+    extsprintf "^1.2.0"
6869
+
6870
+vm-browserify@0.0.4:
6871
+  version "0.0.4"
6872
+  resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
6873
+  dependencies:
6874
+    indexof "0.0.1"
6875
+
6876
+walker@~1.0.5:
6877
+  version "1.0.7"
6878
+  resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
6879
+  dependencies:
6880
+    makeerror "1.0.x"
6881
+
6882
+watch@~0.10.0:
6883
+  version "0.10.0"
6884
+  resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc"
6885
+
6886
+watchpack@^1.4.0:
6887
+  version "1.5.0"
6888
+  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.5.0.tgz#231e783af830a22f8966f65c4c4bacc814072eed"
6889
+  dependencies:
6890
+    chokidar "^2.0.2"
6891
+    graceful-fs "^4.1.2"
6892
+    neo-async "^2.5.0"
6893
+
6894
+wbuf@^1.1.0, wbuf@^1.7.2:
6895
+  version "1.7.2"
6896
+  resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe"
6897
+  dependencies:
6898
+    minimalistic-assert "^1.0.0"
6899
+
6900
+webidl-conversions@^3.0.0:
6901
+  version "3.0.1"
6902
+  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
6903
+
6904
+webidl-conversions@^4.0.0:
6905
+  version "4.0.2"
6906
+  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
6907
+
6908
+webpack-dev-middleware@^1.11.0:
6909
+  version "1.12.2"
6910
+  resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e"
6911
+  dependencies:
6912
+    memory-fs "~0.4.1"
6913
+    mime "^1.5.0"
6914
+    path-is-absolute "^1.0.0"
6915
+    range-parser "^1.0.3"
6916
+    time-stamp "^2.0.0"
6917
+
6918
+webpack-dev-server@2.9.4:
6919
+  version "2.9.4"
6920
+  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.9.4.tgz#7883e61759c6a4b33e9b19ec4037bd4ab61428d1"
6921
+  dependencies:
6922
+    ansi-html "0.0.7"
6923
+    array-includes "^3.0.3"
6924
+    bonjour "^3.5.0"
6925
+    chokidar "^1.6.0"
6926
+    compression "^1.5.2"
6927
+    connect-history-api-fallback "^1.3.0"
6928
+    debug "^3.1.0"
6929
+    del "^3.0.0"
6930
+    express "^4.13.3"
6931
+    html-entities "^1.2.0"
6932
+    http-proxy-middleware "~0.17.4"
6933
+    import-local "^0.1.1"
6934
+    internal-ip "1.2.0"
6935
+    ip "^1.1.5"
6936
+    killable "^1.0.0"
6937
+    loglevel "^1.4.1"
6938
+    opn "^5.1.0"
6939
+    portfinder "^1.0.9"
6940
+    selfsigned "^1.9.1"
6941
+    serve-index "^1.7.2"
6942
+    sockjs "0.3.18"
6943
+    sockjs-client "1.1.4"
6944
+    spdy "^3.4.1"
6945
+    strip-ansi "^3.0.1"
6946
+    supports-color "^4.2.1"
6947
+    webpack-dev-middleware "^1.11.0"
6948
+    yargs "^6.6.0"
6949
+
6950
+webpack-manifest-plugin@1.3.2:
6951
+  version "1.3.2"
6952
+  resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz#5ea8ee5756359ddc1d98814324fe43496349a7d4"
6953
+  dependencies:
6954
+    fs-extra "^0.30.0"
6955
+    lodash ">=3.5 <5"
6956
+
6957
+webpack-sources@^1.0.1:
6958
+  version "1.1.0"
6959
+  resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
6960
+  dependencies:
6961
+    source-list-map "^2.0.0"
6962
+    source-map "~0.6.1"
6963
+
6964
+webpack@3.8.1:
6965
+  version "3.8.1"
6966
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83"
6967
+  dependencies:
6968
+    acorn "^5.0.0"
6969
+    acorn-dynamic-import "^2.0.0"
6970
+    ajv "^5.1.5"
6971
+    ajv-keywords "^2.0.0"
6972
+    async "^2.1.2"
6973
+    enhanced-resolve "^3.4.0"
6974
+    escope "^3.6.0"
6975
+    interpret "^1.0.0"
6976
+    json-loader "^0.5.4"
6977
+    json5 "^0.5.1"
6978
+    loader-runner "^2.3.0"
6979
+    loader-utils "^1.1.0"
6980
+    memory-fs "~0.4.1"
6981
+    mkdirp "~0.5.0"
6982
+    node-libs-browser "^2.0.0"
6983
+    source-map "^0.5.3"
6984
+    supports-color "^4.2.1"
6985
+    tapable "^0.2.7"
6986
+    uglifyjs-webpack-plugin "^0.4.6"
6987
+    watchpack "^1.4.0"
6988
+    webpack-sources "^1.0.1"
6989
+    yargs "^8.0.2"
6990
+
6991
+websocket-driver@>=0.5.1:
6992
+  version "0.7.0"
6993
+  resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"
6994
+  dependencies:
6995
+    http-parser-js ">=0.4.0"
6996
+    websocket-extensions ">=0.1.1"
6997
+
6998
+websocket-extensions@>=0.1.1:
6999
+  version "0.1.3"
7000
+  resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
7001
+
7002
+whatwg-encoding@^1.0.1:
7003
+  version "1.0.3"
7004
+  resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3"
7005
+  dependencies:
7006
+    iconv-lite "0.4.19"
7007
+
7008
+whatwg-fetch@2.0.3, whatwg-fetch@>=0.10.0:
7009
+  version "2.0.3"
7010
+  resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
7011
+
7012
+whatwg-url@^4.3.0:
7013
+  version "4.8.0"
7014
+  resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0"
7015
+  dependencies:
7016
+    tr46 "~0.0.3"
7017
+    webidl-conversions "^3.0.0"
7018
+
7019
+whet.extend@~0.9.9:
7020
+  version "0.9.9"
7021
+  resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
7022
+
7023
+which-module@^1.0.0:
7024
+  version "1.0.0"
7025
+  resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
7026
+
7027
+which-module@^2.0.0:
7028
+  version "2.0.0"
7029
+  resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
7030
+
7031
+which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0:
7032
+  version "1.3.0"
7033
+  resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
7034
+  dependencies:
7035
+    isexe "^2.0.0"
7036
+
7037
+wide-align@^1.1.0:
7038
+  version "1.1.2"
7039
+  resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
7040
+  dependencies:
7041
+    string-width "^1.0.2"
7042
+
7043
+widest-line@^2.0.0:
7044
+  version "2.0.0"
7045
+  resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273"
7046
+  dependencies:
7047
+    string-width "^2.1.1"
7048
+
7049
+window-size@0.1.0:
7050
+  version "0.1.0"
7051
+  resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
7052
+
7053
+wordwrap@0.0.2:
7054
+  version "0.0.2"
7055
+  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
7056
+
7057
+wordwrap@~0.0.2:
7058
+  version "0.0.3"
7059
+  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
7060
+
7061
+wordwrap@~1.0.0:
7062
+  version "1.0.0"
7063
+  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
7064
+
7065
+worker-farm@^1.3.1:
7066
+  version "1.5.4"
7067
+  resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.4.tgz#4debbe46b40edefcc717ebde74a90b1ae1e909a1"
7068
+  dependencies:
7069
+    errno "~0.1.7"
7070
+    xtend "~4.0.1"
7071
+
7072
+wrap-ansi@^2.0.0:
7073
+  version "2.1.0"
7074
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
7075
+  dependencies:
7076
+    string-width "^1.0.1"
7077
+    strip-ansi "^3.0.1"
7078
+
7079
+wrappy@1:
7080
+  version "1.0.2"
7081
+  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
7082
+
7083
+write-file-atomic@^2.0.0:
7084
+  version "2.3.0"
7085
+  resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
7086
+  dependencies:
7087
+    graceful-fs "^4.1.11"
7088
+    imurmurhash "^0.1.4"
7089
+    signal-exit "^3.0.2"
7090
+
7091
+write@^0.2.1:
7092
+  version "0.2.1"
7093
+  resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
7094
+  dependencies:
7095
+    mkdirp "^0.5.1"
7096
+
7097
+xdg-basedir@^3.0.0:
7098
+  version "3.0.0"
7099
+  resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
7100
+
7101
+xml-char-classes@^1.0.0:
7102
+  version "1.0.0"
7103
+  resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d"
7104
+
7105
+xml-name-validator@^2.0.1:
7106
+  version "2.0.1"
7107
+  resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
7108
+
7109
+xtend@^4.0.0, xtend@~4.0.1:
7110
+  version "4.0.1"
7111
+  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
7112
+
7113
+y18n@^3.2.1:
7114
+  version "3.2.1"
7115
+  resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
7116
+
7117
+yallist@^2.1.2:
7118
+  version "2.1.2"
7119
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
7120
+
7121
+yargs-parser@^4.2.0:
7122
+  version "4.2.1"
7123
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
7124
+  dependencies:
7125
+    camelcase "^3.0.0"
7126
+
7127
+yargs-parser@^5.0.0:
7128
+  version "5.0.0"
7129
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
7130
+  dependencies:
7131
+    camelcase "^3.0.0"
7132
+
7133
+yargs-parser@^7.0.0:
7134
+  version "7.0.0"
7135
+  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
7136
+  dependencies:
7137
+    camelcase "^4.1.0"
7138
+
7139
+yargs@^6.6.0:
7140
+  version "6.6.0"
7141
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
7142
+  dependencies:
7143
+    camelcase "^3.0.0"
7144
+    cliui "^3.2.0"
7145
+    decamelize "^1.1.1"
7146
+    get-caller-file "^1.0.1"
7147
+    os-locale "^1.4.0"
7148
+    read-pkg-up "^1.0.1"
7149
+    require-directory "^2.1.1"
7150
+    require-main-filename "^1.0.1"
7151
+    set-blocking "^2.0.0"
7152
+    string-width "^1.0.2"
7153
+    which-module "^1.0.0"
7154
+    y18n "^3.2.1"
7155
+    yargs-parser "^4.2.0"
7156
+
7157
+yargs@^7.0.2:
7158
+  version "7.1.0"
7159
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8"
7160
+  dependencies:
7161
+    camelcase "^3.0.0"
7162
+    cliui "^3.2.0"
7163
+    decamelize "^1.1.1"
7164
+    get-caller-file "^1.0.1"
7165
+    os-locale "^1.4.0"
7166
+    read-pkg-up "^1.0.1"
7167
+    require-directory "^2.1.1"
7168
+    require-main-filename "^1.0.1"
7169
+    set-blocking "^2.0.0"
7170
+    string-width "^1.0.2"
7171
+    which-module "^1.0.0"
7172
+    y18n "^3.2.1"
7173
+    yargs-parser "^5.0.0"
7174
+
7175
+yargs@^8.0.2:
7176
+  version "8.0.2"
7177
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
7178
+  dependencies:
7179
+    camelcase "^4.1.0"
7180
+    cliui "^3.2.0"
7181
+    decamelize "^1.1.1"
7182
+    get-caller-file "^1.0.1"
7183
+    os-locale "^2.0.0"
7184
+    read-pkg-up "^2.0.0"
7185
+    require-directory "^2.1.1"
7186
+    require-main-filename "^1.0.1"
7187
+    set-blocking "^2.0.0"
7188
+    string-width "^2.0.0"
7189
+    which-module "^2.0.0"
7190
+    y18n "^3.2.1"
7191
+    yargs-parser "^7.0.0"
7192
+
7193
+yargs@~3.10.0:
7194
+  version "3.10.0"
7195
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
7196
+  dependencies:
7197
+    camelcase "^1.0.2"
7198
+    cliui "^2.1.0"
7199
+    decamelize "^1.0.0"
7200
+    window-size "0.1.0"