From 286e2e19578d031a6ab36b0cbe9f6d214f504160 Mon Sep 17 00:00:00 2001 From: John Dingee Date: Fri, 6 Oct 2017 07:27:13 -0400 Subject: [PATCH 01/35] add 'to do list' using docker-compose, flask, mongo --- api/Dockerfile | 4 ++++ api/app.py | 36 ++++++++++++++++++++++++++++++++++++ api/requirements.txt | 2 ++ api/templates/todo.html | 10 ++++++++++ docker-compose.yml | 12 ++++++++++++ 5 files changed, 64 insertions(+) create mode 100644 api/Dockerfile create mode 100644 api/app.py create mode 100644 api/requirements.txt create mode 100644 api/templates/todo.html create mode 100644 docker-compose.yml diff --git a/api/Dockerfile b/api/Dockerfile new file mode 100644 index 0000000..90f4191 --- /dev/null +++ b/api/Dockerfile @@ -0,0 +1,4 @@ +FROM python:2.7-alpine +ADD . /todo +WORKDIR /todo +RUN pip install -r requirements.txt diff --git a/api/app.py b/api/app.py new file mode 100644 index 0000000..b7d66f8 --- /dev/null +++ b/api/app.py @@ -0,0 +1,36 @@ +import os +from flask import Flask, redirect, url_for, request, render_template +from pymongo import MongoClient + +app = Flask(__name__) + +client = MongoClient( + os.environ['DB_PORT_27017_TCP_ADDR'], + 27017) +db = client.tododb + +## todo list .. ## +@app.route('/') +def todo(): + + _items = db.tododb.find() + items = [item for item in _items] + + return render_template('todo.html', items=items) + + +@app.route('/new', methods=['POST']) +def new(): + + item_doc = { + 'name': request.form['name'], + 'description': request.form['description'] + } + db.tododb.insert_one(item_doc) + + return redirect(url_for('todo')) + +## end todo list .. ## + +if __name__ == "__main__": + app.run(host='0.0.0.0', debug=True) diff --git a/api/requirements.txt b/api/requirements.txt new file mode 100644 index 0000000..a98715e --- /dev/null +++ b/api/requirements.txt @@ -0,0 +1,2 @@ +flask +pymongo diff --git a/api/templates/todo.html b/api/templates/todo.html new file mode 100644 index 0000000..c5a7552 --- /dev/null +++ b/api/templates/todo.html @@ -0,0 +1,10 @@ +
+ + + +
+ +{% for item in items %} +

{{ item.name }}

+

{{ item.description }}

+{% endfor %} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8ceb02a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +api: + build: ./api + command: python -u app.py + ports: + - "5000:5000" + volumes: + - ./api/:/todo + links: + - db +db: + image: mvertes/alpine-mongo:3.4.9-0 +# frontend: From 916b82ca8ea8fd75b2120d60e33d710a9dea949d Mon Sep 17 00:00:00 2001 From: John Dingee Date: Fri, 6 Oct 2017 07:42:19 -0400 Subject: [PATCH 02/35] move app py files into api directory --- .gitignore | 7 +- .../README.md | 0 api/app.py | 11 + api/manage.py | 294 ++++++++++++++++++ spongemap.py => api/spongemap.py | 0 .../css/bootstrap-theme.css | 0 .../css/bootstrap-theme.css.map | 0 .../css/bootstrap-theme.min.css | 0 .../bootstrap-3.1.1-dist/css/bootstrap.css | 0 .../css/bootstrap.css.map | 0 .../css/bootstrap.min.css | 0 .../fonts/glyphicons-halflings-regular.eot | 0 .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | 0 .../fonts/glyphicons-halflings-regular.woff | 0 .../bootstrap-3.1.1-dist/js/bootstrap.js | 0 .../bootstrap-3.1.1-dist/js/bootstrap.min.js | 0 {static => api/static}/css/dark-theme.css | 0 {static => api/static}/css/light-theme.css | 0 .../static}/css/makeitresponsive.css | 0 {static => api/static}/css/spongemap.css | 0 {static => api/static}/img/ajax-loader.gif | Bin {static => api/static}/img/tweet-actions.png | Bin {static => api/static}/img/twitter_logo.png | Bin .../js/jquery.table-filter-0.2.2/README.md | 0 .../jquery.table-filter.js | 0 .../jquery.table-filter.min.js | 0 .../table-filter.jquery.json | 0 .../js/jquery.table-filter-0.2.2/test.html | 0 {static => api/static}/js/spongemap.js | 0 .../static}/js/tablesort/.gitattributes | 0 .../static}/js/tablesort/.gitignore | 0 {static => api/static}/js/tablesort/README.md | 0 .../js/tablesort/addons/pager/icons/first.png | Bin .../js/tablesort/addons/pager/icons/last.png | Bin .../tablesort/addons/pager/icons/loading.gif | Bin .../js/tablesort/addons/pager/icons/next.png | Bin .../js/tablesort/addons/pager/icons/prev.png | Bin .../addons/pager/jquery.tablesorter.pager.css | 0 .../addons/pager/jquery.tablesorter.pager.js | 0 .../pager/jquery.tablesorter.pager.min.js | 0 .../example-pager-custom-controls.html | 0 .../example-widget-column-reorder.html | 0 .../beta-testing/pager-custom-controls.js | 0 .../tablesort/beta-testing/widget-reorder.js | 0 .../static}/js/tablesort/bower.json | 0 .../static}/js/tablesort/changelog.txt | 0 .../static}/js/tablesort/css/bootstrap.less | 0 .../js/tablesort/css/filter.formatter.css | 0 .../js/tablesort/css/images/black-asc.gif | Bin .../js/tablesort/css/images/black-desc.gif | Bin .../tablesort/css/images/black-unsorted.gif | Bin .../css/images/bootstrap-black-unsorted.png | Bin .../css/images/bootstrap-white-unsorted.png | Bin .../css/images/dropbox-asc-hovered.png | Bin .../js/tablesort/css/images/dropbox-asc.png | Bin .../css/images/dropbox-desc-hovered.png | Bin .../js/tablesort/css/images/dropbox-desc.png | Bin .../js/tablesort/css/images/green-asc.gif | Bin .../js/tablesort/css/images/green-desc.gif | Bin .../js/tablesort/css/images/green-header.gif | Bin .../tablesort/css/images/green-unsorted.gif | Bin .../js/tablesort/css/images/ice-asc.gif | Bin .../js/tablesort/css/images/ice-desc.gif | Bin .../js/tablesort/css/images/ice-unsorted.gif | Bin .../tablesort/css/images/metro-black-asc.png | Bin .../tablesort/css/images/metro-black-desc.png | Bin .../js/tablesort/css/images/metro-loading.gif | Bin .../tablesort/css/images/metro-unsorted.png | Bin .../tablesort/css/images/metro-white-asc.png | Bin .../tablesort/css/images/metro-white-desc.png | Bin .../js/tablesort/css/images/white-asc.gif | Bin .../js/tablesort/css/images/white-desc.gif | Bin .../tablesort/css/images/white-unsorted.gif | Bin .../static}/js/tablesort/css/metro.less | 0 .../js/tablesort/css/psd/green-asc.psd | Bin .../js/tablesort/css/psd/green-desc.psd | Bin .../js/tablesort/css/psd/green-unsorted.psd | Bin .../js/tablesort/css/psd/metro-style.psd | Bin .../js/tablesort/css/theme.black-ice.css | 0 .../static}/js/tablesort/css/theme.blue.css | 0 .../js/tablesort/css/theme.bootstrap.css | 0 .../js/tablesort/css/theme.bootstrap_2.css | 0 .../static}/js/tablesort/css/theme.dark.css | 0 .../js/tablesort/css/theme.default.css | 0 .../js/tablesort/css/theme.dropbox.css | 0 .../static}/js/tablesort/css/theme.green.css | 0 .../static}/js/tablesort/css/theme.grey.css | 0 .../static}/js/tablesort/css/theme.ice.css | 0 .../static}/js/tablesort/css/theme.jui.css | 0 .../static}/js/tablesort/css/theme.less | 0 .../js/tablesort/css/theme.metro-dark.css | 0 .../js/tablesort/docs/assets/City0.json | 0 .../js/tablesort/docs/assets/City1.json | 0 .../js/tablesort/docs/assets/City2.json | 0 .../js/tablesort/docs/assets/City3.json | 0 .../tablesort/docs/assets/ajax-content.html | 0 .../js/tablesort/docs/assets/build.json | 0 .../js/tablesort/docs/assets/build.txt | 0 .../tablesort/docs/assets/theme_switcher.json | 0 .../js/tablesort/docs/css/bootstrap.min.css | 0 .../docs/css/images/animated-overlay.gif | Bin .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin .../ui-bg_diagonals-thick_90_eeeeee_40x40.png | Bin .../images/ui-bg_flat_10_000000_40x100.png | Bin .../images/ui-bg_flat_15_cd0a0a_40x100.png | Bin .../images/ui-bg_glass_100_e4f1fb_1x400.png | Bin .../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin .../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin .../images/ui-bg_glass_50_3baae3_1x400.png | Bin .../images/ui-bg_glass_65_ffffff_1x400.png | Bin .../images/ui-bg_glass_80_d7ebf9_1x400.png | Bin .../ui-bg_gloss-wave_35_f6a828_500x100.png | Bin .../ui-bg_highlight-hard_100_f2f5f7_1x100.png | Bin .../ui-bg_highlight-hard_70_000000_1x100.png | Bin .../ui-bg_highlight-soft_100_deedf7_1x100.png | Bin .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin .../ui-bg_highlight-soft_25_ffef8f_1x100.png | Bin .../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin .../css/images/ui-icons_222222_256x240.png | Bin .../css/images/ui-icons_228ef1_256x240.png | Bin .../css/images/ui-icons_2694e8_256x240.png | Bin .../css/images/ui-icons_2e83ff_256x240.png | Bin .../css/images/ui-icons_3d80b3_256x240.png | Bin .../css/images/ui-icons_72a7cf_256x240.png | Bin .../css/images/ui-icons_ef8c08_256x240.png | Bin .../css/images/ui-icons_ffd27a_256x240.png | Bin .../css/images/ui-icons_ffffff_256x240.png | Bin .../static}/js/tablesort/docs/css/jq.css | 0 .../js/tablesort/docs/css/jquery-ui.min.css | 0 .../static}/js/tablesort/docs/css/menu.css | 0 .../js/tablesort/docs/css/prettify.css | 0 .../tablesort/docs/css/select2-3.4.6.min.css | 0 .../js/tablesort/docs/css/select2-spinner.gif | Bin .../static}/js/tablesort/docs/css/select2.png | Bin .../js/tablesort/docs/css/select2x2.png | Bin .../static}/js/tablesort/docs/css/tipsy.css | 0 .../js/tablesort/docs/example-add-rows.html | 0 .../js/tablesort/docs/example-ajax.html | 0 .../tablesort/docs/example-apply-widget.html | 0 .../docs/example-child-rows-filtered.html | 0 .../js/tablesort/docs/example-child-rows.html | 0 .../tablesort/docs/example-empty-table.html | 0 .../docs/example-extending-defaults.html | 0 .../docs/example-extractors-parsers.html | 0 .../docs/example-header-column-span.html | 0 .../tablesort/docs/example-locale-sort.html | 0 .../tablesort/docs/example-meta-headers.html | 0 .../tablesort/docs/example-meta-parsers.html | 0 .../docs/example-meta-sort-list.html | 0 .../docs/example-method-sortreset.html | 0 .../docs/example-multiple-tbodies.html | 0 .../docs/example-option-custom-sort.html | 0 .../docs/example-option-date-format.html | 0 .../tablesort/docs/example-option-debug.html | 0 .../docs/example-option-delay-init.html | 0 .../tablesort/docs/example-option-digits.html | 0 .../docs/example-option-render-header.html | 0 .../docs/example-option-render-template.html | 0 .../docs/example-option-selectorsort.html | 0 .../docs/example-option-show-processing.html | 0 .../docs/example-option-sort-append.html | 0 .../docs/example-option-sort-empty.html | 0 .../docs/example-option-sort-force.html | 0 .../docs/example-option-sort-key.html | 0 .../docs/example-option-sort-list.html | 0 .../docs/example-option-sort-order.html | 0 .../example-option-sortreset-sortrestart.html | 0 .../docs/example-option-text-extraction.html | 0 .../example-option-textsorter-semver.html | 0 .../example-option-theme-metro-style.html | 0 ...xample-options-headers-digits-strings.html | 0 .../docs/example-options-headers-locked.html | 0 .../docs/example-options-headers-order.html | 0 .../docs/example-options-headers-parser.html | 0 .../docs/example-options-headers.html | 0 .../js/tablesort/docs/example-pager-ajax.html | 0 .../docs/example-pager-filtered.html | 0 .../js/tablesort/docs/example-pager.html | 0 .../docs/example-parsers-advanced.html | 0 .../docs/example-parsers-class-name.html | 0 .../tablesort/docs/example-parsers-dates.html | 0 .../docs/example-parsers-duration.html | 0 .../example-parsers-feet-inch-fraction.html | 0 .../docs/example-parsers-file-type.html | 0 .../docs/example-parsers-ignore-articles.html | 0 .../docs/example-parsers-ip-address.html | 0 .../docs/example-parsers-jquery-data.html | 0 .../docs/example-parsers-metric.html | 0 .../tablesort/docs/example-parsers-roman.html | 0 .../js/tablesort/docs/example-parsers.html | 0 .../tablesort/docs/example-trigger-sort.html | 0 .../js/tablesort/docs/example-triggers.html | 0 .../js/tablesort/docs/example-update-all.html | 0 .../tablesort/docs/example-update-cell.html | 0 .../docs/example-widget-align-character.html | 0 .../docs/example-widget-bootstrap-theme.html | 0 .../docs/example-widget-build-table.html | 0 .../docs/example-widget-column-selector.html | 0 .../docs/example-widget-columns.html | 0 .../example-widget-css-sticky-header.html | 0 .../docs/example-widget-editable.html | 0 .../docs/example-widget-filter-any-match.html | 0 .../example-widget-filter-custom-search.html | 0 .../docs/example-widget-filter-custom.html | 0 ...example-widget-filter-external-inputs.html | 0 .../example-widget-filter-formatter-1.html | 0 .../example-widget-filter-formatter-2.html | 0 ...ample-widget-filter-formatter-select2.html | 0 .../tablesort/docs/example-widget-filter.html | 0 ...mple-widget-grouping-filter-childrows.html | 0 .../docs/example-widget-grouping.html | 0 .../docs/example-widget-header-titles.html | 0 .../tablesort/docs/example-widget-math.html | 0 .../tablesort/docs/example-widget-output.html | 0 .../docs/example-widget-pager-ajax.html | 0 .../tablesort/docs/example-widget-pager.html | 0 .../tablesort/docs/example-widget-print.html | 0 .../tablesort/docs/example-widget-reflow.html | 0 .../docs/example-widget-reflow1.html | 0 .../docs/example-widget-reflow2.html | 0 .../docs/example-widget-reflow3.html | 0 .../docs/example-widget-resizable.html | 0 .../docs/example-widget-savesort.html | 0 .../docs/example-widget-scroller.html | 0 .../docs/example-widget-static-row.html | 0 .../docs/example-widget-sticky-header.html | 0 .../docs/example-widget-ui-theme.html | 0 .../tablesort/docs/example-widget-zebra.html | 0 .../js/tablesort/docs/example-widgets.html | 0 .../fonts/glyphicons-halflings-regular.eot | 0 .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | 0 .../fonts/glyphicons-halflings-regular.woff | 0 .../js/tablesort/docs/img/external.png | Bin .../static}/js/tablesort/docs/img/link.png | Bin .../js/tablesort/docs/img/screens-blue.png | Bin .../static}/js/tablesort/docs/img/screens.png | Bin .../static}/js/tablesort/docs/index.html | 0 .../js/tablesort/docs/js/bootstrap.min.js | 0 .../docs/js/chili/jquery.chili-2.2.js | 0 .../js/tablesort/docs/js/chili/recipes.js | 0 .../js/tablesort/docs/js/demo-build-table.js | 0 .../static}/js/tablesort/docs/js/docs.js | 0 .../js/tablesort/docs/js/jquery-1.2.6.min.js | 0 .../js/tablesort/docs/js/jquery-1.4.4.min.js | 0 .../js/tablesort/docs/js/jquery-latest.min.js | 0 .../tablesort/docs/js/jquery-ui-latest.min.js | 0 .../docs/js/jquery.jui_theme_switch.min.js | 0 .../js/tablesort/docs/js/jquery.tipsy.min.js | 0 .../static}/js/tablesort/docs/js/prettify.js | 0 .../static}/js/tablesort/docs/js/search-ie.js | 0 .../static}/js/tablesort/docs/js/search.js | 0 .../js/tablesort/docs/js/select2-3.4.6.min.js | 0 .../static}/js/tablesort/docs/js/sugar.min.js | 0 .../static}/js/tablesort/docs/themes.html | 0 .../static}/js/tablesort/index.html | 0 .../tablesort/js/extras/jquery.quicksearch.js | 0 .../js/tablesort/js/extras/semver-mod.js | 0 .../static}/js/tablesort/js/extras/semver.js | 0 .../js/tablesort/js/jquery.metadata.js | 0 .../js/tablesort/js/jquery.tablesorter.js | 0 .../js/tablesort/js/jquery.tablesorter.min.js | 0 ...sorter.widgets-filter-formatter-select2.js | 0 ...ry.tablesorter.widgets-filter-formatter.js | 0 ...ablesorter.widgets-filter-formatter.min.js | 0 .../js/jquery.tablesorter.widgets.js | 0 .../js/jquery.tablesorter.widgets.min.js | 0 .../js/parsers/parser-date-extract.js | 0 .../js/parsers/parser-date-iso8601.js | 0 .../tablesort/js/parsers/parser-date-month.js | 0 .../js/parsers/parser-date-two-digit-year.js | 0 .../js/parsers/parser-date-weekday.js | 0 .../js/tablesort/js/parsers/parser-date.js | 0 .../tablesort/js/parsers/parser-duration.js | 0 .../js/parsers/parser-feet-inch-fraction.js | 0 .../tablesort/js/parsers/parser-file-type.js | 0 .../js/parsers/parser-ignore-articles.js | 0 .../js/tablesort/js/parsers/parser-image.js | 0 .../js/parsers/parser-input-select.js | 0 .../js/tablesort/js/parsers/parser-ipv6.js | 0 .../js/tablesort/js/parsers/parser-metric.js | 0 .../js/tablesort/js/parsers/parser-roman.js | 0 .../tablesort/js/widgets/widget-alignChar.js | 0 .../js/widgets/widget-build-table.js | 0 .../js/widgets/widget-columnSelector.js | 0 .../js/widgets/widget-cssStickyHeaders.js | 0 .../tablesort/js/widgets/widget-editable.js | 0 .../tablesort/js/widgets/widget-grouping.js | 0 .../js/widgets/widget-headerTitles.js | 0 .../js/tablesort/js/widgets/widget-math.js | 0 .../js/tablesort/js/widgets/widget-output.js | 0 .../js/tablesort/js/widgets/widget-pager.js | 0 .../js/tablesort/js/widgets/widget-print.js | 0 .../js/tablesort/js/widgets/widget-reflow.js | 0 .../js/widgets/widget-repeatheaders.js | 0 .../tablesort/js/widgets/widget-scroller.js | 0 .../tablesort/js/widgets/widget-staticRow.js | 0 .../static}/js/tablesort/package.json | 0 .../js/tablesort/tablesorter.jquery.json | 0 {static => api/static}/js/tablesort/test.html | 0 .../js/tablesort/testing/jshint-2.4.4.js | 0 .../js/tablesort/testing/qunit-1.14.0.css | 0 .../js/tablesort/testing/qunit-1.14.0.js | 0 .../js/tablesort/testing/testing-ipv6.js | 0 .../js/tablesort/testing/testing-widgets.js | 0 .../static}/js/tablesort/testing/testing.css | 0 .../static}/js/tablesort/testing/testing.js | 0 {static => api/static}/js/twitter.js | 0 tasks.py => api/tasks.py | 0 {templates => api/templates}/admin/index.html | 0 {templates => api/templates}/list.html | 0 {templates => api/templates}/my_master.html | 0 {templates => api/templates}/spongemap.html | 0 frontend/.babelrc | 8 + frontend/.flowconfig | 63 ++++ frontend/.gitignore | 3 + frontend/.watchmanconfig | 1 + frontend/App.js | 23 ++ frontend/App.test.js | 9 + frontend/README.md | 4 + frontend/app.json | 5 + frontend/package.json | 26 ++ frontend/web/public/index.html | 0 frontend/web/webpack/web.dev.config.js | 0 frontend/web/webpack/web.prod.config.js | 0 manage.py | 293 ----------------- requirements.txt | 4 +- 329 files changed, 451 insertions(+), 300 deletions(-) rename {static/js/jquery.table-filter-0.2.2 => api}/README.md (100%) create mode 100755 api/manage.py rename spongemap.py => api/spongemap.py (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap-theme.css (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap.css (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap.css.map (100%) rename {static => api/static}/bootstrap-3.1.1-dist/css/bootstrap.min.css (100%) rename {static => api/static}/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot (100%) rename {static => api/static}/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg (100%) rename {static => api/static}/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf (100%) rename {static => api/static}/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff (100%) rename {static => api/static}/bootstrap-3.1.1-dist/js/bootstrap.js (100%) rename {static => api/static}/bootstrap-3.1.1-dist/js/bootstrap.min.js (100%) rename {static => api/static}/css/dark-theme.css (100%) rename {static => api/static}/css/light-theme.css (100%) rename {static => api/static}/css/makeitresponsive.css (100%) rename {static => api/static}/css/spongemap.css (100%) rename {static => api/static}/img/ajax-loader.gif (100%) rename {static => api/static}/img/tweet-actions.png (100%) rename {static => api/static}/img/twitter_logo.png (100%) rename static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot => api/static/js/jquery.table-filter-0.2.2/README.md (100%) rename {static => api/static}/js/jquery.table-filter-0.2.2/jquery.table-filter.js (100%) rename {static => api/static}/js/jquery.table-filter-0.2.2/jquery.table-filter.min.js (100%) rename {static => api/static}/js/jquery.table-filter-0.2.2/table-filter.jquery.json (100%) rename {static => api/static}/js/jquery.table-filter-0.2.2/test.html (100%) rename {static => api/static}/js/spongemap.js (100%) rename {static => api/static}/js/tablesort/.gitattributes (100%) rename {static => api/static}/js/tablesort/.gitignore (100%) rename {static => api/static}/js/tablesort/README.md (100%) rename {static => api/static}/js/tablesort/addons/pager/icons/first.png (100%) rename {static => api/static}/js/tablesort/addons/pager/icons/last.png (100%) rename {static => api/static}/js/tablesort/addons/pager/icons/loading.gif (100%) rename {static => api/static}/js/tablesort/addons/pager/icons/next.png (100%) rename {static => api/static}/js/tablesort/addons/pager/icons/prev.png (100%) rename {static => api/static}/js/tablesort/addons/pager/jquery.tablesorter.pager.css (100%) rename {static => api/static}/js/tablesort/addons/pager/jquery.tablesorter.pager.js (100%) rename {static => api/static}/js/tablesort/addons/pager/jquery.tablesorter.pager.min.js (100%) rename {static => api/static}/js/tablesort/beta-testing/example-pager-custom-controls.html (100%) rename {static => api/static}/js/tablesort/beta-testing/example-widget-column-reorder.html (100%) rename {static => api/static}/js/tablesort/beta-testing/pager-custom-controls.js (100%) rename {static => api/static}/js/tablesort/beta-testing/widget-reorder.js (100%) rename {static => api/static}/js/tablesort/bower.json (100%) rename {static => api/static}/js/tablesort/changelog.txt (100%) rename {static => api/static}/js/tablesort/css/bootstrap.less (100%) rename {static => api/static}/js/tablesort/css/filter.formatter.css (100%) rename {static => api/static}/js/tablesort/css/images/black-asc.gif (100%) rename {static => api/static}/js/tablesort/css/images/black-desc.gif (100%) rename {static => api/static}/js/tablesort/css/images/black-unsorted.gif (100%) rename {static => api/static}/js/tablesort/css/images/bootstrap-black-unsorted.png (100%) rename {static => api/static}/js/tablesort/css/images/bootstrap-white-unsorted.png (100%) rename {static => api/static}/js/tablesort/css/images/dropbox-asc-hovered.png (100%) rename {static => api/static}/js/tablesort/css/images/dropbox-asc.png (100%) rename {static => api/static}/js/tablesort/css/images/dropbox-desc-hovered.png (100%) rename {static => api/static}/js/tablesort/css/images/dropbox-desc.png (100%) rename {static => api/static}/js/tablesort/css/images/green-asc.gif (100%) rename {static => api/static}/js/tablesort/css/images/green-desc.gif (100%) rename {static => api/static}/js/tablesort/css/images/green-header.gif (100%) rename {static => api/static}/js/tablesort/css/images/green-unsorted.gif (100%) rename {static => api/static}/js/tablesort/css/images/ice-asc.gif (100%) rename {static => api/static}/js/tablesort/css/images/ice-desc.gif (100%) rename {static => api/static}/js/tablesort/css/images/ice-unsorted.gif (100%) rename {static => api/static}/js/tablesort/css/images/metro-black-asc.png (100%) rename {static => api/static}/js/tablesort/css/images/metro-black-desc.png (100%) rename {static => api/static}/js/tablesort/css/images/metro-loading.gif (100%) rename {static => api/static}/js/tablesort/css/images/metro-unsorted.png (100%) rename {static => api/static}/js/tablesort/css/images/metro-white-asc.png (100%) rename {static => api/static}/js/tablesort/css/images/metro-white-desc.png (100%) rename {static => api/static}/js/tablesort/css/images/white-asc.gif (100%) rename {static => api/static}/js/tablesort/css/images/white-desc.gif (100%) rename {static => api/static}/js/tablesort/css/images/white-unsorted.gif (100%) rename {static => api/static}/js/tablesort/css/metro.less (100%) rename {static => api/static}/js/tablesort/css/psd/green-asc.psd (100%) rename {static => api/static}/js/tablesort/css/psd/green-desc.psd (100%) rename {static => api/static}/js/tablesort/css/psd/green-unsorted.psd (100%) rename {static => api/static}/js/tablesort/css/psd/metro-style.psd (100%) rename {static => api/static}/js/tablesort/css/theme.black-ice.css (100%) rename {static => api/static}/js/tablesort/css/theme.blue.css (100%) rename {static => api/static}/js/tablesort/css/theme.bootstrap.css (100%) rename {static => api/static}/js/tablesort/css/theme.bootstrap_2.css (100%) rename {static => api/static}/js/tablesort/css/theme.dark.css (100%) rename {static => api/static}/js/tablesort/css/theme.default.css (100%) rename {static => api/static}/js/tablesort/css/theme.dropbox.css (100%) rename {static => api/static}/js/tablesort/css/theme.green.css (100%) rename {static => api/static}/js/tablesort/css/theme.grey.css (100%) rename {static => api/static}/js/tablesort/css/theme.ice.css (100%) rename {static => api/static}/js/tablesort/css/theme.jui.css (100%) rename {static => api/static}/js/tablesort/css/theme.less (100%) rename {static => api/static}/js/tablesort/css/theme.metro-dark.css (100%) rename {static => api/static}/js/tablesort/docs/assets/City0.json (100%) rename {static => api/static}/js/tablesort/docs/assets/City1.json (100%) rename {static => api/static}/js/tablesort/docs/assets/City2.json (100%) rename {static => api/static}/js/tablesort/docs/assets/City3.json (100%) rename {static => api/static}/js/tablesort/docs/assets/ajax-content.html (100%) rename {static => api/static}/js/tablesort/docs/assets/build.json (100%) rename {static => api/static}/js/tablesort/docs/assets/build.txt (100%) rename {static => api/static}/js/tablesort/docs/assets/theme_switcher.json (100%) rename {static => api/static}/js/tablesort/docs/css/bootstrap.min.css (100%) rename {static => api/static}/js/tablesort/docs/css/images/animated-overlay.gif (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_diagonals-thick_20_666666_40x40.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_flat_10_000000_40x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_flat_15_cd0a0a_40x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_100_e4f1fb_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_100_f6f6f6_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_100_fdf5ce_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_50_3baae3_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_65_ffffff_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_glass_80_d7ebf9_1x400.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-hard_70_000000_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_deedf7_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-soft_25_ffef8f_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_222222_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_228ef1_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_2694e8_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_2e83ff_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_3d80b3_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_72a7cf_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_ef8c08_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_ffd27a_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/images/ui-icons_ffffff_256x240.png (100%) rename {static => api/static}/js/tablesort/docs/css/jq.css (100%) rename {static => api/static}/js/tablesort/docs/css/jquery-ui.min.css (100%) rename {static => api/static}/js/tablesort/docs/css/menu.css (100%) rename {static => api/static}/js/tablesort/docs/css/prettify.css (100%) rename {static => api/static}/js/tablesort/docs/css/select2-3.4.6.min.css (100%) rename {static => api/static}/js/tablesort/docs/css/select2-spinner.gif (100%) rename {static => api/static}/js/tablesort/docs/css/select2.png (100%) rename {static => api/static}/js/tablesort/docs/css/select2x2.png (100%) rename {static => api/static}/js/tablesort/docs/css/tipsy.css (100%) rename {static => api/static}/js/tablesort/docs/example-add-rows.html (100%) rename {static => api/static}/js/tablesort/docs/example-ajax.html (100%) rename {static => api/static}/js/tablesort/docs/example-apply-widget.html (100%) rename {static => api/static}/js/tablesort/docs/example-child-rows-filtered.html (100%) rename {static => api/static}/js/tablesort/docs/example-child-rows.html (100%) rename {static => api/static}/js/tablesort/docs/example-empty-table.html (100%) rename {static => api/static}/js/tablesort/docs/example-extending-defaults.html (100%) rename {static => api/static}/js/tablesort/docs/example-extractors-parsers.html (100%) rename {static => api/static}/js/tablesort/docs/example-header-column-span.html (100%) rename {static => api/static}/js/tablesort/docs/example-locale-sort.html (100%) rename {static => api/static}/js/tablesort/docs/example-meta-headers.html (100%) rename {static => api/static}/js/tablesort/docs/example-meta-parsers.html (100%) rename {static => api/static}/js/tablesort/docs/example-meta-sort-list.html (100%) rename {static => api/static}/js/tablesort/docs/example-method-sortreset.html (100%) rename {static => api/static}/js/tablesort/docs/example-multiple-tbodies.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-custom-sort.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-date-format.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-debug.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-delay-init.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-digits.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-render-header.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-render-template.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-selectorsort.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-show-processing.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-append.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-empty.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-force.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-key.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-list.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sort-order.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-sortreset-sortrestart.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-text-extraction.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-textsorter-semver.html (100%) rename {static => api/static}/js/tablesort/docs/example-option-theme-metro-style.html (100%) rename {static => api/static}/js/tablesort/docs/example-options-headers-digits-strings.html (100%) rename {static => api/static}/js/tablesort/docs/example-options-headers-locked.html (100%) rename {static => api/static}/js/tablesort/docs/example-options-headers-order.html (100%) rename {static => api/static}/js/tablesort/docs/example-options-headers-parser.html (100%) rename {static => api/static}/js/tablesort/docs/example-options-headers.html (100%) rename {static => api/static}/js/tablesort/docs/example-pager-ajax.html (100%) rename {static => api/static}/js/tablesort/docs/example-pager-filtered.html (100%) rename {static => api/static}/js/tablesort/docs/example-pager.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-advanced.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-class-name.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-dates.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-duration.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-feet-inch-fraction.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-file-type.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-ignore-articles.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-ip-address.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-jquery-data.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-metric.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers-roman.html (100%) rename {static => api/static}/js/tablesort/docs/example-parsers.html (100%) rename {static => api/static}/js/tablesort/docs/example-trigger-sort.html (100%) rename {static => api/static}/js/tablesort/docs/example-triggers.html (100%) rename {static => api/static}/js/tablesort/docs/example-update-all.html (100%) rename {static => api/static}/js/tablesort/docs/example-update-cell.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-align-character.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-bootstrap-theme.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-build-table.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-column-selector.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-columns.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-css-sticky-header.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-editable.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-any-match.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-custom-search.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-custom.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-external-inputs.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-formatter-1.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-formatter-2.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter-formatter-select2.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-filter.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-grouping-filter-childrows.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-grouping.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-header-titles.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-math.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-output.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-pager-ajax.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-pager.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-print.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-reflow.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-reflow1.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-reflow2.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-reflow3.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-resizable.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-savesort.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-scroller.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-static-row.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-sticky-header.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-ui-theme.html (100%) rename {static => api/static}/js/tablesort/docs/example-widget-zebra.html (100%) rename {static => api/static}/js/tablesort/docs/example-widgets.html (100%) rename static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf => api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot (100%) rename {static => api/static}/js/tablesort/docs/fonts/glyphicons-halflings-regular.svg (100%) rename static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff => api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf (100%) create mode 100644 api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff rename {static => api/static}/js/tablesort/docs/img/external.png (100%) rename {static => api/static}/js/tablesort/docs/img/link.png (100%) rename {static => api/static}/js/tablesort/docs/img/screens-blue.png (100%) rename {static => api/static}/js/tablesort/docs/img/screens.png (100%) rename {static => api/static}/js/tablesort/docs/index.html (100%) rename {static => api/static}/js/tablesort/docs/js/bootstrap.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/chili/jquery.chili-2.2.js (100%) rename {static => api/static}/js/tablesort/docs/js/chili/recipes.js (100%) rename {static => api/static}/js/tablesort/docs/js/demo-build-table.js (100%) rename {static => api/static}/js/tablesort/docs/js/docs.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery-1.2.6.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery-1.4.4.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery-latest.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery-ui-latest.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery.jui_theme_switch.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/jquery.tipsy.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/prettify.js (100%) rename {static => api/static}/js/tablesort/docs/js/search-ie.js (100%) rename {static => api/static}/js/tablesort/docs/js/search.js (100%) rename {static => api/static}/js/tablesort/docs/js/select2-3.4.6.min.js (100%) rename {static => api/static}/js/tablesort/docs/js/sugar.min.js (100%) rename {static => api/static}/js/tablesort/docs/themes.html (100%) rename {static => api/static}/js/tablesort/index.html (100%) rename {static => api/static}/js/tablesort/js/extras/jquery.quicksearch.js (100%) rename {static => api/static}/js/tablesort/js/extras/semver-mod.js (100%) rename {static => api/static}/js/tablesort/js/extras/semver.js (100%) rename {static => api/static}/js/tablesort/js/jquery.metadata.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.min.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter-select2.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.min.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.widgets.js (100%) rename {static => api/static}/js/tablesort/js/jquery.tablesorter.widgets.min.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date-extract.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date-iso8601.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date-month.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date-two-digit-year.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date-weekday.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-date.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-duration.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-feet-inch-fraction.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-file-type.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-ignore-articles.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-image.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-input-select.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-ipv6.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-metric.js (100%) rename {static => api/static}/js/tablesort/js/parsers/parser-roman.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-alignChar.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-build-table.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-columnSelector.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-cssStickyHeaders.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-editable.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-grouping.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-headerTitles.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-math.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-output.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-pager.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-print.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-reflow.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-repeatheaders.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-scroller.js (100%) rename {static => api/static}/js/tablesort/js/widgets/widget-staticRow.js (100%) rename {static => api/static}/js/tablesort/package.json (100%) rename {static => api/static}/js/tablesort/tablesorter.jquery.json (100%) rename {static => api/static}/js/tablesort/test.html (100%) rename {static => api/static}/js/tablesort/testing/jshint-2.4.4.js (100%) rename {static => api/static}/js/tablesort/testing/qunit-1.14.0.css (100%) rename {static => api/static}/js/tablesort/testing/qunit-1.14.0.js (100%) rename {static => api/static}/js/tablesort/testing/testing-ipv6.js (100%) rename {static => api/static}/js/tablesort/testing/testing-widgets.js (100%) rename {static => api/static}/js/tablesort/testing/testing.css (100%) rename {static => api/static}/js/tablesort/testing/testing.js (100%) rename {static => api/static}/js/twitter.js (100%) rename tasks.py => api/tasks.py (100%) rename {templates => api/templates}/admin/index.html (100%) rename {templates => api/templates}/list.html (100%) rename {templates => api/templates}/my_master.html (100%) rename {templates => api/templates}/spongemap.html (100%) create mode 100644 frontend/.babelrc create mode 100644 frontend/.flowconfig create mode 100644 frontend/.gitignore create mode 100644 frontend/.watchmanconfig create mode 100644 frontend/App.js create mode 100644 frontend/App.test.js create mode 100644 frontend/README.md create mode 100644 frontend/app.json create mode 100644 frontend/package.json create mode 100644 frontend/web/public/index.html create mode 100644 frontend/web/webpack/web.dev.config.js create mode 100644 frontend/web/webpack/web.prod.config.js delete mode 100755 manage.py diff --git a/.gitignore b/.gitignore index a424c55..88c331e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,6 @@ *idea* - *.pyc - *.db - *.box - -.vagrant \ No newline at end of file +.vagrant +venv diff --git a/static/js/jquery.table-filter-0.2.2/README.md b/api/README.md similarity index 100% rename from static/js/jquery.table-filter-0.2.2/README.md rename to api/README.md diff --git a/api/app.py b/api/app.py index b7d66f8..bbabdd4 100644 --- a/api/app.py +++ b/api/app.py @@ -9,8 +9,19 @@ 27017) db = client.tododb + ## todo list .. ## @app.route('/') +def index(): + + return render_template('spongemap.html') + +############################################# +#### BOILER PLATE STUFF TO BE REMOVED .. #### +############################################# + +## todo list .. ## +@app.route('/todo') def todo(): _items = db.tododb.find() diff --git a/api/manage.py b/api/manage.py new file mode 100755 index 0000000..7c572fb --- /dev/null +++ b/api/manage.py @@ -0,0 +1,294 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +__author__ = 'jcranwellward' + +# import logging +# import os, re +# import random +# import datetime +# import requests +# import json +# +from flask.ext.script import ( + Manager, + Server +) +# +# from pymongo import MongoClient +# from activtyinfo_client import ActivityInfoClient +# from cartodb import CartoDBAPIKey, CartoDBException +# +from spongemap import app, Report, Attribute +# +manager = Manager(app) +# +# ai = MongoClient( +# os.environ.get('MONGODB_URL', 'mongodb://localhost:27017'))['ai-aggregator'] +# +# +# def send_message(message): +# requests.post( +# os.environ.get('SLACK_WEBHOOK'), +# data=json.dumps({'text': message}) +# ) +# +# +# @manager.command +# def update_levels(country_code='LB'): +# """ +# Updates local admin level lookup tables from AI. +# These lookup tables are used when creating sites for AI. +# """ +# +# client = ActivityInfoClient() +# +# for level in client.get_admin_levels(country_code): +# entities = client.get_entities(level['id']) +# for entity in entities: +# ai[level['name']].update( +# {'_id': entity['id']}, entity, upsert=True) +# print 'Updated entity {}: {}'.format( +# level['name'], entity['name'].encode('UTF-8') +# ) +# +# for site_type in client.get_location_types(country_code): +# locations = client.get_locations(site_type['id']) +# for location in locations: +# ai.locations.update( +# {'_id': location['id']}, location, upsert=True) +# print 'Updated {}: {}'.format( +# site_type['name'].encode('UTF-8'), location['name'].encode('UTF-8') +# ) +# +# +# @manager.command +# def update_sites( +# api_key='', +# domain='', +# username='', +# password='', +# list_name='', +# site_type='', +# name_col='', +# code_col='', +# target_list='' +# ): +# carto_client = CartoDBAPIKey(api_key, domain) +# +# ai_client = ActivityInfoClient(username, password) +# +# # create an index of sites by p_code +# existing = dict( +# (site['code'], dict(site, index=i)) +# for (i, site) in enumerate( +# ai_client.get_locations(target_list) +# ) if 'code' in site +# ) +# +# sites = carto_client.sql( +# 'select * from {}'.format(list_name) +# ) +# send_message('Starting upload of {}'.format(list_name)) +# bad_codes = [] +# updated_sites = 0 +# for row in sites['rows']: +# p_code = str(row[code_col]).strip() +# site_name = row[name_col].encode('UTF-8') +# cad = ai['Cadastral Area'].find_one({'code': str(row['cad_code'])}) +# if cad is None: +# bad_codes.append(row['cad_code']) +# continue +# caz = ai['Caza'].find_one({'id': cad['parentId']}) +# gov = ai['Governorate'].find_one({'id': caz['parentId']}) +# +# if p_code not in existing and site_name: +# +# payload = dict( +# id=int(random.getrandbits(31)), +# locationTypeId=int(target_list), +# name='{}: {}'.format(site_type, site_name)[0:40], +# axe='{}'.format(p_code), +# latitude=row['latitude'], +# longitude=row['longitude'], +# workflowstatusid='validated' +# ) +# payload['E{}'.format(gov['levelId'])] = gov['id'] +# payload['E{}'.format(caz['levelId'])] = caz['id'] +# payload['E{}'.format(cad['levelId'])] = cad['id'] +# +# response = ai_client.call_command('CreateLocation', **payload) +# if response.status_code == requests.codes.no_content: +# updated_sites += 1 +# print 'Updated {}'.format(payload['name']) +# else: +# print 'Error for {}'.format(payload['name']) +# +# print 'Bad codes: {}'.format(bad_codes) +# print 'Updated sites: {}'.format(updated_sites) +# send_message('Updated {} sites'.format(updated_sites)) +# +# +# @manager.command +# def update_ai_locations(type_id, username='', password=''): +# client = ActivityInfoClient(username, password) +# +# updated_location = 0 +# for location in ai.locations.find({'ai_name': {'$regex': 'PG'}}): +# +# payload = { +# 'id': int(random.getrandbits(31)), +# 'locationTypeId': type_id, +# 'name': location['ai_name'], +# 'axe': '{}'.format(location['p_code']), +# 'latitude': location['latitude'], +# 'longitude': location['longitude'], +# 'workflowstatusid': 'validated' +# } +# for id, level in location['adminEntities'].items(): +# payload['E{}'.format(id)] = level['id'] +# +# response = client.call_command('CreateLocation', **payload) +# if response.status_code == requests.codes.ok: +# updated_location += 1 +# print 'Uploaded {}'.format(location['ai_name'].encode('UTF-8')) +# else: +# print 'Error for: {}'.format(location['ai_name'].encode('UTF-8')) +# +# print updated_location +# +# +# @manager.command +# def import_ai(dbs, username='', password='', date=''): +# """ +# Imports data from Activity Info +# """ +# +# db_ids = dbs.split(',') +# client = ActivityInfoClient(username, password) +# +# for db_id in db_ids: +# reports_created = 0 +# db_info = client.get_database(db_id) +# send_message('AI import started for database: {}'.format(db_info['name'])) +# +# # 'store the whole database for future reference' +# db_info['_id'] = db_id +# ai.databases.update({'_id': db_id}, db_info, upsert=True) +# +# # 'split out all the attribute groups into a separate collection' +# attribs = ai.databases.aggregate([ +# {'$project': {'groups': '$activities.attributeGroups'}}, +# {'$unwind': '$groups'}, +# {'$unwind': '$groups'}, +# {'$group': {'_id': "$_id", 'groups': {'$push': '$groups'}}}, +# ]) +# for attrib in attribs['result'][0]['groups']: +# attrib['_id'] = attrib['id'] +# ai.attributeGroups.update({'_id': attrib['id']}, attrib, upsert=True) +# +# # 'create an index of sites by id' +# sites = dict( +# (site['id'], dict(site, index=i)) +# for (i, site) in enumerate( +# client.get_sites(database=db_id) +# ) +# ) +# +# # 'create an index of activities by id' +# activities = dict( +# (activity['id'], dict(activity, index=i)) +# for (i, activity) in enumerate( +# ai.databases.aggregate([ +# {'$match': {'_id': db_id}}, +# {'$unwind': '$activities'}, +# {'$project': { +# '_id': 0, +# 'id': '$activities.id', +# 'name': '$activities.name', +# 'category': '$activities.category', +# 'location': '$activities.locationType' +# }}, +# ])['result'] +# ) +# ) +# +# # 'get all reports for these activities: {}'.format(activities.keys()) +# if not date: # if no date provided get for the current month +# date = datetime.date.today().strftime('%Y-%m') +# send_message('Pulling reports for date: {}'.format(date)) +# +# forms = client.get_cube(activities.keys(), month=date) +# +# # 'processing {} forms'.format(len(forms)) +# for indicator in forms: +# +# site = sites[indicator['key']['Site']['id']] +# attributes = [] +# if 'attributes' in site: +# attributes = [ +# attr for attr in ai.attributeGroups.find( +# {'attributes.id': {'$in': site['attributes']}}, +# {'name': 1, 'mandatory': 1, "attributes.$": 1} +# ) +# ] +# if indicator['sum']: +# report, created = Report.objects.get_or_create( +# db_name=db_info['name'], +# date='{}-{}'.format( +# indicator['key']['Date']['year'], +# indicator['key']['Date']['month'], +# ), +# site_id=site['id'], +# activity_id=site['activity'], +# partner_id=site['partner']['id'], +# indicator_id=indicator['key']['Indicator']['id'], +# ) +# activity = activities[report.activity_id] +# report.value = indicator['sum'] +# report.category = activity['category'] +# report.activity = activity['name'] +# report.partner_name = site['partner']['name'] +# report.p_code = site['location']['code'] +# report.location_name = site['location']['name'] +# report.location_id = site['location']['id'] +# report.location_x = site['location'].get('longitude', None) +# report.location_y = site['location'].get('latitude', None) +# report.indicator_name = indicator['key']['Indicator']['label'] +# report.comments = site.get('comments', None) +# +# location = ai.locations.find_one({'id': report.location_id}) +# if location and 'adminEntities' in location: +# try: +# report.gov_code = str(location['adminEntities']['1370']['id']) +# report.governorate = location['adminEntities']['1370']['name'] +# report.district_code = str(location['adminEntities']['1521']['id']) +# report.district = location['adminEntities']['1521']['name'] +# report.cadastral_code = str(location['adminEntities']['1522']['id']) +# report.cadastral = location['adminEntities']['1522']['name'] +# except Exception as exp: +# pass +# if created: +# for a in attributes: +# report.attributes.append( +# Attribute( +# name=a['name'], +# value=a['attributes'][0]['name'] +# ) +# ) +# reports_created += 1 +# +# report.save() +# +# send_message('AI import finished, {} site reports created'.format(reports_created)) + + +# Turn on debugger by default and reloader +manager.add_command("runserver", Server( + use_debugger=True, + use_reloader=True, + host='0.0.0.0', + port=9876) +) + +if __name__ == "__main__": + manager.run() diff --git a/spongemap.py b/api/spongemap.py similarity index 100% rename from spongemap.py rename to api/spongemap.py diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css b/api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap-theme.css rename to api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map b/api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map rename to api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css b/api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css rename to api/static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap.css b/api/static/bootstrap-3.1.1-dist/css/bootstrap.css similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap.css rename to api/static/bootstrap-3.1.1-dist/css/bootstrap.css diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap.css.map b/api/static/bootstrap-3.1.1-dist/css/bootstrap.css.map similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap.css.map rename to api/static/bootstrap-3.1.1-dist/css/bootstrap.css.map diff --git a/static/bootstrap-3.1.1-dist/css/bootstrap.min.css b/api/static/bootstrap-3.1.1-dist/css/bootstrap.min.css similarity index 100% rename from static/bootstrap-3.1.1-dist/css/bootstrap.min.css rename to api/static/bootstrap-3.1.1-dist/css/bootstrap.min.css diff --git a/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot b/api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot rename to api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot diff --git a/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg b/api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg rename to api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg diff --git a/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf b/api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf rename to api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf diff --git a/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff b/api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff rename to api/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff diff --git a/static/bootstrap-3.1.1-dist/js/bootstrap.js b/api/static/bootstrap-3.1.1-dist/js/bootstrap.js similarity index 100% rename from static/bootstrap-3.1.1-dist/js/bootstrap.js rename to api/static/bootstrap-3.1.1-dist/js/bootstrap.js diff --git a/static/bootstrap-3.1.1-dist/js/bootstrap.min.js b/api/static/bootstrap-3.1.1-dist/js/bootstrap.min.js similarity index 100% rename from static/bootstrap-3.1.1-dist/js/bootstrap.min.js rename to api/static/bootstrap-3.1.1-dist/js/bootstrap.min.js diff --git a/static/css/dark-theme.css b/api/static/css/dark-theme.css similarity index 100% rename from static/css/dark-theme.css rename to api/static/css/dark-theme.css diff --git a/static/css/light-theme.css b/api/static/css/light-theme.css similarity index 100% rename from static/css/light-theme.css rename to api/static/css/light-theme.css diff --git a/static/css/makeitresponsive.css b/api/static/css/makeitresponsive.css similarity index 100% rename from static/css/makeitresponsive.css rename to api/static/css/makeitresponsive.css diff --git a/static/css/spongemap.css b/api/static/css/spongemap.css similarity index 100% rename from static/css/spongemap.css rename to api/static/css/spongemap.css diff --git a/static/img/ajax-loader.gif b/api/static/img/ajax-loader.gif similarity index 100% rename from static/img/ajax-loader.gif rename to api/static/img/ajax-loader.gif diff --git a/static/img/tweet-actions.png b/api/static/img/tweet-actions.png similarity index 100% rename from static/img/tweet-actions.png rename to api/static/img/tweet-actions.png diff --git a/static/img/twitter_logo.png b/api/static/img/twitter_logo.png similarity index 100% rename from static/img/twitter_logo.png rename to api/static/img/twitter_logo.png diff --git a/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot b/api/static/js/jquery.table-filter-0.2.2/README.md similarity index 100% rename from static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot rename to api/static/js/jquery.table-filter-0.2.2/README.md diff --git a/static/js/jquery.table-filter-0.2.2/jquery.table-filter.js b/api/static/js/jquery.table-filter-0.2.2/jquery.table-filter.js similarity index 100% rename from static/js/jquery.table-filter-0.2.2/jquery.table-filter.js rename to api/static/js/jquery.table-filter-0.2.2/jquery.table-filter.js diff --git a/static/js/jquery.table-filter-0.2.2/jquery.table-filter.min.js b/api/static/js/jquery.table-filter-0.2.2/jquery.table-filter.min.js similarity index 100% rename from static/js/jquery.table-filter-0.2.2/jquery.table-filter.min.js rename to api/static/js/jquery.table-filter-0.2.2/jquery.table-filter.min.js diff --git a/static/js/jquery.table-filter-0.2.2/table-filter.jquery.json b/api/static/js/jquery.table-filter-0.2.2/table-filter.jquery.json similarity index 100% rename from static/js/jquery.table-filter-0.2.2/table-filter.jquery.json rename to api/static/js/jquery.table-filter-0.2.2/table-filter.jquery.json diff --git a/static/js/jquery.table-filter-0.2.2/test.html b/api/static/js/jquery.table-filter-0.2.2/test.html similarity index 100% rename from static/js/jquery.table-filter-0.2.2/test.html rename to api/static/js/jquery.table-filter-0.2.2/test.html diff --git a/static/js/spongemap.js b/api/static/js/spongemap.js similarity index 100% rename from static/js/spongemap.js rename to api/static/js/spongemap.js diff --git a/static/js/tablesort/.gitattributes b/api/static/js/tablesort/.gitattributes similarity index 100% rename from static/js/tablesort/.gitattributes rename to api/static/js/tablesort/.gitattributes diff --git a/static/js/tablesort/.gitignore b/api/static/js/tablesort/.gitignore similarity index 100% rename from static/js/tablesort/.gitignore rename to api/static/js/tablesort/.gitignore diff --git a/static/js/tablesort/README.md b/api/static/js/tablesort/README.md similarity index 100% rename from static/js/tablesort/README.md rename to api/static/js/tablesort/README.md diff --git a/static/js/tablesort/addons/pager/icons/first.png b/api/static/js/tablesort/addons/pager/icons/first.png similarity index 100% rename from static/js/tablesort/addons/pager/icons/first.png rename to api/static/js/tablesort/addons/pager/icons/first.png diff --git a/static/js/tablesort/addons/pager/icons/last.png b/api/static/js/tablesort/addons/pager/icons/last.png similarity index 100% rename from static/js/tablesort/addons/pager/icons/last.png rename to api/static/js/tablesort/addons/pager/icons/last.png diff --git a/static/js/tablesort/addons/pager/icons/loading.gif b/api/static/js/tablesort/addons/pager/icons/loading.gif similarity index 100% rename from static/js/tablesort/addons/pager/icons/loading.gif rename to api/static/js/tablesort/addons/pager/icons/loading.gif diff --git a/static/js/tablesort/addons/pager/icons/next.png b/api/static/js/tablesort/addons/pager/icons/next.png similarity index 100% rename from static/js/tablesort/addons/pager/icons/next.png rename to api/static/js/tablesort/addons/pager/icons/next.png diff --git a/static/js/tablesort/addons/pager/icons/prev.png b/api/static/js/tablesort/addons/pager/icons/prev.png similarity index 100% rename from static/js/tablesort/addons/pager/icons/prev.png rename to api/static/js/tablesort/addons/pager/icons/prev.png diff --git a/static/js/tablesort/addons/pager/jquery.tablesorter.pager.css b/api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.css similarity index 100% rename from static/js/tablesort/addons/pager/jquery.tablesorter.pager.css rename to api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.css diff --git a/static/js/tablesort/addons/pager/jquery.tablesorter.pager.js b/api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.js similarity index 100% rename from static/js/tablesort/addons/pager/jquery.tablesorter.pager.js rename to api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.js diff --git a/static/js/tablesort/addons/pager/jquery.tablesorter.pager.min.js b/api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.min.js similarity index 100% rename from static/js/tablesort/addons/pager/jquery.tablesorter.pager.min.js rename to api/static/js/tablesort/addons/pager/jquery.tablesorter.pager.min.js diff --git a/static/js/tablesort/beta-testing/example-pager-custom-controls.html b/api/static/js/tablesort/beta-testing/example-pager-custom-controls.html similarity index 100% rename from static/js/tablesort/beta-testing/example-pager-custom-controls.html rename to api/static/js/tablesort/beta-testing/example-pager-custom-controls.html diff --git a/static/js/tablesort/beta-testing/example-widget-column-reorder.html b/api/static/js/tablesort/beta-testing/example-widget-column-reorder.html similarity index 100% rename from static/js/tablesort/beta-testing/example-widget-column-reorder.html rename to api/static/js/tablesort/beta-testing/example-widget-column-reorder.html diff --git a/static/js/tablesort/beta-testing/pager-custom-controls.js b/api/static/js/tablesort/beta-testing/pager-custom-controls.js similarity index 100% rename from static/js/tablesort/beta-testing/pager-custom-controls.js rename to api/static/js/tablesort/beta-testing/pager-custom-controls.js diff --git a/static/js/tablesort/beta-testing/widget-reorder.js b/api/static/js/tablesort/beta-testing/widget-reorder.js similarity index 100% rename from static/js/tablesort/beta-testing/widget-reorder.js rename to api/static/js/tablesort/beta-testing/widget-reorder.js diff --git a/static/js/tablesort/bower.json b/api/static/js/tablesort/bower.json similarity index 100% rename from static/js/tablesort/bower.json rename to api/static/js/tablesort/bower.json diff --git a/static/js/tablesort/changelog.txt b/api/static/js/tablesort/changelog.txt similarity index 100% rename from static/js/tablesort/changelog.txt rename to api/static/js/tablesort/changelog.txt diff --git a/static/js/tablesort/css/bootstrap.less b/api/static/js/tablesort/css/bootstrap.less similarity index 100% rename from static/js/tablesort/css/bootstrap.less rename to api/static/js/tablesort/css/bootstrap.less diff --git a/static/js/tablesort/css/filter.formatter.css b/api/static/js/tablesort/css/filter.formatter.css similarity index 100% rename from static/js/tablesort/css/filter.formatter.css rename to api/static/js/tablesort/css/filter.formatter.css diff --git a/static/js/tablesort/css/images/black-asc.gif b/api/static/js/tablesort/css/images/black-asc.gif similarity index 100% rename from static/js/tablesort/css/images/black-asc.gif rename to api/static/js/tablesort/css/images/black-asc.gif diff --git a/static/js/tablesort/css/images/black-desc.gif b/api/static/js/tablesort/css/images/black-desc.gif similarity index 100% rename from static/js/tablesort/css/images/black-desc.gif rename to api/static/js/tablesort/css/images/black-desc.gif diff --git a/static/js/tablesort/css/images/black-unsorted.gif b/api/static/js/tablesort/css/images/black-unsorted.gif similarity index 100% rename from static/js/tablesort/css/images/black-unsorted.gif rename to api/static/js/tablesort/css/images/black-unsorted.gif diff --git a/static/js/tablesort/css/images/bootstrap-black-unsorted.png b/api/static/js/tablesort/css/images/bootstrap-black-unsorted.png similarity index 100% rename from static/js/tablesort/css/images/bootstrap-black-unsorted.png rename to api/static/js/tablesort/css/images/bootstrap-black-unsorted.png diff --git a/static/js/tablesort/css/images/bootstrap-white-unsorted.png b/api/static/js/tablesort/css/images/bootstrap-white-unsorted.png similarity index 100% rename from static/js/tablesort/css/images/bootstrap-white-unsorted.png rename to api/static/js/tablesort/css/images/bootstrap-white-unsorted.png diff --git a/static/js/tablesort/css/images/dropbox-asc-hovered.png b/api/static/js/tablesort/css/images/dropbox-asc-hovered.png similarity index 100% rename from static/js/tablesort/css/images/dropbox-asc-hovered.png rename to api/static/js/tablesort/css/images/dropbox-asc-hovered.png diff --git a/static/js/tablesort/css/images/dropbox-asc.png b/api/static/js/tablesort/css/images/dropbox-asc.png similarity index 100% rename from static/js/tablesort/css/images/dropbox-asc.png rename to api/static/js/tablesort/css/images/dropbox-asc.png diff --git a/static/js/tablesort/css/images/dropbox-desc-hovered.png b/api/static/js/tablesort/css/images/dropbox-desc-hovered.png similarity index 100% rename from static/js/tablesort/css/images/dropbox-desc-hovered.png rename to api/static/js/tablesort/css/images/dropbox-desc-hovered.png diff --git a/static/js/tablesort/css/images/dropbox-desc.png b/api/static/js/tablesort/css/images/dropbox-desc.png similarity index 100% rename from static/js/tablesort/css/images/dropbox-desc.png rename to api/static/js/tablesort/css/images/dropbox-desc.png diff --git a/static/js/tablesort/css/images/green-asc.gif b/api/static/js/tablesort/css/images/green-asc.gif similarity index 100% rename from static/js/tablesort/css/images/green-asc.gif rename to api/static/js/tablesort/css/images/green-asc.gif diff --git a/static/js/tablesort/css/images/green-desc.gif b/api/static/js/tablesort/css/images/green-desc.gif similarity index 100% rename from static/js/tablesort/css/images/green-desc.gif rename to api/static/js/tablesort/css/images/green-desc.gif diff --git a/static/js/tablesort/css/images/green-header.gif b/api/static/js/tablesort/css/images/green-header.gif similarity index 100% rename from static/js/tablesort/css/images/green-header.gif rename to api/static/js/tablesort/css/images/green-header.gif diff --git a/static/js/tablesort/css/images/green-unsorted.gif b/api/static/js/tablesort/css/images/green-unsorted.gif similarity index 100% rename from static/js/tablesort/css/images/green-unsorted.gif rename to api/static/js/tablesort/css/images/green-unsorted.gif diff --git a/static/js/tablesort/css/images/ice-asc.gif b/api/static/js/tablesort/css/images/ice-asc.gif similarity index 100% rename from static/js/tablesort/css/images/ice-asc.gif rename to api/static/js/tablesort/css/images/ice-asc.gif diff --git a/static/js/tablesort/css/images/ice-desc.gif b/api/static/js/tablesort/css/images/ice-desc.gif similarity index 100% rename from static/js/tablesort/css/images/ice-desc.gif rename to api/static/js/tablesort/css/images/ice-desc.gif diff --git a/static/js/tablesort/css/images/ice-unsorted.gif b/api/static/js/tablesort/css/images/ice-unsorted.gif similarity index 100% rename from static/js/tablesort/css/images/ice-unsorted.gif rename to api/static/js/tablesort/css/images/ice-unsorted.gif diff --git a/static/js/tablesort/css/images/metro-black-asc.png b/api/static/js/tablesort/css/images/metro-black-asc.png similarity index 100% rename from static/js/tablesort/css/images/metro-black-asc.png rename to api/static/js/tablesort/css/images/metro-black-asc.png diff --git a/static/js/tablesort/css/images/metro-black-desc.png b/api/static/js/tablesort/css/images/metro-black-desc.png similarity index 100% rename from static/js/tablesort/css/images/metro-black-desc.png rename to api/static/js/tablesort/css/images/metro-black-desc.png diff --git a/static/js/tablesort/css/images/metro-loading.gif b/api/static/js/tablesort/css/images/metro-loading.gif similarity index 100% rename from static/js/tablesort/css/images/metro-loading.gif rename to api/static/js/tablesort/css/images/metro-loading.gif diff --git a/static/js/tablesort/css/images/metro-unsorted.png b/api/static/js/tablesort/css/images/metro-unsorted.png similarity index 100% rename from static/js/tablesort/css/images/metro-unsorted.png rename to api/static/js/tablesort/css/images/metro-unsorted.png diff --git a/static/js/tablesort/css/images/metro-white-asc.png b/api/static/js/tablesort/css/images/metro-white-asc.png similarity index 100% rename from static/js/tablesort/css/images/metro-white-asc.png rename to api/static/js/tablesort/css/images/metro-white-asc.png diff --git a/static/js/tablesort/css/images/metro-white-desc.png b/api/static/js/tablesort/css/images/metro-white-desc.png similarity index 100% rename from static/js/tablesort/css/images/metro-white-desc.png rename to api/static/js/tablesort/css/images/metro-white-desc.png diff --git a/static/js/tablesort/css/images/white-asc.gif b/api/static/js/tablesort/css/images/white-asc.gif similarity index 100% rename from static/js/tablesort/css/images/white-asc.gif rename to api/static/js/tablesort/css/images/white-asc.gif diff --git a/static/js/tablesort/css/images/white-desc.gif b/api/static/js/tablesort/css/images/white-desc.gif similarity index 100% rename from static/js/tablesort/css/images/white-desc.gif rename to api/static/js/tablesort/css/images/white-desc.gif diff --git a/static/js/tablesort/css/images/white-unsorted.gif b/api/static/js/tablesort/css/images/white-unsorted.gif similarity index 100% rename from static/js/tablesort/css/images/white-unsorted.gif rename to api/static/js/tablesort/css/images/white-unsorted.gif diff --git a/static/js/tablesort/css/metro.less b/api/static/js/tablesort/css/metro.less similarity index 100% rename from static/js/tablesort/css/metro.less rename to api/static/js/tablesort/css/metro.less diff --git a/static/js/tablesort/css/psd/green-asc.psd b/api/static/js/tablesort/css/psd/green-asc.psd similarity index 100% rename from static/js/tablesort/css/psd/green-asc.psd rename to api/static/js/tablesort/css/psd/green-asc.psd diff --git a/static/js/tablesort/css/psd/green-desc.psd b/api/static/js/tablesort/css/psd/green-desc.psd similarity index 100% rename from static/js/tablesort/css/psd/green-desc.psd rename to api/static/js/tablesort/css/psd/green-desc.psd diff --git a/static/js/tablesort/css/psd/green-unsorted.psd b/api/static/js/tablesort/css/psd/green-unsorted.psd similarity index 100% rename from static/js/tablesort/css/psd/green-unsorted.psd rename to api/static/js/tablesort/css/psd/green-unsorted.psd diff --git a/static/js/tablesort/css/psd/metro-style.psd b/api/static/js/tablesort/css/psd/metro-style.psd similarity index 100% rename from static/js/tablesort/css/psd/metro-style.psd rename to api/static/js/tablesort/css/psd/metro-style.psd diff --git a/static/js/tablesort/css/theme.black-ice.css b/api/static/js/tablesort/css/theme.black-ice.css similarity index 100% rename from static/js/tablesort/css/theme.black-ice.css rename to api/static/js/tablesort/css/theme.black-ice.css diff --git a/static/js/tablesort/css/theme.blue.css b/api/static/js/tablesort/css/theme.blue.css similarity index 100% rename from static/js/tablesort/css/theme.blue.css rename to api/static/js/tablesort/css/theme.blue.css diff --git a/static/js/tablesort/css/theme.bootstrap.css b/api/static/js/tablesort/css/theme.bootstrap.css similarity index 100% rename from static/js/tablesort/css/theme.bootstrap.css rename to api/static/js/tablesort/css/theme.bootstrap.css diff --git a/static/js/tablesort/css/theme.bootstrap_2.css b/api/static/js/tablesort/css/theme.bootstrap_2.css similarity index 100% rename from static/js/tablesort/css/theme.bootstrap_2.css rename to api/static/js/tablesort/css/theme.bootstrap_2.css diff --git a/static/js/tablesort/css/theme.dark.css b/api/static/js/tablesort/css/theme.dark.css similarity index 100% rename from static/js/tablesort/css/theme.dark.css rename to api/static/js/tablesort/css/theme.dark.css diff --git a/static/js/tablesort/css/theme.default.css b/api/static/js/tablesort/css/theme.default.css similarity index 100% rename from static/js/tablesort/css/theme.default.css rename to api/static/js/tablesort/css/theme.default.css diff --git a/static/js/tablesort/css/theme.dropbox.css b/api/static/js/tablesort/css/theme.dropbox.css similarity index 100% rename from static/js/tablesort/css/theme.dropbox.css rename to api/static/js/tablesort/css/theme.dropbox.css diff --git a/static/js/tablesort/css/theme.green.css b/api/static/js/tablesort/css/theme.green.css similarity index 100% rename from static/js/tablesort/css/theme.green.css rename to api/static/js/tablesort/css/theme.green.css diff --git a/static/js/tablesort/css/theme.grey.css b/api/static/js/tablesort/css/theme.grey.css similarity index 100% rename from static/js/tablesort/css/theme.grey.css rename to api/static/js/tablesort/css/theme.grey.css diff --git a/static/js/tablesort/css/theme.ice.css b/api/static/js/tablesort/css/theme.ice.css similarity index 100% rename from static/js/tablesort/css/theme.ice.css rename to api/static/js/tablesort/css/theme.ice.css diff --git a/static/js/tablesort/css/theme.jui.css b/api/static/js/tablesort/css/theme.jui.css similarity index 100% rename from static/js/tablesort/css/theme.jui.css rename to api/static/js/tablesort/css/theme.jui.css diff --git a/static/js/tablesort/css/theme.less b/api/static/js/tablesort/css/theme.less similarity index 100% rename from static/js/tablesort/css/theme.less rename to api/static/js/tablesort/css/theme.less diff --git a/static/js/tablesort/css/theme.metro-dark.css b/api/static/js/tablesort/css/theme.metro-dark.css similarity index 100% rename from static/js/tablesort/css/theme.metro-dark.css rename to api/static/js/tablesort/css/theme.metro-dark.css diff --git a/static/js/tablesort/docs/assets/City0.json b/api/static/js/tablesort/docs/assets/City0.json similarity index 100% rename from static/js/tablesort/docs/assets/City0.json rename to api/static/js/tablesort/docs/assets/City0.json diff --git a/static/js/tablesort/docs/assets/City1.json b/api/static/js/tablesort/docs/assets/City1.json similarity index 100% rename from static/js/tablesort/docs/assets/City1.json rename to api/static/js/tablesort/docs/assets/City1.json diff --git a/static/js/tablesort/docs/assets/City2.json b/api/static/js/tablesort/docs/assets/City2.json similarity index 100% rename from static/js/tablesort/docs/assets/City2.json rename to api/static/js/tablesort/docs/assets/City2.json diff --git a/static/js/tablesort/docs/assets/City3.json b/api/static/js/tablesort/docs/assets/City3.json similarity index 100% rename from static/js/tablesort/docs/assets/City3.json rename to api/static/js/tablesort/docs/assets/City3.json diff --git a/static/js/tablesort/docs/assets/ajax-content.html b/api/static/js/tablesort/docs/assets/ajax-content.html similarity index 100% rename from static/js/tablesort/docs/assets/ajax-content.html rename to api/static/js/tablesort/docs/assets/ajax-content.html diff --git a/static/js/tablesort/docs/assets/build.json b/api/static/js/tablesort/docs/assets/build.json similarity index 100% rename from static/js/tablesort/docs/assets/build.json rename to api/static/js/tablesort/docs/assets/build.json diff --git a/static/js/tablesort/docs/assets/build.txt b/api/static/js/tablesort/docs/assets/build.txt similarity index 100% rename from static/js/tablesort/docs/assets/build.txt rename to api/static/js/tablesort/docs/assets/build.txt diff --git a/static/js/tablesort/docs/assets/theme_switcher.json b/api/static/js/tablesort/docs/assets/theme_switcher.json similarity index 100% rename from static/js/tablesort/docs/assets/theme_switcher.json rename to api/static/js/tablesort/docs/assets/theme_switcher.json diff --git a/static/js/tablesort/docs/css/bootstrap.min.css b/api/static/js/tablesort/docs/css/bootstrap.min.css similarity index 100% rename from static/js/tablesort/docs/css/bootstrap.min.css rename to api/static/js/tablesort/docs/css/bootstrap.min.css diff --git a/static/js/tablesort/docs/css/images/animated-overlay.gif b/api/static/js/tablesort/docs/css/images/animated-overlay.gif similarity index 100% rename from static/js/tablesort/docs/css/images/animated-overlay.gif rename to api/static/js/tablesort/docs/css/images/animated-overlay.gif diff --git a/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png rename to api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_20_666666_40x40.png b/api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_20_666666_40x40.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_20_666666_40x40.png rename to api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_20_666666_40x40.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png b/api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png rename to api/static/js/tablesort/docs/css/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_flat_10_000000_40x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_flat_10_000000_40x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_flat_10_000000_40x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_flat_10_000000_40x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_flat_15_cd0a0a_40x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_flat_15_cd0a0a_40x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_flat_15_cd0a0a_40x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_flat_15_cd0a0a_40x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_100_e4f1fb_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_100_e4f1fb_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_100_e4f1fb_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_100_e4f1fb_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_100_f6f6f6_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_100_f6f6f6_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_100_f6f6f6_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_100_f6f6f6_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_100_fdf5ce_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_100_fdf5ce_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_100_fdf5ce_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_100_fdf5ce_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_50_3baae3_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_50_3baae3_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_50_3baae3_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_50_3baae3_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_65_ffffff_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_65_ffffff_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_65_ffffff_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_65_ffffff_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_glass_80_d7ebf9_1x400.png b/api/static/js/tablesort/docs/css/images/ui-bg_glass_80_d7ebf9_1x400.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_glass_80_d7ebf9_1x400.png rename to api/static/js/tablesort/docs/css/images/ui-bg_glass_80_d7ebf9_1x400.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_70_000000_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_70_000000_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-hard_70_000000_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-hard_70_000000_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_deedf7_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_deedf7_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_deedf7_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_deedf7_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_25_ffef8f_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_25_ffef8f_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-soft_25_ffef8f_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_25_ffef8f_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png rename to api/static/js/tablesort/docs/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_222222_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_222222_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_222222_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_222222_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_228ef1_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_228ef1_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_228ef1_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_228ef1_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_2694e8_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_2694e8_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_2694e8_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_2694e8_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_2e83ff_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_2e83ff_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_2e83ff_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_2e83ff_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_3d80b3_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_3d80b3_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_3d80b3_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_3d80b3_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_72a7cf_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_72a7cf_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_72a7cf_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_72a7cf_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_ef8c08_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_ef8c08_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_ef8c08_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_ef8c08_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_ffd27a_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_ffd27a_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_ffd27a_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_ffd27a_256x240.png diff --git a/static/js/tablesort/docs/css/images/ui-icons_ffffff_256x240.png b/api/static/js/tablesort/docs/css/images/ui-icons_ffffff_256x240.png similarity index 100% rename from static/js/tablesort/docs/css/images/ui-icons_ffffff_256x240.png rename to api/static/js/tablesort/docs/css/images/ui-icons_ffffff_256x240.png diff --git a/static/js/tablesort/docs/css/jq.css b/api/static/js/tablesort/docs/css/jq.css similarity index 100% rename from static/js/tablesort/docs/css/jq.css rename to api/static/js/tablesort/docs/css/jq.css diff --git a/static/js/tablesort/docs/css/jquery-ui.min.css b/api/static/js/tablesort/docs/css/jquery-ui.min.css similarity index 100% rename from static/js/tablesort/docs/css/jquery-ui.min.css rename to api/static/js/tablesort/docs/css/jquery-ui.min.css diff --git a/static/js/tablesort/docs/css/menu.css b/api/static/js/tablesort/docs/css/menu.css similarity index 100% rename from static/js/tablesort/docs/css/menu.css rename to api/static/js/tablesort/docs/css/menu.css diff --git a/static/js/tablesort/docs/css/prettify.css b/api/static/js/tablesort/docs/css/prettify.css similarity index 100% rename from static/js/tablesort/docs/css/prettify.css rename to api/static/js/tablesort/docs/css/prettify.css diff --git a/static/js/tablesort/docs/css/select2-3.4.6.min.css b/api/static/js/tablesort/docs/css/select2-3.4.6.min.css similarity index 100% rename from static/js/tablesort/docs/css/select2-3.4.6.min.css rename to api/static/js/tablesort/docs/css/select2-3.4.6.min.css diff --git a/static/js/tablesort/docs/css/select2-spinner.gif b/api/static/js/tablesort/docs/css/select2-spinner.gif similarity index 100% rename from static/js/tablesort/docs/css/select2-spinner.gif rename to api/static/js/tablesort/docs/css/select2-spinner.gif diff --git a/static/js/tablesort/docs/css/select2.png b/api/static/js/tablesort/docs/css/select2.png similarity index 100% rename from static/js/tablesort/docs/css/select2.png rename to api/static/js/tablesort/docs/css/select2.png diff --git a/static/js/tablesort/docs/css/select2x2.png b/api/static/js/tablesort/docs/css/select2x2.png similarity index 100% rename from static/js/tablesort/docs/css/select2x2.png rename to api/static/js/tablesort/docs/css/select2x2.png diff --git a/static/js/tablesort/docs/css/tipsy.css b/api/static/js/tablesort/docs/css/tipsy.css similarity index 100% rename from static/js/tablesort/docs/css/tipsy.css rename to api/static/js/tablesort/docs/css/tipsy.css diff --git a/static/js/tablesort/docs/example-add-rows.html b/api/static/js/tablesort/docs/example-add-rows.html similarity index 100% rename from static/js/tablesort/docs/example-add-rows.html rename to api/static/js/tablesort/docs/example-add-rows.html diff --git a/static/js/tablesort/docs/example-ajax.html b/api/static/js/tablesort/docs/example-ajax.html similarity index 100% rename from static/js/tablesort/docs/example-ajax.html rename to api/static/js/tablesort/docs/example-ajax.html diff --git a/static/js/tablesort/docs/example-apply-widget.html b/api/static/js/tablesort/docs/example-apply-widget.html similarity index 100% rename from static/js/tablesort/docs/example-apply-widget.html rename to api/static/js/tablesort/docs/example-apply-widget.html diff --git a/static/js/tablesort/docs/example-child-rows-filtered.html b/api/static/js/tablesort/docs/example-child-rows-filtered.html similarity index 100% rename from static/js/tablesort/docs/example-child-rows-filtered.html rename to api/static/js/tablesort/docs/example-child-rows-filtered.html diff --git a/static/js/tablesort/docs/example-child-rows.html b/api/static/js/tablesort/docs/example-child-rows.html similarity index 100% rename from static/js/tablesort/docs/example-child-rows.html rename to api/static/js/tablesort/docs/example-child-rows.html diff --git a/static/js/tablesort/docs/example-empty-table.html b/api/static/js/tablesort/docs/example-empty-table.html similarity index 100% rename from static/js/tablesort/docs/example-empty-table.html rename to api/static/js/tablesort/docs/example-empty-table.html diff --git a/static/js/tablesort/docs/example-extending-defaults.html b/api/static/js/tablesort/docs/example-extending-defaults.html similarity index 100% rename from static/js/tablesort/docs/example-extending-defaults.html rename to api/static/js/tablesort/docs/example-extending-defaults.html diff --git a/static/js/tablesort/docs/example-extractors-parsers.html b/api/static/js/tablesort/docs/example-extractors-parsers.html similarity index 100% rename from static/js/tablesort/docs/example-extractors-parsers.html rename to api/static/js/tablesort/docs/example-extractors-parsers.html diff --git a/static/js/tablesort/docs/example-header-column-span.html b/api/static/js/tablesort/docs/example-header-column-span.html similarity index 100% rename from static/js/tablesort/docs/example-header-column-span.html rename to api/static/js/tablesort/docs/example-header-column-span.html diff --git a/static/js/tablesort/docs/example-locale-sort.html b/api/static/js/tablesort/docs/example-locale-sort.html similarity index 100% rename from static/js/tablesort/docs/example-locale-sort.html rename to api/static/js/tablesort/docs/example-locale-sort.html diff --git a/static/js/tablesort/docs/example-meta-headers.html b/api/static/js/tablesort/docs/example-meta-headers.html similarity index 100% rename from static/js/tablesort/docs/example-meta-headers.html rename to api/static/js/tablesort/docs/example-meta-headers.html diff --git a/static/js/tablesort/docs/example-meta-parsers.html b/api/static/js/tablesort/docs/example-meta-parsers.html similarity index 100% rename from static/js/tablesort/docs/example-meta-parsers.html rename to api/static/js/tablesort/docs/example-meta-parsers.html diff --git a/static/js/tablesort/docs/example-meta-sort-list.html b/api/static/js/tablesort/docs/example-meta-sort-list.html similarity index 100% rename from static/js/tablesort/docs/example-meta-sort-list.html rename to api/static/js/tablesort/docs/example-meta-sort-list.html diff --git a/static/js/tablesort/docs/example-method-sortreset.html b/api/static/js/tablesort/docs/example-method-sortreset.html similarity index 100% rename from static/js/tablesort/docs/example-method-sortreset.html rename to api/static/js/tablesort/docs/example-method-sortreset.html diff --git a/static/js/tablesort/docs/example-multiple-tbodies.html b/api/static/js/tablesort/docs/example-multiple-tbodies.html similarity index 100% rename from static/js/tablesort/docs/example-multiple-tbodies.html rename to api/static/js/tablesort/docs/example-multiple-tbodies.html diff --git a/static/js/tablesort/docs/example-option-custom-sort.html b/api/static/js/tablesort/docs/example-option-custom-sort.html similarity index 100% rename from static/js/tablesort/docs/example-option-custom-sort.html rename to api/static/js/tablesort/docs/example-option-custom-sort.html diff --git a/static/js/tablesort/docs/example-option-date-format.html b/api/static/js/tablesort/docs/example-option-date-format.html similarity index 100% rename from static/js/tablesort/docs/example-option-date-format.html rename to api/static/js/tablesort/docs/example-option-date-format.html diff --git a/static/js/tablesort/docs/example-option-debug.html b/api/static/js/tablesort/docs/example-option-debug.html similarity index 100% rename from static/js/tablesort/docs/example-option-debug.html rename to api/static/js/tablesort/docs/example-option-debug.html diff --git a/static/js/tablesort/docs/example-option-delay-init.html b/api/static/js/tablesort/docs/example-option-delay-init.html similarity index 100% rename from static/js/tablesort/docs/example-option-delay-init.html rename to api/static/js/tablesort/docs/example-option-delay-init.html diff --git a/static/js/tablesort/docs/example-option-digits.html b/api/static/js/tablesort/docs/example-option-digits.html similarity index 100% rename from static/js/tablesort/docs/example-option-digits.html rename to api/static/js/tablesort/docs/example-option-digits.html diff --git a/static/js/tablesort/docs/example-option-render-header.html b/api/static/js/tablesort/docs/example-option-render-header.html similarity index 100% rename from static/js/tablesort/docs/example-option-render-header.html rename to api/static/js/tablesort/docs/example-option-render-header.html diff --git a/static/js/tablesort/docs/example-option-render-template.html b/api/static/js/tablesort/docs/example-option-render-template.html similarity index 100% rename from static/js/tablesort/docs/example-option-render-template.html rename to api/static/js/tablesort/docs/example-option-render-template.html diff --git a/static/js/tablesort/docs/example-option-selectorsort.html b/api/static/js/tablesort/docs/example-option-selectorsort.html similarity index 100% rename from static/js/tablesort/docs/example-option-selectorsort.html rename to api/static/js/tablesort/docs/example-option-selectorsort.html diff --git a/static/js/tablesort/docs/example-option-show-processing.html b/api/static/js/tablesort/docs/example-option-show-processing.html similarity index 100% rename from static/js/tablesort/docs/example-option-show-processing.html rename to api/static/js/tablesort/docs/example-option-show-processing.html diff --git a/static/js/tablesort/docs/example-option-sort-append.html b/api/static/js/tablesort/docs/example-option-sort-append.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-append.html rename to api/static/js/tablesort/docs/example-option-sort-append.html diff --git a/static/js/tablesort/docs/example-option-sort-empty.html b/api/static/js/tablesort/docs/example-option-sort-empty.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-empty.html rename to api/static/js/tablesort/docs/example-option-sort-empty.html diff --git a/static/js/tablesort/docs/example-option-sort-force.html b/api/static/js/tablesort/docs/example-option-sort-force.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-force.html rename to api/static/js/tablesort/docs/example-option-sort-force.html diff --git a/static/js/tablesort/docs/example-option-sort-key.html b/api/static/js/tablesort/docs/example-option-sort-key.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-key.html rename to api/static/js/tablesort/docs/example-option-sort-key.html diff --git a/static/js/tablesort/docs/example-option-sort-list.html b/api/static/js/tablesort/docs/example-option-sort-list.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-list.html rename to api/static/js/tablesort/docs/example-option-sort-list.html diff --git a/static/js/tablesort/docs/example-option-sort-order.html b/api/static/js/tablesort/docs/example-option-sort-order.html similarity index 100% rename from static/js/tablesort/docs/example-option-sort-order.html rename to api/static/js/tablesort/docs/example-option-sort-order.html diff --git a/static/js/tablesort/docs/example-option-sortreset-sortrestart.html b/api/static/js/tablesort/docs/example-option-sortreset-sortrestart.html similarity index 100% rename from static/js/tablesort/docs/example-option-sortreset-sortrestart.html rename to api/static/js/tablesort/docs/example-option-sortreset-sortrestart.html diff --git a/static/js/tablesort/docs/example-option-text-extraction.html b/api/static/js/tablesort/docs/example-option-text-extraction.html similarity index 100% rename from static/js/tablesort/docs/example-option-text-extraction.html rename to api/static/js/tablesort/docs/example-option-text-extraction.html diff --git a/static/js/tablesort/docs/example-option-textsorter-semver.html b/api/static/js/tablesort/docs/example-option-textsorter-semver.html similarity index 100% rename from static/js/tablesort/docs/example-option-textsorter-semver.html rename to api/static/js/tablesort/docs/example-option-textsorter-semver.html diff --git a/static/js/tablesort/docs/example-option-theme-metro-style.html b/api/static/js/tablesort/docs/example-option-theme-metro-style.html similarity index 100% rename from static/js/tablesort/docs/example-option-theme-metro-style.html rename to api/static/js/tablesort/docs/example-option-theme-metro-style.html diff --git a/static/js/tablesort/docs/example-options-headers-digits-strings.html b/api/static/js/tablesort/docs/example-options-headers-digits-strings.html similarity index 100% rename from static/js/tablesort/docs/example-options-headers-digits-strings.html rename to api/static/js/tablesort/docs/example-options-headers-digits-strings.html diff --git a/static/js/tablesort/docs/example-options-headers-locked.html b/api/static/js/tablesort/docs/example-options-headers-locked.html similarity index 100% rename from static/js/tablesort/docs/example-options-headers-locked.html rename to api/static/js/tablesort/docs/example-options-headers-locked.html diff --git a/static/js/tablesort/docs/example-options-headers-order.html b/api/static/js/tablesort/docs/example-options-headers-order.html similarity index 100% rename from static/js/tablesort/docs/example-options-headers-order.html rename to api/static/js/tablesort/docs/example-options-headers-order.html diff --git a/static/js/tablesort/docs/example-options-headers-parser.html b/api/static/js/tablesort/docs/example-options-headers-parser.html similarity index 100% rename from static/js/tablesort/docs/example-options-headers-parser.html rename to api/static/js/tablesort/docs/example-options-headers-parser.html diff --git a/static/js/tablesort/docs/example-options-headers.html b/api/static/js/tablesort/docs/example-options-headers.html similarity index 100% rename from static/js/tablesort/docs/example-options-headers.html rename to api/static/js/tablesort/docs/example-options-headers.html diff --git a/static/js/tablesort/docs/example-pager-ajax.html b/api/static/js/tablesort/docs/example-pager-ajax.html similarity index 100% rename from static/js/tablesort/docs/example-pager-ajax.html rename to api/static/js/tablesort/docs/example-pager-ajax.html diff --git a/static/js/tablesort/docs/example-pager-filtered.html b/api/static/js/tablesort/docs/example-pager-filtered.html similarity index 100% rename from static/js/tablesort/docs/example-pager-filtered.html rename to api/static/js/tablesort/docs/example-pager-filtered.html diff --git a/static/js/tablesort/docs/example-pager.html b/api/static/js/tablesort/docs/example-pager.html similarity index 100% rename from static/js/tablesort/docs/example-pager.html rename to api/static/js/tablesort/docs/example-pager.html diff --git a/static/js/tablesort/docs/example-parsers-advanced.html b/api/static/js/tablesort/docs/example-parsers-advanced.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-advanced.html rename to api/static/js/tablesort/docs/example-parsers-advanced.html diff --git a/static/js/tablesort/docs/example-parsers-class-name.html b/api/static/js/tablesort/docs/example-parsers-class-name.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-class-name.html rename to api/static/js/tablesort/docs/example-parsers-class-name.html diff --git a/static/js/tablesort/docs/example-parsers-dates.html b/api/static/js/tablesort/docs/example-parsers-dates.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-dates.html rename to api/static/js/tablesort/docs/example-parsers-dates.html diff --git a/static/js/tablesort/docs/example-parsers-duration.html b/api/static/js/tablesort/docs/example-parsers-duration.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-duration.html rename to api/static/js/tablesort/docs/example-parsers-duration.html diff --git a/static/js/tablesort/docs/example-parsers-feet-inch-fraction.html b/api/static/js/tablesort/docs/example-parsers-feet-inch-fraction.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-feet-inch-fraction.html rename to api/static/js/tablesort/docs/example-parsers-feet-inch-fraction.html diff --git a/static/js/tablesort/docs/example-parsers-file-type.html b/api/static/js/tablesort/docs/example-parsers-file-type.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-file-type.html rename to api/static/js/tablesort/docs/example-parsers-file-type.html diff --git a/static/js/tablesort/docs/example-parsers-ignore-articles.html b/api/static/js/tablesort/docs/example-parsers-ignore-articles.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-ignore-articles.html rename to api/static/js/tablesort/docs/example-parsers-ignore-articles.html diff --git a/static/js/tablesort/docs/example-parsers-ip-address.html b/api/static/js/tablesort/docs/example-parsers-ip-address.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-ip-address.html rename to api/static/js/tablesort/docs/example-parsers-ip-address.html diff --git a/static/js/tablesort/docs/example-parsers-jquery-data.html b/api/static/js/tablesort/docs/example-parsers-jquery-data.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-jquery-data.html rename to api/static/js/tablesort/docs/example-parsers-jquery-data.html diff --git a/static/js/tablesort/docs/example-parsers-metric.html b/api/static/js/tablesort/docs/example-parsers-metric.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-metric.html rename to api/static/js/tablesort/docs/example-parsers-metric.html diff --git a/static/js/tablesort/docs/example-parsers-roman.html b/api/static/js/tablesort/docs/example-parsers-roman.html similarity index 100% rename from static/js/tablesort/docs/example-parsers-roman.html rename to api/static/js/tablesort/docs/example-parsers-roman.html diff --git a/static/js/tablesort/docs/example-parsers.html b/api/static/js/tablesort/docs/example-parsers.html similarity index 100% rename from static/js/tablesort/docs/example-parsers.html rename to api/static/js/tablesort/docs/example-parsers.html diff --git a/static/js/tablesort/docs/example-trigger-sort.html b/api/static/js/tablesort/docs/example-trigger-sort.html similarity index 100% rename from static/js/tablesort/docs/example-trigger-sort.html rename to api/static/js/tablesort/docs/example-trigger-sort.html diff --git a/static/js/tablesort/docs/example-triggers.html b/api/static/js/tablesort/docs/example-triggers.html similarity index 100% rename from static/js/tablesort/docs/example-triggers.html rename to api/static/js/tablesort/docs/example-triggers.html diff --git a/static/js/tablesort/docs/example-update-all.html b/api/static/js/tablesort/docs/example-update-all.html similarity index 100% rename from static/js/tablesort/docs/example-update-all.html rename to api/static/js/tablesort/docs/example-update-all.html diff --git a/static/js/tablesort/docs/example-update-cell.html b/api/static/js/tablesort/docs/example-update-cell.html similarity index 100% rename from static/js/tablesort/docs/example-update-cell.html rename to api/static/js/tablesort/docs/example-update-cell.html diff --git a/static/js/tablesort/docs/example-widget-align-character.html b/api/static/js/tablesort/docs/example-widget-align-character.html similarity index 100% rename from static/js/tablesort/docs/example-widget-align-character.html rename to api/static/js/tablesort/docs/example-widget-align-character.html diff --git a/static/js/tablesort/docs/example-widget-bootstrap-theme.html b/api/static/js/tablesort/docs/example-widget-bootstrap-theme.html similarity index 100% rename from static/js/tablesort/docs/example-widget-bootstrap-theme.html rename to api/static/js/tablesort/docs/example-widget-bootstrap-theme.html diff --git a/static/js/tablesort/docs/example-widget-build-table.html b/api/static/js/tablesort/docs/example-widget-build-table.html similarity index 100% rename from static/js/tablesort/docs/example-widget-build-table.html rename to api/static/js/tablesort/docs/example-widget-build-table.html diff --git a/static/js/tablesort/docs/example-widget-column-selector.html b/api/static/js/tablesort/docs/example-widget-column-selector.html similarity index 100% rename from static/js/tablesort/docs/example-widget-column-selector.html rename to api/static/js/tablesort/docs/example-widget-column-selector.html diff --git a/static/js/tablesort/docs/example-widget-columns.html b/api/static/js/tablesort/docs/example-widget-columns.html similarity index 100% rename from static/js/tablesort/docs/example-widget-columns.html rename to api/static/js/tablesort/docs/example-widget-columns.html diff --git a/static/js/tablesort/docs/example-widget-css-sticky-header.html b/api/static/js/tablesort/docs/example-widget-css-sticky-header.html similarity index 100% rename from static/js/tablesort/docs/example-widget-css-sticky-header.html rename to api/static/js/tablesort/docs/example-widget-css-sticky-header.html diff --git a/static/js/tablesort/docs/example-widget-editable.html b/api/static/js/tablesort/docs/example-widget-editable.html similarity index 100% rename from static/js/tablesort/docs/example-widget-editable.html rename to api/static/js/tablesort/docs/example-widget-editable.html diff --git a/static/js/tablesort/docs/example-widget-filter-any-match.html b/api/static/js/tablesort/docs/example-widget-filter-any-match.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-any-match.html rename to api/static/js/tablesort/docs/example-widget-filter-any-match.html diff --git a/static/js/tablesort/docs/example-widget-filter-custom-search.html b/api/static/js/tablesort/docs/example-widget-filter-custom-search.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-custom-search.html rename to api/static/js/tablesort/docs/example-widget-filter-custom-search.html diff --git a/static/js/tablesort/docs/example-widget-filter-custom.html b/api/static/js/tablesort/docs/example-widget-filter-custom.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-custom.html rename to api/static/js/tablesort/docs/example-widget-filter-custom.html diff --git a/static/js/tablesort/docs/example-widget-filter-external-inputs.html b/api/static/js/tablesort/docs/example-widget-filter-external-inputs.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-external-inputs.html rename to api/static/js/tablesort/docs/example-widget-filter-external-inputs.html diff --git a/static/js/tablesort/docs/example-widget-filter-formatter-1.html b/api/static/js/tablesort/docs/example-widget-filter-formatter-1.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-formatter-1.html rename to api/static/js/tablesort/docs/example-widget-filter-formatter-1.html diff --git a/static/js/tablesort/docs/example-widget-filter-formatter-2.html b/api/static/js/tablesort/docs/example-widget-filter-formatter-2.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-formatter-2.html rename to api/static/js/tablesort/docs/example-widget-filter-formatter-2.html diff --git a/static/js/tablesort/docs/example-widget-filter-formatter-select2.html b/api/static/js/tablesort/docs/example-widget-filter-formatter-select2.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter-formatter-select2.html rename to api/static/js/tablesort/docs/example-widget-filter-formatter-select2.html diff --git a/static/js/tablesort/docs/example-widget-filter.html b/api/static/js/tablesort/docs/example-widget-filter.html similarity index 100% rename from static/js/tablesort/docs/example-widget-filter.html rename to api/static/js/tablesort/docs/example-widget-filter.html diff --git a/static/js/tablesort/docs/example-widget-grouping-filter-childrows.html b/api/static/js/tablesort/docs/example-widget-grouping-filter-childrows.html similarity index 100% rename from static/js/tablesort/docs/example-widget-grouping-filter-childrows.html rename to api/static/js/tablesort/docs/example-widget-grouping-filter-childrows.html diff --git a/static/js/tablesort/docs/example-widget-grouping.html b/api/static/js/tablesort/docs/example-widget-grouping.html similarity index 100% rename from static/js/tablesort/docs/example-widget-grouping.html rename to api/static/js/tablesort/docs/example-widget-grouping.html diff --git a/static/js/tablesort/docs/example-widget-header-titles.html b/api/static/js/tablesort/docs/example-widget-header-titles.html similarity index 100% rename from static/js/tablesort/docs/example-widget-header-titles.html rename to api/static/js/tablesort/docs/example-widget-header-titles.html diff --git a/static/js/tablesort/docs/example-widget-math.html b/api/static/js/tablesort/docs/example-widget-math.html similarity index 100% rename from static/js/tablesort/docs/example-widget-math.html rename to api/static/js/tablesort/docs/example-widget-math.html diff --git a/static/js/tablesort/docs/example-widget-output.html b/api/static/js/tablesort/docs/example-widget-output.html similarity index 100% rename from static/js/tablesort/docs/example-widget-output.html rename to api/static/js/tablesort/docs/example-widget-output.html diff --git a/static/js/tablesort/docs/example-widget-pager-ajax.html b/api/static/js/tablesort/docs/example-widget-pager-ajax.html similarity index 100% rename from static/js/tablesort/docs/example-widget-pager-ajax.html rename to api/static/js/tablesort/docs/example-widget-pager-ajax.html diff --git a/static/js/tablesort/docs/example-widget-pager.html b/api/static/js/tablesort/docs/example-widget-pager.html similarity index 100% rename from static/js/tablesort/docs/example-widget-pager.html rename to api/static/js/tablesort/docs/example-widget-pager.html diff --git a/static/js/tablesort/docs/example-widget-print.html b/api/static/js/tablesort/docs/example-widget-print.html similarity index 100% rename from static/js/tablesort/docs/example-widget-print.html rename to api/static/js/tablesort/docs/example-widget-print.html diff --git a/static/js/tablesort/docs/example-widget-reflow.html b/api/static/js/tablesort/docs/example-widget-reflow.html similarity index 100% rename from static/js/tablesort/docs/example-widget-reflow.html rename to api/static/js/tablesort/docs/example-widget-reflow.html diff --git a/static/js/tablesort/docs/example-widget-reflow1.html b/api/static/js/tablesort/docs/example-widget-reflow1.html similarity index 100% rename from static/js/tablesort/docs/example-widget-reflow1.html rename to api/static/js/tablesort/docs/example-widget-reflow1.html diff --git a/static/js/tablesort/docs/example-widget-reflow2.html b/api/static/js/tablesort/docs/example-widget-reflow2.html similarity index 100% rename from static/js/tablesort/docs/example-widget-reflow2.html rename to api/static/js/tablesort/docs/example-widget-reflow2.html diff --git a/static/js/tablesort/docs/example-widget-reflow3.html b/api/static/js/tablesort/docs/example-widget-reflow3.html similarity index 100% rename from static/js/tablesort/docs/example-widget-reflow3.html rename to api/static/js/tablesort/docs/example-widget-reflow3.html diff --git a/static/js/tablesort/docs/example-widget-resizable.html b/api/static/js/tablesort/docs/example-widget-resizable.html similarity index 100% rename from static/js/tablesort/docs/example-widget-resizable.html rename to api/static/js/tablesort/docs/example-widget-resizable.html diff --git a/static/js/tablesort/docs/example-widget-savesort.html b/api/static/js/tablesort/docs/example-widget-savesort.html similarity index 100% rename from static/js/tablesort/docs/example-widget-savesort.html rename to api/static/js/tablesort/docs/example-widget-savesort.html diff --git a/static/js/tablesort/docs/example-widget-scroller.html b/api/static/js/tablesort/docs/example-widget-scroller.html similarity index 100% rename from static/js/tablesort/docs/example-widget-scroller.html rename to api/static/js/tablesort/docs/example-widget-scroller.html diff --git a/static/js/tablesort/docs/example-widget-static-row.html b/api/static/js/tablesort/docs/example-widget-static-row.html similarity index 100% rename from static/js/tablesort/docs/example-widget-static-row.html rename to api/static/js/tablesort/docs/example-widget-static-row.html diff --git a/static/js/tablesort/docs/example-widget-sticky-header.html b/api/static/js/tablesort/docs/example-widget-sticky-header.html similarity index 100% rename from static/js/tablesort/docs/example-widget-sticky-header.html rename to api/static/js/tablesort/docs/example-widget-sticky-header.html diff --git a/static/js/tablesort/docs/example-widget-ui-theme.html b/api/static/js/tablesort/docs/example-widget-ui-theme.html similarity index 100% rename from static/js/tablesort/docs/example-widget-ui-theme.html rename to api/static/js/tablesort/docs/example-widget-ui-theme.html diff --git a/static/js/tablesort/docs/example-widget-zebra.html b/api/static/js/tablesort/docs/example-widget-zebra.html similarity index 100% rename from static/js/tablesort/docs/example-widget-zebra.html rename to api/static/js/tablesort/docs/example-widget-zebra.html diff --git a/static/js/tablesort/docs/example-widgets.html b/api/static/js/tablesort/docs/example-widgets.html similarity index 100% rename from static/js/tablesort/docs/example-widgets.html rename to api/static/js/tablesort/docs/example-widgets.html diff --git a/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf b/api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf rename to api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.eot diff --git a/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.svg b/api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from static/js/tablesort/docs/fonts/glyphicons-halflings-regular.svg rename to api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.svg diff --git a/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff b/api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff rename to api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.ttf diff --git a/api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff b/api/static/js/tablesort/docs/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..e69de29 diff --git a/static/js/tablesort/docs/img/external.png b/api/static/js/tablesort/docs/img/external.png similarity index 100% rename from static/js/tablesort/docs/img/external.png rename to api/static/js/tablesort/docs/img/external.png diff --git a/static/js/tablesort/docs/img/link.png b/api/static/js/tablesort/docs/img/link.png similarity index 100% rename from static/js/tablesort/docs/img/link.png rename to api/static/js/tablesort/docs/img/link.png diff --git a/static/js/tablesort/docs/img/screens-blue.png b/api/static/js/tablesort/docs/img/screens-blue.png similarity index 100% rename from static/js/tablesort/docs/img/screens-blue.png rename to api/static/js/tablesort/docs/img/screens-blue.png diff --git a/static/js/tablesort/docs/img/screens.png b/api/static/js/tablesort/docs/img/screens.png similarity index 100% rename from static/js/tablesort/docs/img/screens.png rename to api/static/js/tablesort/docs/img/screens.png diff --git a/static/js/tablesort/docs/index.html b/api/static/js/tablesort/docs/index.html similarity index 100% rename from static/js/tablesort/docs/index.html rename to api/static/js/tablesort/docs/index.html diff --git a/static/js/tablesort/docs/js/bootstrap.min.js b/api/static/js/tablesort/docs/js/bootstrap.min.js similarity index 100% rename from static/js/tablesort/docs/js/bootstrap.min.js rename to api/static/js/tablesort/docs/js/bootstrap.min.js diff --git a/static/js/tablesort/docs/js/chili/jquery.chili-2.2.js b/api/static/js/tablesort/docs/js/chili/jquery.chili-2.2.js similarity index 100% rename from static/js/tablesort/docs/js/chili/jquery.chili-2.2.js rename to api/static/js/tablesort/docs/js/chili/jquery.chili-2.2.js diff --git a/static/js/tablesort/docs/js/chili/recipes.js b/api/static/js/tablesort/docs/js/chili/recipes.js similarity index 100% rename from static/js/tablesort/docs/js/chili/recipes.js rename to api/static/js/tablesort/docs/js/chili/recipes.js diff --git a/static/js/tablesort/docs/js/demo-build-table.js b/api/static/js/tablesort/docs/js/demo-build-table.js similarity index 100% rename from static/js/tablesort/docs/js/demo-build-table.js rename to api/static/js/tablesort/docs/js/demo-build-table.js diff --git a/static/js/tablesort/docs/js/docs.js b/api/static/js/tablesort/docs/js/docs.js similarity index 100% rename from static/js/tablesort/docs/js/docs.js rename to api/static/js/tablesort/docs/js/docs.js diff --git a/static/js/tablesort/docs/js/jquery-1.2.6.min.js b/api/static/js/tablesort/docs/js/jquery-1.2.6.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery-1.2.6.min.js rename to api/static/js/tablesort/docs/js/jquery-1.2.6.min.js diff --git a/static/js/tablesort/docs/js/jquery-1.4.4.min.js b/api/static/js/tablesort/docs/js/jquery-1.4.4.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery-1.4.4.min.js rename to api/static/js/tablesort/docs/js/jquery-1.4.4.min.js diff --git a/static/js/tablesort/docs/js/jquery-latest.min.js b/api/static/js/tablesort/docs/js/jquery-latest.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery-latest.min.js rename to api/static/js/tablesort/docs/js/jquery-latest.min.js diff --git a/static/js/tablesort/docs/js/jquery-ui-latest.min.js b/api/static/js/tablesort/docs/js/jquery-ui-latest.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery-ui-latest.min.js rename to api/static/js/tablesort/docs/js/jquery-ui-latest.min.js diff --git a/static/js/tablesort/docs/js/jquery.jui_theme_switch.min.js b/api/static/js/tablesort/docs/js/jquery.jui_theme_switch.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery.jui_theme_switch.min.js rename to api/static/js/tablesort/docs/js/jquery.jui_theme_switch.min.js diff --git a/static/js/tablesort/docs/js/jquery.tipsy.min.js b/api/static/js/tablesort/docs/js/jquery.tipsy.min.js similarity index 100% rename from static/js/tablesort/docs/js/jquery.tipsy.min.js rename to api/static/js/tablesort/docs/js/jquery.tipsy.min.js diff --git a/static/js/tablesort/docs/js/prettify.js b/api/static/js/tablesort/docs/js/prettify.js similarity index 100% rename from static/js/tablesort/docs/js/prettify.js rename to api/static/js/tablesort/docs/js/prettify.js diff --git a/static/js/tablesort/docs/js/search-ie.js b/api/static/js/tablesort/docs/js/search-ie.js similarity index 100% rename from static/js/tablesort/docs/js/search-ie.js rename to api/static/js/tablesort/docs/js/search-ie.js diff --git a/static/js/tablesort/docs/js/search.js b/api/static/js/tablesort/docs/js/search.js similarity index 100% rename from static/js/tablesort/docs/js/search.js rename to api/static/js/tablesort/docs/js/search.js diff --git a/static/js/tablesort/docs/js/select2-3.4.6.min.js b/api/static/js/tablesort/docs/js/select2-3.4.6.min.js similarity index 100% rename from static/js/tablesort/docs/js/select2-3.4.6.min.js rename to api/static/js/tablesort/docs/js/select2-3.4.6.min.js diff --git a/static/js/tablesort/docs/js/sugar.min.js b/api/static/js/tablesort/docs/js/sugar.min.js similarity index 100% rename from static/js/tablesort/docs/js/sugar.min.js rename to api/static/js/tablesort/docs/js/sugar.min.js diff --git a/static/js/tablesort/docs/themes.html b/api/static/js/tablesort/docs/themes.html similarity index 100% rename from static/js/tablesort/docs/themes.html rename to api/static/js/tablesort/docs/themes.html diff --git a/static/js/tablesort/index.html b/api/static/js/tablesort/index.html similarity index 100% rename from static/js/tablesort/index.html rename to api/static/js/tablesort/index.html diff --git a/static/js/tablesort/js/extras/jquery.quicksearch.js b/api/static/js/tablesort/js/extras/jquery.quicksearch.js similarity index 100% rename from static/js/tablesort/js/extras/jquery.quicksearch.js rename to api/static/js/tablesort/js/extras/jquery.quicksearch.js diff --git a/static/js/tablesort/js/extras/semver-mod.js b/api/static/js/tablesort/js/extras/semver-mod.js similarity index 100% rename from static/js/tablesort/js/extras/semver-mod.js rename to api/static/js/tablesort/js/extras/semver-mod.js diff --git a/static/js/tablesort/js/extras/semver.js b/api/static/js/tablesort/js/extras/semver.js similarity index 100% rename from static/js/tablesort/js/extras/semver.js rename to api/static/js/tablesort/js/extras/semver.js diff --git a/static/js/tablesort/js/jquery.metadata.js b/api/static/js/tablesort/js/jquery.metadata.js similarity index 100% rename from static/js/tablesort/js/jquery.metadata.js rename to api/static/js/tablesort/js/jquery.metadata.js diff --git a/static/js/tablesort/js/jquery.tablesorter.js b/api/static/js/tablesort/js/jquery.tablesorter.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.js rename to api/static/js/tablesort/js/jquery.tablesorter.js diff --git a/static/js/tablesort/js/jquery.tablesorter.min.js b/api/static/js/tablesort/js/jquery.tablesorter.min.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.min.js rename to api/static/js/tablesort/js/jquery.tablesorter.min.js diff --git a/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter-select2.js b/api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter-select2.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter-select2.js rename to api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter-select2.js diff --git a/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.js b/api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.js rename to api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.js diff --git a/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.min.js b/api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.min.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.min.js rename to api/static/js/tablesort/js/jquery.tablesorter.widgets-filter-formatter.min.js diff --git a/static/js/tablesort/js/jquery.tablesorter.widgets.js b/api/static/js/tablesort/js/jquery.tablesorter.widgets.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.widgets.js rename to api/static/js/tablesort/js/jquery.tablesorter.widgets.js diff --git a/static/js/tablesort/js/jquery.tablesorter.widgets.min.js b/api/static/js/tablesort/js/jquery.tablesorter.widgets.min.js similarity index 100% rename from static/js/tablesort/js/jquery.tablesorter.widgets.min.js rename to api/static/js/tablesort/js/jquery.tablesorter.widgets.min.js diff --git a/static/js/tablesort/js/parsers/parser-date-extract.js b/api/static/js/tablesort/js/parsers/parser-date-extract.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date-extract.js rename to api/static/js/tablesort/js/parsers/parser-date-extract.js diff --git a/static/js/tablesort/js/parsers/parser-date-iso8601.js b/api/static/js/tablesort/js/parsers/parser-date-iso8601.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date-iso8601.js rename to api/static/js/tablesort/js/parsers/parser-date-iso8601.js diff --git a/static/js/tablesort/js/parsers/parser-date-month.js b/api/static/js/tablesort/js/parsers/parser-date-month.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date-month.js rename to api/static/js/tablesort/js/parsers/parser-date-month.js diff --git a/static/js/tablesort/js/parsers/parser-date-two-digit-year.js b/api/static/js/tablesort/js/parsers/parser-date-two-digit-year.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date-two-digit-year.js rename to api/static/js/tablesort/js/parsers/parser-date-two-digit-year.js diff --git a/static/js/tablesort/js/parsers/parser-date-weekday.js b/api/static/js/tablesort/js/parsers/parser-date-weekday.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date-weekday.js rename to api/static/js/tablesort/js/parsers/parser-date-weekday.js diff --git a/static/js/tablesort/js/parsers/parser-date.js b/api/static/js/tablesort/js/parsers/parser-date.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-date.js rename to api/static/js/tablesort/js/parsers/parser-date.js diff --git a/static/js/tablesort/js/parsers/parser-duration.js b/api/static/js/tablesort/js/parsers/parser-duration.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-duration.js rename to api/static/js/tablesort/js/parsers/parser-duration.js diff --git a/static/js/tablesort/js/parsers/parser-feet-inch-fraction.js b/api/static/js/tablesort/js/parsers/parser-feet-inch-fraction.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-feet-inch-fraction.js rename to api/static/js/tablesort/js/parsers/parser-feet-inch-fraction.js diff --git a/static/js/tablesort/js/parsers/parser-file-type.js b/api/static/js/tablesort/js/parsers/parser-file-type.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-file-type.js rename to api/static/js/tablesort/js/parsers/parser-file-type.js diff --git a/static/js/tablesort/js/parsers/parser-ignore-articles.js b/api/static/js/tablesort/js/parsers/parser-ignore-articles.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-ignore-articles.js rename to api/static/js/tablesort/js/parsers/parser-ignore-articles.js diff --git a/static/js/tablesort/js/parsers/parser-image.js b/api/static/js/tablesort/js/parsers/parser-image.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-image.js rename to api/static/js/tablesort/js/parsers/parser-image.js diff --git a/static/js/tablesort/js/parsers/parser-input-select.js b/api/static/js/tablesort/js/parsers/parser-input-select.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-input-select.js rename to api/static/js/tablesort/js/parsers/parser-input-select.js diff --git a/static/js/tablesort/js/parsers/parser-ipv6.js b/api/static/js/tablesort/js/parsers/parser-ipv6.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-ipv6.js rename to api/static/js/tablesort/js/parsers/parser-ipv6.js diff --git a/static/js/tablesort/js/parsers/parser-metric.js b/api/static/js/tablesort/js/parsers/parser-metric.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-metric.js rename to api/static/js/tablesort/js/parsers/parser-metric.js diff --git a/static/js/tablesort/js/parsers/parser-roman.js b/api/static/js/tablesort/js/parsers/parser-roman.js similarity index 100% rename from static/js/tablesort/js/parsers/parser-roman.js rename to api/static/js/tablesort/js/parsers/parser-roman.js diff --git a/static/js/tablesort/js/widgets/widget-alignChar.js b/api/static/js/tablesort/js/widgets/widget-alignChar.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-alignChar.js rename to api/static/js/tablesort/js/widgets/widget-alignChar.js diff --git a/static/js/tablesort/js/widgets/widget-build-table.js b/api/static/js/tablesort/js/widgets/widget-build-table.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-build-table.js rename to api/static/js/tablesort/js/widgets/widget-build-table.js diff --git a/static/js/tablesort/js/widgets/widget-columnSelector.js b/api/static/js/tablesort/js/widgets/widget-columnSelector.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-columnSelector.js rename to api/static/js/tablesort/js/widgets/widget-columnSelector.js diff --git a/static/js/tablesort/js/widgets/widget-cssStickyHeaders.js b/api/static/js/tablesort/js/widgets/widget-cssStickyHeaders.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-cssStickyHeaders.js rename to api/static/js/tablesort/js/widgets/widget-cssStickyHeaders.js diff --git a/static/js/tablesort/js/widgets/widget-editable.js b/api/static/js/tablesort/js/widgets/widget-editable.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-editable.js rename to api/static/js/tablesort/js/widgets/widget-editable.js diff --git a/static/js/tablesort/js/widgets/widget-grouping.js b/api/static/js/tablesort/js/widgets/widget-grouping.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-grouping.js rename to api/static/js/tablesort/js/widgets/widget-grouping.js diff --git a/static/js/tablesort/js/widgets/widget-headerTitles.js b/api/static/js/tablesort/js/widgets/widget-headerTitles.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-headerTitles.js rename to api/static/js/tablesort/js/widgets/widget-headerTitles.js diff --git a/static/js/tablesort/js/widgets/widget-math.js b/api/static/js/tablesort/js/widgets/widget-math.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-math.js rename to api/static/js/tablesort/js/widgets/widget-math.js diff --git a/static/js/tablesort/js/widgets/widget-output.js b/api/static/js/tablesort/js/widgets/widget-output.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-output.js rename to api/static/js/tablesort/js/widgets/widget-output.js diff --git a/static/js/tablesort/js/widgets/widget-pager.js b/api/static/js/tablesort/js/widgets/widget-pager.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-pager.js rename to api/static/js/tablesort/js/widgets/widget-pager.js diff --git a/static/js/tablesort/js/widgets/widget-print.js b/api/static/js/tablesort/js/widgets/widget-print.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-print.js rename to api/static/js/tablesort/js/widgets/widget-print.js diff --git a/static/js/tablesort/js/widgets/widget-reflow.js b/api/static/js/tablesort/js/widgets/widget-reflow.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-reflow.js rename to api/static/js/tablesort/js/widgets/widget-reflow.js diff --git a/static/js/tablesort/js/widgets/widget-repeatheaders.js b/api/static/js/tablesort/js/widgets/widget-repeatheaders.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-repeatheaders.js rename to api/static/js/tablesort/js/widgets/widget-repeatheaders.js diff --git a/static/js/tablesort/js/widgets/widget-scroller.js b/api/static/js/tablesort/js/widgets/widget-scroller.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-scroller.js rename to api/static/js/tablesort/js/widgets/widget-scroller.js diff --git a/static/js/tablesort/js/widgets/widget-staticRow.js b/api/static/js/tablesort/js/widgets/widget-staticRow.js similarity index 100% rename from static/js/tablesort/js/widgets/widget-staticRow.js rename to api/static/js/tablesort/js/widgets/widget-staticRow.js diff --git a/static/js/tablesort/package.json b/api/static/js/tablesort/package.json similarity index 100% rename from static/js/tablesort/package.json rename to api/static/js/tablesort/package.json diff --git a/static/js/tablesort/tablesorter.jquery.json b/api/static/js/tablesort/tablesorter.jquery.json similarity index 100% rename from static/js/tablesort/tablesorter.jquery.json rename to api/static/js/tablesort/tablesorter.jquery.json diff --git a/static/js/tablesort/test.html b/api/static/js/tablesort/test.html similarity index 100% rename from static/js/tablesort/test.html rename to api/static/js/tablesort/test.html diff --git a/static/js/tablesort/testing/jshint-2.4.4.js b/api/static/js/tablesort/testing/jshint-2.4.4.js similarity index 100% rename from static/js/tablesort/testing/jshint-2.4.4.js rename to api/static/js/tablesort/testing/jshint-2.4.4.js diff --git a/static/js/tablesort/testing/qunit-1.14.0.css b/api/static/js/tablesort/testing/qunit-1.14.0.css similarity index 100% rename from static/js/tablesort/testing/qunit-1.14.0.css rename to api/static/js/tablesort/testing/qunit-1.14.0.css diff --git a/static/js/tablesort/testing/qunit-1.14.0.js b/api/static/js/tablesort/testing/qunit-1.14.0.js similarity index 100% rename from static/js/tablesort/testing/qunit-1.14.0.js rename to api/static/js/tablesort/testing/qunit-1.14.0.js diff --git a/static/js/tablesort/testing/testing-ipv6.js b/api/static/js/tablesort/testing/testing-ipv6.js similarity index 100% rename from static/js/tablesort/testing/testing-ipv6.js rename to api/static/js/tablesort/testing/testing-ipv6.js diff --git a/static/js/tablesort/testing/testing-widgets.js b/api/static/js/tablesort/testing/testing-widgets.js similarity index 100% rename from static/js/tablesort/testing/testing-widgets.js rename to api/static/js/tablesort/testing/testing-widgets.js diff --git a/static/js/tablesort/testing/testing.css b/api/static/js/tablesort/testing/testing.css similarity index 100% rename from static/js/tablesort/testing/testing.css rename to api/static/js/tablesort/testing/testing.css diff --git a/static/js/tablesort/testing/testing.js b/api/static/js/tablesort/testing/testing.js similarity index 100% rename from static/js/tablesort/testing/testing.js rename to api/static/js/tablesort/testing/testing.js diff --git a/static/js/twitter.js b/api/static/js/twitter.js similarity index 100% rename from static/js/twitter.js rename to api/static/js/twitter.js diff --git a/tasks.py b/api/tasks.py similarity index 100% rename from tasks.py rename to api/tasks.py diff --git a/templates/admin/index.html b/api/templates/admin/index.html similarity index 100% rename from templates/admin/index.html rename to api/templates/admin/index.html diff --git a/templates/list.html b/api/templates/list.html similarity index 100% rename from templates/list.html rename to api/templates/list.html diff --git a/templates/my_master.html b/api/templates/my_master.html similarity index 100% rename from templates/my_master.html rename to api/templates/my_master.html diff --git a/templates/spongemap.html b/api/templates/spongemap.html similarity index 100% rename from templates/spongemap.html rename to api/templates/spongemap.html diff --git a/frontend/.babelrc b/frontend/.babelrc new file mode 100644 index 0000000..2bcd546 --- /dev/null +++ b/frontend/.babelrc @@ -0,0 +1,8 @@ +{ + "presets": ["babel-preset-expo"], + "env": { + "development": { + "plugins": ["transform-react-jsx-source"] + } + } +} diff --git a/frontend/.flowconfig b/frontend/.flowconfig new file mode 100644 index 0000000..96d526a --- /dev/null +++ b/frontend/.flowconfig @@ -0,0 +1,63 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore "BUCK" generated dirs +/\.buckd/ + +; Ignore unexpected extra "@providesModule" +.*/node_modules/.*/node_modules/fbjs/.* + +; Ignore duplicate module providers +; For RN Apps installed via npm, "Libraries" folder is inside +; "node_modules/react-native" but in the source repo it is in the root +.*/Libraries/react-native/React.js +.*/Libraries/react-native/ReactNative.js + +; Additional create-react-native-app ignores + +; Ignore duplicate module providers +.*/node_modules/fbemitter/lib/* + +; Ignore misbehaving dev-dependencies +.*/node_modules/xdl/build/* +.*/node_modules/reqwest/tests/* + +; Ignore missing expo-sdk dependencies (temporarily) +; https://github.com/expo/expo/issues/162 +.*/node_modules/expo/src/* + +; Ignore react-native-fbads dependency of the expo sdk +.*/node_modules/react-native-fbads/* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow +flow/ + +[options] +module.system=haste + +emoji=true + +experimental.strict_type_args=true + +munge_underscores=true + +module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FixMe + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +unsafe.enable_getters_and_setters=true + +[version] +^0.49.1 diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..1025e17 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.expo/ +npm-debug.* diff --git a/frontend/.watchmanconfig b/frontend/.watchmanconfig new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/frontend/.watchmanconfig @@ -0,0 +1 @@ +{} diff --git a/frontend/App.js b/frontend/App.js new file mode 100644 index 0000000..8d6286c --- /dev/null +++ b/frontend/App.js @@ -0,0 +1,23 @@ +import React from 'react'; +import { StyleSheet, Text, View } from 'react-native'; + +export default class App extends React.Component { + render() { + return ( + + Open up App.js to start working on your app! + Changes you make will automatically reload. + Shake your phone to open the developer menu. + + ); + } +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); diff --git a/frontend/App.test.js b/frontend/App.test.js new file mode 100644 index 0000000..fc6f975 --- /dev/null +++ b/frontend/App.test.js @@ -0,0 +1,9 @@ +import React from 'react'; +import App from './App'; + +import renderer from 'react-test-renderer'; + +it('renders without crashing', () => { + const rendered = renderer.create().toJSON(); + expect(rendered).toBeTruthy(); +}); diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..31d1557 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,4 @@ +http://jkaufman.io/react-web-native-codesharing/ +https://facebook.github.io/react-native/docs/getting-started.html +http://containertutorials.com/docker-compose/flask-mongo-compose.html +https://github.com/kauffecup/react-native-web-hello-world/blob/master/web/public/index.html diff --git a/frontend/app.json b/frontend/app.json new file mode 100644 index 0000000..732b7eb --- /dev/null +++ b/frontend/app.json @@ -0,0 +1,5 @@ +{ + "expo": { + "sdkVersion": "21.0.0" + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..6f0af07 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,26 @@ +{ + "name": "sponge", + "version": "0.1.0", + "private": true, + "devDependencies": { + "react-native-scripts": "1.5.0", + "jest-expo": "^21.0.2", + "react-test-renderer": "16.0.0-alpha.12" + }, + "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", + "scripts": { + "start": "react-native-scripts start", + "eject": "react-native-scripts eject", + "android": "react-native-scripts android", + "ios": "react-native-scripts ios", + "test": "node node_modules/jest/bin/jest.js --watch" + }, + "jest": { + "preset": "jest-expo" + }, + "dependencies": { + "expo": "^21.0.0", + "react": "16.0.0-alpha.12", + "react-native": "^0.48.4" + } +} \ No newline at end of file diff --git a/frontend/web/public/index.html b/frontend/web/public/index.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web/webpack/web.dev.config.js b/frontend/web/webpack/web.dev.config.js new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web/webpack/web.prod.config.js b/frontend/web/webpack/web.prod.config.js new file mode 100644 index 0000000..e69de29 diff --git a/manage.py b/manage.py deleted file mode 100755 index 88140fb..0000000 --- a/manage.py +++ /dev/null @@ -1,293 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -__author__ = 'jcranwellward' - -import logging -import os, re -import random -import datetime -import requests -import json - -from flask.ext.script import ( - Manager, - Server -) - -from pymongo import MongoClient -from activtyinfo_client import ActivityInfoClient -from cartodb import CartoDBAPIKey, CartoDBException - -from spongemap import app, Report, Attribute - -manager = Manager(app) - -ai = MongoClient( - os.environ.get('MONGODB_URL', 'mongodb://localhost:27017'))['ai-aggregator'] - - -def send_message(message): - requests.post( - os.environ.get('SLACK_WEBHOOK'), - data=json.dumps({'text': message}) - ) - - -@manager.command -def update_levels(country_code='LB'): - """ - Updates local admin level lookup tables from AI. - These lookup tables are used when creating sites for AI. - """ - - client = ActivityInfoClient() - - for level in client.get_admin_levels(country_code): - entities = client.get_entities(level['id']) - for entity in entities: - ai[level['name']].update( - {'_id': entity['id']}, entity, upsert=True) - print 'Updated entity {}: {}'.format( - level['name'], entity['name'].encode('UTF-8') - ) - - for site_type in client.get_location_types(country_code): - locations = client.get_locations(site_type['id']) - for location in locations: - ai.locations.update( - {'_id': location['id']}, location, upsert=True) - print 'Updated {}: {}'.format( - site_type['name'].encode('UTF-8'), location['name'].encode('UTF-8') - ) - - -@manager.command -def update_sites( - api_key='', - domain='', - username='', - password='', - list_name='', - site_type='', - name_col='', - code_col='', - target_list='' -): - carto_client = CartoDBAPIKey(api_key, domain) - - ai_client = ActivityInfoClient(username, password) - - # create an index of sites by p_code - existing = dict( - (site['code'], dict(site, index=i)) - for (i, site) in enumerate( - ai_client.get_locations(target_list) - ) if 'code' in site - ) - - sites = carto_client.sql( - 'select * from {}'.format(list_name) - ) - send_message('Starting upload of {}'.format(list_name)) - bad_codes = [] - updated_sites = 0 - for row in sites['rows']: - p_code = str(row[code_col]).strip() - site_name = row[name_col].encode('UTF-8') - cad = ai['Cadastral Area'].find_one({'code': str(row['cad_code'])}) - if cad is None: - bad_codes.append(row['cad_code']) - continue - caz = ai['Caza'].find_one({'id': cad['parentId']}) - gov = ai['Governorate'].find_one({'id': caz['parentId']}) - - if p_code not in existing and site_name: - - payload = dict( - id=int(random.getrandbits(31)), - locationTypeId=int(target_list), - name='{}: {}'.format(site_type, site_name)[0:40], - axe='{}'.format(p_code), - latitude=row['latitude'], - longitude=row['longitude'], - workflowstatusid='validated' - ) - payload['E{}'.format(gov['levelId'])] = gov['id'] - payload['E{}'.format(caz['levelId'])] = caz['id'] - payload['E{}'.format(cad['levelId'])] = cad['id'] - - response = ai_client.call_command('CreateLocation', **payload) - if response.status_code == requests.codes.no_content: - updated_sites += 1 - print 'Updated {}'.format(payload['name']) - else: - print 'Error for {}'.format(payload['name']) - - print 'Bad codes: {}'.format(bad_codes) - print 'Updated sites: {}'.format(updated_sites) - send_message('Updated {} sites'.format(updated_sites)) - - -@manager.command -def update_ai_locations(type_id, username='', password=''): - client = ActivityInfoClient(username, password) - - updated_location = 0 - for location in ai.locations.find({'ai_name': {'$regex': 'PG'}}): - - payload = { - 'id': int(random.getrandbits(31)), - 'locationTypeId': type_id, - 'name': location['ai_name'], - 'axe': '{}'.format(location['p_code']), - 'latitude': location['latitude'], - 'longitude': location['longitude'], - 'workflowstatusid': 'validated' - } - for id, level in location['adminEntities'].items(): - payload['E{}'.format(id)] = level['id'] - - response = client.call_command('CreateLocation', **payload) - if response.status_code == requests.codes.ok: - updated_location += 1 - print 'Uploaded {}'.format(location['ai_name'].encode('UTF-8')) - else: - print 'Error for: {}'.format(location['ai_name'].encode('UTF-8')) - - print updated_location - - -@manager.command -def import_ai(dbs, username='', password='', date=''): - """ - Imports data from Activity Info - """ - - db_ids = dbs.split(',') - client = ActivityInfoClient(username, password) - - for db_id in db_ids: - reports_created = 0 - db_info = client.get_database(db_id) - send_message('AI import started for database: {}'.format(db_info['name'])) - - # 'store the whole database for future reference' - db_info['_id'] = db_id - ai.databases.update({'_id': db_id}, db_info, upsert=True) - - # 'split out all the attribute groups into a separate collection' - attribs = ai.databases.aggregate([ - {'$project': {'groups': '$activities.attributeGroups'}}, - {'$unwind': '$groups'}, - {'$unwind': '$groups'}, - {'$group': {'_id': "$_id", 'groups': {'$push': '$groups'}}}, - ]) - for attrib in attribs['result'][0]['groups']: - attrib['_id'] = attrib['id'] - ai.attributeGroups.update({'_id': attrib['id']}, attrib, upsert=True) - - # 'create an index of sites by id' - sites = dict( - (site['id'], dict(site, index=i)) - for (i, site) in enumerate( - client.get_sites(database=db_id) - ) - ) - - # 'create an index of activities by id' - activities = dict( - (activity['id'], dict(activity, index=i)) - for (i, activity) in enumerate( - ai.databases.aggregate([ - {'$match': {'_id': db_id}}, - {'$unwind': '$activities'}, - {'$project': { - '_id': 0, - 'id': '$activities.id', - 'name': '$activities.name', - 'category': '$activities.category', - 'location': '$activities.locationType' - }}, - ])['result'] - ) - ) - - # 'get all reports for these activities: {}'.format(activities.keys()) - if not date: # if no date provided get for the current month - date = datetime.date.today().strftime('%Y-%m') - send_message('Pulling reports for date: {}'.format(date)) - - forms = client.get_cube(activities.keys(), month=date) - - # 'processing {} forms'.format(len(forms)) - for indicator in forms: - - site = sites[indicator['key']['Site']['id']] - attributes = [] - if 'attributes' in site: - attributes = [ - attr for attr in ai.attributeGroups.find( - {'attributes.id': {'$in': site['attributes']}}, - {'name': 1, 'mandatory': 1, "attributes.$": 1} - ) - ] - if indicator['sum']: - report, created = Report.objects.get_or_create( - db_name=db_info['name'], - date='{}-{}'.format( - indicator['key']['Date']['year'], - indicator['key']['Date']['month'], - ), - site_id=site['id'], - activity_id=site['activity'], - partner_id=site['partner']['id'], - indicator_id=indicator['key']['Indicator']['id'], - ) - activity = activities[report.activity_id] - report.value = indicator['sum'] - report.category = activity['category'] - report.activity = activity['name'] - report.partner_name = site['partner']['name'] - report.p_code = site['location']['code'] - report.location_name = site['location']['name'] - report.location_id = site['location']['id'] - report.location_x = site['location'].get('longitude', None) - report.location_y = site['location'].get('latitude', None) - report.indicator_name = indicator['key']['Indicator']['label'] - report.comments = site.get('comments', None) - - location = ai.locations.find_one({'id': report.location_id}) - if location and 'adminEntities' in location: - try: - report.gov_code = str(location['adminEntities']['1370']['id']) - report.governorate = location['adminEntities']['1370']['name'] - report.district_code = str(location['adminEntities']['1521']['id']) - report.district = location['adminEntities']['1521']['name'] - report.cadastral_code = str(location['adminEntities']['1522']['id']) - report.cadastral = location['adminEntities']['1522']['name'] - except Exception as exp: - pass - if created: - for a in attributes: - report.attributes.append( - Attribute( - name=a['name'], - value=a['attributes'][0]['name'] - ) - ) - reports_created += 1 - - report.save() - - send_message('AI import finished, {} site reports created'.format(reports_created)) - - -# Turn on debugger by default and reloader -manager.add_command("runserver", Server( - use_debugger=True, - use_reloader=True, - host='0.0.0.0') -) - -if __name__ == "__main__": - manager.run() diff --git a/requirements.txt b/requirements.txt index 2e5d24f..526c8ed 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ Flask-MongoEngine flask-login flask-admin git+https://github.com/jamescw/flask-mongorest.git -git+https://github.com/HCDX/ActvityInfoPython.git +activityinfo-python==1.6.0 gunicorn cartodb pandas @@ -17,4 +17,4 @@ requests celery redis newrelic -DateTime \ No newline at end of file +DateTime From ab8d17e1cc179b5b4fadada84962ee49a25321b8 Mon Sep 17 00:00:00 2001 From: John Dingee Date: Fri, 6 Oct 2017 11:30:13 -0400 Subject: [PATCH 03/35] trying two react native boilerplates --- api/README.md | 7 + requirements.txt => api/full-requirements.txt | 15 +- api/spongemap.py | 6 +- frontend/README.md | 9 +- frontend/react-native-web-hello-world | 1 + frontend/{ => sponge}/.babelrc | 0 frontend/{ => sponge}/.flowconfig | 0 frontend/{ => sponge}/.gitignore | 0 frontend/{ => sponge}/.watchmanconfig | 0 frontend/{ => sponge}/App.js | 0 frontend/{ => sponge}/App.test.js | 0 frontend/sponge/README.md | 4 + frontend/{ => sponge}/app.json | 0 frontend/sponge/package.json | 28 +++ frontend/{ => sponge}/web/public/index.html | 0 .../web/webpack/web.dev.config.js | 0 .../web/webpack/web.prod.config.js | 0 frontend/tmpApp/.babelrc | 8 + frontend/tmpApp/.flowconfig | 63 +++++ frontend/tmpApp/.gitignore | 3 + frontend/tmpApp/App.js | 24 ++ frontend/tmpApp/App.test.js | 9 + frontend/tmpApp/README.md | 220 ++++++++++++++++++ frontend/tmpApp/app.json | 5 + frontend/{ => tmpApp}/package.json | 2 +- frontend/tmpApp/web/public/index.html | 0 frontend/tmpApp/web/webpack/web.dev.config.js | 0 .../tmpApp/web/webpack/web.prod.config.js | 0 28 files changed, 391 insertions(+), 13 deletions(-) rename requirements.txt => api/full-requirements.txt (63%) create mode 160000 frontend/react-native-web-hello-world rename frontend/{ => sponge}/.babelrc (100%) rename frontend/{ => sponge}/.flowconfig (100%) rename frontend/{ => sponge}/.gitignore (100%) rename frontend/{ => sponge}/.watchmanconfig (100%) rename frontend/{ => sponge}/App.js (100%) rename frontend/{ => sponge}/App.test.js (100%) create mode 100644 frontend/sponge/README.md rename frontend/{ => sponge}/app.json (100%) create mode 100644 frontend/sponge/package.json rename frontend/{ => sponge}/web/public/index.html (100%) rename frontend/{ => sponge}/web/webpack/web.dev.config.js (100%) rename frontend/{ => sponge}/web/webpack/web.prod.config.js (100%) create mode 100644 frontend/tmpApp/.babelrc create mode 100644 frontend/tmpApp/.flowconfig create mode 100644 frontend/tmpApp/.gitignore create mode 100644 frontend/tmpApp/App.js create mode 100644 frontend/tmpApp/App.test.js create mode 100644 frontend/tmpApp/README.md create mode 100644 frontend/tmpApp/app.json rename frontend/{ => tmpApp}/package.json (97%) create mode 100644 frontend/tmpApp/web/public/index.html create mode 100644 frontend/tmpApp/web/webpack/web.dev.config.js create mode 100644 frontend/tmpApp/web/webpack/web.prod.config.js diff --git a/api/README.md b/api/README.md index e69de29..e9f3e0d 100644 --- a/api/README.md +++ b/api/README.md @@ -0,0 +1,7 @@ +If you don't want to run this in docker, run: + +`$ virtualenv venv` + +`$ venv` + +we want to go back to equitrip diff --git a/requirements.txt b/api/full-requirements.txt similarity index 63% rename from requirements.txt rename to api/full-requirements.txt index 526c8ed..d2452cf 100644 --- a/requirements.txt +++ b/api/full-requirements.txt @@ -1,3 +1,4 @@ +## flask stuff ## Flask Flask-OAuthlib Flask-Views @@ -5,13 +6,17 @@ Flask-Script Flask-MongoEngine flask-login flask-admin -git+https://github.com/jamescw/flask-mongorest.git + +## 3rd party data producers stuff ## activityinfo-python==1.6.0 -gunicorn cartodb -pandas -cleancat -mimerender + +## stuff i woud like to remove ## +git+https://github.com/jamescw/flask-mongorest.git + +## gunicorn +## cleancat +## mimerender raven[flask] requests celery diff --git a/api/spongemap.py b/api/spongemap.py index f3742ee..1897b24 100644 --- a/api/spongemap.py +++ b/api/spongemap.py @@ -8,7 +8,7 @@ import datetime import logging -from pandas import DataFrame +# from pandas import DataFrame from raven.contrib.flask import Sentry from flask import g, session, request, url_for, flash @@ -426,10 +426,10 @@ def export(self): for attr in report.attributes: dict[attr.name] = attr.value dicts.append(dict) - df = DataFrame.from_records(dicts) + # df = DataFrame.from_records(dicts) buffer = StringIO.StringIO() # use stringio for temp file - df.to_csv(buffer, encoding='utf-8') + # df.to_csv(buffer, encoding='utf-8') buffer.seek(0) filename = "ai_reports_" + datetime.datetime.now().strftime("%Y_%m_%d_%H_%M") + ".csv" diff --git a/frontend/README.md b/frontend/README.md index 31d1557..5248985 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,4 +1,5 @@ -http://jkaufman.io/react-web-native-codesharing/ -https://facebook.github.io/react-native/docs/getting-started.html -http://containertutorials.com/docker-compose/flask-mongo-compose.html -https://github.com/kauffecup/react-native-web-hello-world/blob/master/web/public/index.html + +- trying a number of approaches to get a front end build working +- react-native create app ( sponge package ) +- react-native-web-hello-world + -> https://github.com/kauffecup/react-native-web-hello-world diff --git a/frontend/react-native-web-hello-world b/frontend/react-native-web-hello-world new file mode 160000 index 0000000..bb67ec4 --- /dev/null +++ b/frontend/react-native-web-hello-world @@ -0,0 +1 @@ +Subproject commit bb67ec4bb53c1a0625a0dc6570bb54cd209d227e diff --git a/frontend/.babelrc b/frontend/sponge/.babelrc similarity index 100% rename from frontend/.babelrc rename to frontend/sponge/.babelrc diff --git a/frontend/.flowconfig b/frontend/sponge/.flowconfig similarity index 100% rename from frontend/.flowconfig rename to frontend/sponge/.flowconfig diff --git a/frontend/.gitignore b/frontend/sponge/.gitignore similarity index 100% rename from frontend/.gitignore rename to frontend/sponge/.gitignore diff --git a/frontend/.watchmanconfig b/frontend/sponge/.watchmanconfig similarity index 100% rename from frontend/.watchmanconfig rename to frontend/sponge/.watchmanconfig diff --git a/frontend/App.js b/frontend/sponge/App.js similarity index 100% rename from frontend/App.js rename to frontend/sponge/App.js diff --git a/frontend/App.test.js b/frontend/sponge/App.test.js similarity index 100% rename from frontend/App.test.js rename to frontend/sponge/App.test.js diff --git a/frontend/sponge/README.md b/frontend/sponge/README.md new file mode 100644 index 0000000..31d1557 --- /dev/null +++ b/frontend/sponge/README.md @@ -0,0 +1,4 @@ +http://jkaufman.io/react-web-native-codesharing/ +https://facebook.github.io/react-native/docs/getting-started.html +http://containertutorials.com/docker-compose/flask-mongo-compose.html +https://github.com/kauffecup/react-native-web-hello-world/blob/master/web/public/index.html diff --git a/frontend/app.json b/frontend/sponge/app.json similarity index 100% rename from frontend/app.json rename to frontend/sponge/app.json diff --git a/frontend/sponge/package.json b/frontend/sponge/package.json new file mode 100644 index 0000000..9ed1d6c --- /dev/null +++ b/frontend/sponge/package.json @@ -0,0 +1,28 @@ +{ + "name": "sponge", + "version": "0.1.0", + "private": true, + "devDependencies": { + "react-native-scripts": "1.5.0", + "jest-expo": "^21.0.2", + "react-test-renderer": "16.0.0-alpha.12" + }, + "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", + "scripts": { + "web-bundle": "webpack --config web/webpack/web.prod.config.js --progress --colors", + "web": "webpack-dev-server --content-base web/public/ --config web/webpack/web.dev.config.js --port 3001 --inline --hot --colors", + "start": "react-native-scripts start", + "eject": "react-native-scripts eject", + "android": "react-native-scripts android", + "ios": "react-native-scripts ios", + "test": "node node_modules/jest/bin/jest.js --watch" + }, + "jest": { + "preset": "jest-expo" + }, + "dependencies": { + "expo": "^21.0.0", + "react": "16.0.0-alpha.12", + "react-native": "^0.48.4" + } +} diff --git a/frontend/web/public/index.html b/frontend/sponge/web/public/index.html similarity index 100% rename from frontend/web/public/index.html rename to frontend/sponge/web/public/index.html diff --git a/frontend/web/webpack/web.dev.config.js b/frontend/sponge/web/webpack/web.dev.config.js similarity index 100% rename from frontend/web/webpack/web.dev.config.js rename to frontend/sponge/web/webpack/web.dev.config.js diff --git a/frontend/web/webpack/web.prod.config.js b/frontend/sponge/web/webpack/web.prod.config.js similarity index 100% rename from frontend/web/webpack/web.prod.config.js rename to frontend/sponge/web/webpack/web.prod.config.js diff --git a/frontend/tmpApp/.babelrc b/frontend/tmpApp/.babelrc new file mode 100644 index 0000000..2bcd546 --- /dev/null +++ b/frontend/tmpApp/.babelrc @@ -0,0 +1,8 @@ +{ + "presets": ["babel-preset-expo"], + "env": { + "development": { + "plugins": ["transform-react-jsx-source"] + } + } +} diff --git a/frontend/tmpApp/.flowconfig b/frontend/tmpApp/.flowconfig new file mode 100644 index 0000000..96d526a --- /dev/null +++ b/frontend/tmpApp/.flowconfig @@ -0,0 +1,63 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore "BUCK" generated dirs +/\.buckd/ + +; Ignore unexpected extra "@providesModule" +.*/node_modules/.*/node_modules/fbjs/.* + +; Ignore duplicate module providers +; For RN Apps installed via npm, "Libraries" folder is inside +; "node_modules/react-native" but in the source repo it is in the root +.*/Libraries/react-native/React.js +.*/Libraries/react-native/ReactNative.js + +; Additional create-react-native-app ignores + +; Ignore duplicate module providers +.*/node_modules/fbemitter/lib/* + +; Ignore misbehaving dev-dependencies +.*/node_modules/xdl/build/* +.*/node_modules/reqwest/tests/* + +; Ignore missing expo-sdk dependencies (temporarily) +; https://github.com/expo/expo/issues/162 +.*/node_modules/expo/src/* + +; Ignore react-native-fbads dependency of the expo sdk +.*/node_modules/react-native-fbads/* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow +flow/ + +[options] +module.system=haste + +emoji=true + +experimental.strict_type_args=true + +munge_underscores=true + +module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FixMe + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +unsafe.enable_getters_and_setters=true + +[version] +^0.49.1 diff --git a/frontend/tmpApp/.gitignore b/frontend/tmpApp/.gitignore new file mode 100644 index 0000000..1025e17 --- /dev/null +++ b/frontend/tmpApp/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.expo/ +npm-debug.* diff --git a/frontend/tmpApp/App.js b/frontend/tmpApp/App.js new file mode 100644 index 0000000..63798ee --- /dev/null +++ b/frontend/tmpApp/App.js @@ -0,0 +1,24 @@ +import React from 'react'; +import { StyleSheet, Text, View } from 'react-native'; + +export default class App extends React.Component { + render() { + return ( + + Open up App.js to start working on your app! + Changes you make will automatically reload. + Shake your phone to open the developer menu. + test. + + ); + } +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); diff --git a/frontend/tmpApp/App.test.js b/frontend/tmpApp/App.test.js new file mode 100644 index 0000000..fc6f975 --- /dev/null +++ b/frontend/tmpApp/App.test.js @@ -0,0 +1,9 @@ +import React from 'react'; +import App from './App'; + +import renderer from 'react-test-renderer'; + +it('renders without crashing', () => { + const rendered = renderer.create().toJSON(); + expect(rendered).toBeTruthy(); +}); diff --git a/frontend/tmpApp/README.md b/frontend/tmpApp/README.md new file mode 100644 index 0000000..6185052 --- /dev/null +++ b/frontend/tmpApp/README.md @@ -0,0 +1,220 @@ +This project was bootstrapped with [Create React Native App](https://github.com/react-community/create-react-native-app). + +Below you'll find information about performing common tasks. The most recent version of this guide is available [here](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/README.md). + +## Table of Contents + +* [Updating to New Releases](#updating-to-new-releases) +* [Available Scripts](#available-scripts) + * [npm start](#npm-start) + * [npm test](#npm-test) + * [npm run ios](#npm-run-ios) + * [npm run android](#npm-run-android) + * [npm run eject](#npm-run-eject) +* [Writing and Running Tests](#writing-and-running-tests) +* [Environment Variables](#environment-variables) + * [Configuring Packager IP Address](#configuring-packager-ip-address) +* [Adding Flow](#adding-flow) +* [Customizing App Display Name and Icon](#customizing-app-display-name-and-icon) +* [Sharing and Deployment](#sharing-and-deployment) + * [Publishing to Expo's React Native Community](#publishing-to-expos-react-native-community) + * [Building an Expo "standalone" app](#building-an-expo-standalone-app) + * [Ejecting from Create React Native App](#ejecting-from-create-react-native-app) + * [Build Dependencies (Xcode & Android Studio)](#build-dependencies-xcode-android-studio) + * [Should I Use ExpoKit?](#should-i-use-expokit) +* [Troubleshooting](#troubleshooting) + * [Networking](#networking) + * [iOS Simulator won't open](#ios-simulator-wont-open) + * [QR Code does not scan](#qr-code-does-not-scan) + +## Updating to New Releases + +You should only need to update the global installation of `create-react-native-app` very rarely, ideally never. + +Updating the `react-native-scripts` dependency of your app should be as simple as bumping the version number in `package.json` and reinstalling your project's dependencies. + +Upgrading to a new version of React Native requires updating the `react-native`, `react`, and `expo` package versions, and setting the correct `sdkVersion` in `app.json`. See the [versioning guide](https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md) for up-to-date information about package version compatibility. + +## Available Scripts + +If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing. + +### `npm start` + +Runs your app in development mode. + +Open it in the [Expo app](https://expo.io) on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal. + +Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the `--reset-cache` flag to the start script: + +``` +npm start -- --reset-cache +# or +yarn start -- --reset-cache +``` + +#### `npm test` + +Runs the [jest](https://github.com/facebook/jest) test runner on your tests. + +#### `npm run ios` + +Like `npm start`, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed. + +#### `npm run android` + +Like `npm start`, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html) for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of `adb` available to Create React Native App: + +##### Using Android Studio's `adb` + +1. Make sure that you can run adb from your terminal. +2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location). + +##### Using Genymotion's `adb` + +1. Find Genymotion’s copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`. +2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)). +3. Make sure that you can run adb from your terminal. + +#### `npm run eject` + +This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project. + +**Warning:** Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an [Xcode and/or Android Studio environment](https://facebook.github.io/react-native/docs/getting-started.html) set up. + +## Customizing App Display Name and Icon + +You can edit `app.json` to include [configuration keys](https://docs.expo.io/versions/latest/guides/configuration.html) under the `expo` key. + +To change your app's display name, set the `expo.name` key in `app.json` to an appropriate string. + +To set an app icon, set the `expo.icon` key in `app.json` to be either a local path or a URL. It's recommended that you use a 512x512 png file with transparency. + +## Writing and Running Tests + +This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test` extension to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/App.test.js) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/tutorial-react-native.html). + +## Environment Variables + +You can configure some of Create React Native App's behavior using environment variables. + +### Configuring Packager IP Address + +When starting your project, you'll see something like this for your project URL: + +``` +exp://192.168.0.2:19000 +``` + +The "manifest" at that URL tells the Expo app how to retrieve and load your app's JavaScript bundle, so even if you load it in the app via a URL like `exp://localhost:19000`, the Expo client app will still try to retrieve your app at the IP address that the start script provides. + +In some cases, this is less than ideal. This might be the case if you need to run your project inside of a virtual machine and you have to access the packager via a different IP address than the one which prints by default. In order to override the IP address or hostname that is detected by Create React Native App, you can specify your own hostname via the `REACT_NATIVE_PACKAGER_HOSTNAME` environment variable: + +Mac and Linux: + +``` +REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' npm start +``` + +Windows: +``` +set REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' +npm start +``` + +The above example would cause the development server to listen on `exp://my-custom-ip-address-or-hostname:19000`. + +## Adding Flow + +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. + +React Native works with [Flow](http://flowtype.org/) out of the box, as long as your Flow version matches the one used in the version of React Native. + +To add a local dependency to the correct Flow version to a Create React Native App project, follow these steps: + +1. Find the Flow `[version]` at the bottom of the included [.flowconfig](.flowconfig) +2. Run `npm install --save-dev flow-bin@x.y.z` (or `yarn add --dev flow-bin@x.y.z`), where `x.y.z` is the .flowconfig version number. +3. Add `"flow": "flow"` to the `scripts` section of your `package.json`. +4. Add `// @flow` to any files you want to type check (for example, to `App.js`). + +Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. +You can optionally use a [plugin for your IDE or editor](https://flow.org/en/docs/editors/) for a better integrated experience. + +To learn more about Flow, check out [its documentation](https://flow.org/). + +## Sharing and Deployment + +Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service. + +### Publishing to Expo's React Native Community + +Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account. + +Install the `exp` command-line tool, and run the publish command: + +``` +$ npm i -g exp +$ exp publish +``` + +### Building an Expo "standalone" app + +You can also use a service like [Expo's standalone builds](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html) if you want to get an IPA/APK for distribution without having to build the native code yourself. + +### Ejecting from Create React Native App + +If you want to build and deploy your app yourself, you'll need to eject from CRNA and use Xcode and Android Studio. + +This is usually as simple as running `npm run eject` in your project, which will walk you through the process. Make sure to install `react-native-cli` and follow the [native code getting started guide for React Native](https://facebook.github.io/react-native/docs/getting-started.html). + +#### Should I Use ExpoKit? + +If you have made use of Expo APIs while working on your project, then those API calls will stop working if you eject to a regular React Native project. If you want to continue using those APIs, you can eject to "React Native + ExpoKit" which will still allow you to build your own native code and continue using the Expo APIs. See the [ejecting guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) for more details about this option. + +## Troubleshooting + +### Networking + +If you're unable to load your app on your phone due to a network timeout or a refused connection, a good first step is to verify that your phone and computer are on the same network and that they can reach each other. Create React Native App needs access to ports 19000 and 19001 so ensure that your network and firewall settings allow access from your device to your computer on both of these ports. + +Try opening a web browser on your phone and opening the URL that the packager script prints, replacing `exp://` with `http://`. So, for example, if underneath the QR code in your terminal you see: + +``` +exp://192.168.0.1:19000 +``` + +Try opening Safari or Chrome on your phone and loading + +``` +http://192.168.0.1:19000 +``` + +and + +``` +http://192.168.0.1:19001 +``` + +If this works, but you're still unable to load your app by scanning the QR code, please open an issue on the [Create React Native App repository](https://github.com/react-community/create-react-native-app) with details about these steps and any other error messages you may have received. + +If you're not able to load the `http` URL in your phone's web browser, try using the tethering/mobile hotspot feature on your phone (beware of data usage, though), connecting your computer to that WiFi network, and restarting the packager. + +### iOS Simulator won't open + +If you're on a Mac, there are a few errors that users sometimes see when attempting to `npm run ios`: + +* "non-zero exit code: 107" +* "You may need to install Xcode" but it is already installed +* and others + +There are a few steps you may want to take to troubleshoot these kinds of errors: + +1. Make sure Xcode is installed and open it to accept the license agreement if it prompts you. You can install it from the Mac App Store. +2. Open Xcode's Preferences, the Locations tab, and make sure that the `Command Line Tools` menu option is set to something. Sometimes when the CLI tools are first installed by Homebrew this option is left blank, which can prevent Apple utilities from finding the simulator. Make sure to re-run `npm/yarn run ios` after doing so. +3. If that doesn't work, open the Simulator, and under the app menu select `Reset Contents and Settings...`. After that has finished, quit the Simulator, and re-run `npm/yarn run ios`. + +### QR Code does not scan + +If you're not able to scan the QR code, make sure your phone's camera is focusing correctly, and also make sure that the contrast on the two colors in your terminal is high enough. For example, WebStorm's default themes may [not have enough contrast](https://github.com/react-community/create-react-native-app/issues/49) for terminal QR codes to be scannable with the system barcode scanners that the Expo app uses. + +If this causes problems for you, you may want to try changing your terminal's color theme to have more contrast, or running Create React Native App from a different terminal. You can also manually enter the URL printed by the packager script in the Expo app's search bar to load it manually. diff --git a/frontend/tmpApp/app.json b/frontend/tmpApp/app.json new file mode 100644 index 0000000..732b7eb --- /dev/null +++ b/frontend/tmpApp/app.json @@ -0,0 +1,5 @@ +{ + "expo": { + "sdkVersion": "21.0.0" + } +} diff --git a/frontend/package.json b/frontend/tmpApp/package.json similarity index 97% rename from frontend/package.json rename to frontend/tmpApp/package.json index 6f0af07..9ea3a23 100644 --- a/frontend/package.json +++ b/frontend/tmpApp/package.json @@ -1,5 +1,5 @@ { - "name": "sponge", + "name": "tmpApp", "version": "0.1.0", "private": true, "devDependencies": { diff --git a/frontend/tmpApp/web/public/index.html b/frontend/tmpApp/web/public/index.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/tmpApp/web/webpack/web.dev.config.js b/frontend/tmpApp/web/webpack/web.dev.config.js new file mode 100644 index 0000000..e69de29 diff --git a/frontend/tmpApp/web/webpack/web.prod.config.js b/frontend/tmpApp/web/webpack/web.prod.config.js new file mode 100644 index 0000000..e69de29 From f84df368ed0832cc88c2bf047b337529eb948dfd Mon Sep 17 00:00:00 2001 From: John Dingee Date: Fri, 6 Oct 2017 12:32:33 -0400 Subject: [PATCH 04/35] combine two approaches in hello-world react app --- frontend/sponge/App.js | 2 +- frontend/sponge/package.json | 30 +++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/frontend/sponge/App.js b/frontend/sponge/App.js index 8d6286c..ab3bd0e 100644 --- a/frontend/sponge/App.js +++ b/frontend/sponge/App.js @@ -7,7 +7,7 @@ export default class App extends React.Component { Open up App.js to start working on your app! Changes you make will automatically reload. - Shake your phone to open the developer menu. + test. ); } diff --git a/frontend/sponge/package.json b/frontend/sponge/package.json index 9ed1d6c..2837dbf 100644 --- a/frontend/sponge/package.json +++ b/frontend/sponge/package.json @@ -21,8 +21,36 @@ "preset": "jest-expo" }, "dependencies": { - "expo": "^21.0.0", "react": "16.0.0-alpha.12", "react-native": "^0.48.4" + }, + "devDependencies": { + "expo": "^21.0.0", + "autoprefixer": "^6.3.1", + "autoprefixer-loader": "^3.2.0", + "babel-core": "^6.4.5", + "babel-loader": "^6.2.1", + "babel-plugin-react-transform": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-react": "^6.3.13", + "css-loader": "^0.23.1", + "gulp": "^3.9.0", + "json-loader": "^0.5.4", + "less": "^2.5.3", + "less-loader": "^2.2.2", + "react-native-cli": "^0.1.10", + "react-transform-catch-errors": "^1.0.1", + "react-transform-hmr": "^1.0.1", + "redbox-react": "^1.3.2", + "redux": "^3.6.0", + "redux-devtools": "^3.3.1", + "redux-devtools-dock-monitor": "^1.1.1", + "redux-devtools-log-monitor": "^1.0.11", + "redux-logger": "^2.4.0", + "style-loader": "^0.13.0", + "webpack": "^1.12.12", + "webpack-dev-middleware": "^1.5.1", + "webpack-dev-server": "^1.14.1", + "webpack-hot-middleware": "^2.6.4" } } From 38fdf26e35d76f52dffeda4b3c4044d9a40c89ee Mon Sep 17 00:00:00 2001 From: John Dingee Date: Fri, 6 Oct 2017 12:39:26 -0400 Subject: [PATCH 05/35] rm 2 old react apps --- frontend/sponge/.babelrc | 8 - frontend/sponge/.flowconfig | 63 ----- frontend/sponge/.gitignore | 3 - frontend/sponge/.watchmanconfig | 1 - frontend/sponge/App.js | 23 -- frontend/sponge/App.test.js | 9 - frontend/sponge/README.md | 4 - frontend/sponge/app.json | 5 - frontend/sponge/package.json | 56 ----- frontend/sponge/web/public/index.html | 0 frontend/sponge/web/webpack/web.dev.config.js | 0 .../sponge/web/webpack/web.prod.config.js | 0 frontend/tmpApp/.babelrc | 8 - frontend/tmpApp/.flowconfig | 63 ----- frontend/tmpApp/.gitignore | 3 - frontend/tmpApp/App.js | 24 -- frontend/tmpApp/App.test.js | 9 - frontend/tmpApp/README.md | 220 ------------------ frontend/tmpApp/app.json | 5 - frontend/tmpApp/package.json | 26 --- frontend/tmpApp/web/public/index.html | 0 frontend/tmpApp/web/webpack/web.dev.config.js | 0 .../tmpApp/web/webpack/web.prod.config.js | 0 23 files changed, 530 deletions(-) delete mode 100644 frontend/sponge/.babelrc delete mode 100644 frontend/sponge/.flowconfig delete mode 100644 frontend/sponge/.gitignore delete mode 100644 frontend/sponge/.watchmanconfig delete mode 100644 frontend/sponge/App.js delete mode 100644 frontend/sponge/App.test.js delete mode 100644 frontend/sponge/README.md delete mode 100644 frontend/sponge/app.json delete mode 100644 frontend/sponge/package.json delete mode 100644 frontend/sponge/web/public/index.html delete mode 100644 frontend/sponge/web/webpack/web.dev.config.js delete mode 100644 frontend/sponge/web/webpack/web.prod.config.js delete mode 100644 frontend/tmpApp/.babelrc delete mode 100644 frontend/tmpApp/.flowconfig delete mode 100644 frontend/tmpApp/.gitignore delete mode 100644 frontend/tmpApp/App.js delete mode 100644 frontend/tmpApp/App.test.js delete mode 100644 frontend/tmpApp/README.md delete mode 100644 frontend/tmpApp/app.json delete mode 100644 frontend/tmpApp/package.json delete mode 100644 frontend/tmpApp/web/public/index.html delete mode 100644 frontend/tmpApp/web/webpack/web.dev.config.js delete mode 100644 frontend/tmpApp/web/webpack/web.prod.config.js diff --git a/frontend/sponge/.babelrc b/frontend/sponge/.babelrc deleted file mode 100644 index 2bcd546..0000000 --- a/frontend/sponge/.babelrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "presets": ["babel-preset-expo"], - "env": { - "development": { - "plugins": ["transform-react-jsx-source"] - } - } -} diff --git a/frontend/sponge/.flowconfig b/frontend/sponge/.flowconfig deleted file mode 100644 index 96d526a..0000000 --- a/frontend/sponge/.flowconfig +++ /dev/null @@ -1,63 +0,0 @@ -[ignore] -; We fork some components by platform -.*/*[.]android.js - -; Ignore "BUCK" generated dirs -/\.buckd/ - -; Ignore unexpected extra "@providesModule" -.*/node_modules/.*/node_modules/fbjs/.* - -; Ignore duplicate module providers -; For RN Apps installed via npm, "Libraries" folder is inside -; "node_modules/react-native" but in the source repo it is in the root -.*/Libraries/react-native/React.js -.*/Libraries/react-native/ReactNative.js - -; Additional create-react-native-app ignores - -; Ignore duplicate module providers -.*/node_modules/fbemitter/lib/* - -; Ignore misbehaving dev-dependencies -.*/node_modules/xdl/build/* -.*/node_modules/reqwest/tests/* - -; Ignore missing expo-sdk dependencies (temporarily) -; https://github.com/expo/expo/issues/162 -.*/node_modules/expo/src/* - -; Ignore react-native-fbads dependency of the expo sdk -.*/node_modules/react-native-fbads/* - -[include] - -[libs] -node_modules/react-native/Libraries/react-native/react-native-interface.js -node_modules/react-native/flow -flow/ - -[options] -module.system=haste - -emoji=true - -experimental.strict_type_args=true - -munge_underscores=true - -module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' - -suppress_type=$FlowIssue -suppress_type=$FlowFixMe -suppress_type=$FixMe - -suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) -suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ -suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy -suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError - -unsafe.enable_getters_and_setters=true - -[version] -^0.49.1 diff --git a/frontend/sponge/.gitignore b/frontend/sponge/.gitignore deleted file mode 100644 index 1025e17..0000000 --- a/frontend/sponge/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -.expo/ -npm-debug.* diff --git a/frontend/sponge/.watchmanconfig b/frontend/sponge/.watchmanconfig deleted file mode 100644 index 0967ef4..0000000 --- a/frontend/sponge/.watchmanconfig +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/frontend/sponge/App.js b/frontend/sponge/App.js deleted file mode 100644 index ab3bd0e..0000000 --- a/frontend/sponge/App.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react'; -import { StyleSheet, Text, View } from 'react-native'; - -export default class App extends React.Component { - render() { - return ( - - Open up App.js to start working on your app! - Changes you make will automatically reload. - test. - - ); - } -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: '#fff', - alignItems: 'center', - justifyContent: 'center', - }, -}); diff --git a/frontend/sponge/App.test.js b/frontend/sponge/App.test.js deleted file mode 100644 index fc6f975..0000000 --- a/frontend/sponge/App.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import App from './App'; - -import renderer from 'react-test-renderer'; - -it('renders without crashing', () => { - const rendered = renderer.create().toJSON(); - expect(rendered).toBeTruthy(); -}); diff --git a/frontend/sponge/README.md b/frontend/sponge/README.md deleted file mode 100644 index 31d1557..0000000 --- a/frontend/sponge/README.md +++ /dev/null @@ -1,4 +0,0 @@ -http://jkaufman.io/react-web-native-codesharing/ -https://facebook.github.io/react-native/docs/getting-started.html -http://containertutorials.com/docker-compose/flask-mongo-compose.html -https://github.com/kauffecup/react-native-web-hello-world/blob/master/web/public/index.html diff --git a/frontend/sponge/app.json b/frontend/sponge/app.json deleted file mode 100644 index 732b7eb..0000000 --- a/frontend/sponge/app.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "expo": { - "sdkVersion": "21.0.0" - } -} diff --git a/frontend/sponge/package.json b/frontend/sponge/package.json deleted file mode 100644 index 2837dbf..0000000 --- a/frontend/sponge/package.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "sponge", - "version": "0.1.0", - "private": true, - "devDependencies": { - "react-native-scripts": "1.5.0", - "jest-expo": "^21.0.2", - "react-test-renderer": "16.0.0-alpha.12" - }, - "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", - "scripts": { - "web-bundle": "webpack --config web/webpack/web.prod.config.js --progress --colors", - "web": "webpack-dev-server --content-base web/public/ --config web/webpack/web.dev.config.js --port 3001 --inline --hot --colors", - "start": "react-native-scripts start", - "eject": "react-native-scripts eject", - "android": "react-native-scripts android", - "ios": "react-native-scripts ios", - "test": "node node_modules/jest/bin/jest.js --watch" - }, - "jest": { - "preset": "jest-expo" - }, - "dependencies": { - "react": "16.0.0-alpha.12", - "react-native": "^0.48.4" - }, - "devDependencies": { - "expo": "^21.0.0", - "autoprefixer": "^6.3.1", - "autoprefixer-loader": "^3.2.0", - "babel-core": "^6.4.5", - "babel-loader": "^6.2.1", - "babel-plugin-react-transform": "^2.0.0", - "babel-preset-es2015": "^6.3.13", - "babel-preset-react": "^6.3.13", - "css-loader": "^0.23.1", - "gulp": "^3.9.0", - "json-loader": "^0.5.4", - "less": "^2.5.3", - "less-loader": "^2.2.2", - "react-native-cli": "^0.1.10", - "react-transform-catch-errors": "^1.0.1", - "react-transform-hmr": "^1.0.1", - "redbox-react": "^1.3.2", - "redux": "^3.6.0", - "redux-devtools": "^3.3.1", - "redux-devtools-dock-monitor": "^1.1.1", - "redux-devtools-log-monitor": "^1.0.11", - "redux-logger": "^2.4.0", - "style-loader": "^0.13.0", - "webpack": "^1.12.12", - "webpack-dev-middleware": "^1.5.1", - "webpack-dev-server": "^1.14.1", - "webpack-hot-middleware": "^2.6.4" - } -} diff --git a/frontend/sponge/web/public/index.html b/frontend/sponge/web/public/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/sponge/web/webpack/web.dev.config.js b/frontend/sponge/web/webpack/web.dev.config.js deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/sponge/web/webpack/web.prod.config.js b/frontend/sponge/web/webpack/web.prod.config.js deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/tmpApp/.babelrc b/frontend/tmpApp/.babelrc deleted file mode 100644 index 2bcd546..0000000 --- a/frontend/tmpApp/.babelrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "presets": ["babel-preset-expo"], - "env": { - "development": { - "plugins": ["transform-react-jsx-source"] - } - } -} diff --git a/frontend/tmpApp/.flowconfig b/frontend/tmpApp/.flowconfig deleted file mode 100644 index 96d526a..0000000 --- a/frontend/tmpApp/.flowconfig +++ /dev/null @@ -1,63 +0,0 @@ -[ignore] -; We fork some components by platform -.*/*[.]android.js - -; Ignore "BUCK" generated dirs -/\.buckd/ - -; Ignore unexpected extra "@providesModule" -.*/node_modules/.*/node_modules/fbjs/.* - -; Ignore duplicate module providers -; For RN Apps installed via npm, "Libraries" folder is inside -; "node_modules/react-native" but in the source repo it is in the root -.*/Libraries/react-native/React.js -.*/Libraries/react-native/ReactNative.js - -; Additional create-react-native-app ignores - -; Ignore duplicate module providers -.*/node_modules/fbemitter/lib/* - -; Ignore misbehaving dev-dependencies -.*/node_modules/xdl/build/* -.*/node_modules/reqwest/tests/* - -; Ignore missing expo-sdk dependencies (temporarily) -; https://github.com/expo/expo/issues/162 -.*/node_modules/expo/src/* - -; Ignore react-native-fbads dependency of the expo sdk -.*/node_modules/react-native-fbads/* - -[include] - -[libs] -node_modules/react-native/Libraries/react-native/react-native-interface.js -node_modules/react-native/flow -flow/ - -[options] -module.system=haste - -emoji=true - -experimental.strict_type_args=true - -munge_underscores=true - -module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' - -suppress_type=$FlowIssue -suppress_type=$FlowFixMe -suppress_type=$FixMe - -suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) -suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ -suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy -suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError - -unsafe.enable_getters_and_setters=true - -[version] -^0.49.1 diff --git a/frontend/tmpApp/.gitignore b/frontend/tmpApp/.gitignore deleted file mode 100644 index 1025e17..0000000 --- a/frontend/tmpApp/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -.expo/ -npm-debug.* diff --git a/frontend/tmpApp/App.js b/frontend/tmpApp/App.js deleted file mode 100644 index 63798ee..0000000 --- a/frontend/tmpApp/App.js +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react'; -import { StyleSheet, Text, View } from 'react-native'; - -export default class App extends React.Component { - render() { - return ( - - Open up App.js to start working on your app! - Changes you make will automatically reload. - Shake your phone to open the developer menu. - test. - - ); - } -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: '#fff', - alignItems: 'center', - justifyContent: 'center', - }, -}); diff --git a/frontend/tmpApp/App.test.js b/frontend/tmpApp/App.test.js deleted file mode 100644 index fc6f975..0000000 --- a/frontend/tmpApp/App.test.js +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import App from './App'; - -import renderer from 'react-test-renderer'; - -it('renders without crashing', () => { - const rendered = renderer.create().toJSON(); - expect(rendered).toBeTruthy(); -}); diff --git a/frontend/tmpApp/README.md b/frontend/tmpApp/README.md deleted file mode 100644 index 6185052..0000000 --- a/frontend/tmpApp/README.md +++ /dev/null @@ -1,220 +0,0 @@ -This project was bootstrapped with [Create React Native App](https://github.com/react-community/create-react-native-app). - -Below you'll find information about performing common tasks. The most recent version of this guide is available [here](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/README.md). - -## Table of Contents - -* [Updating to New Releases](#updating-to-new-releases) -* [Available Scripts](#available-scripts) - * [npm start](#npm-start) - * [npm test](#npm-test) - * [npm run ios](#npm-run-ios) - * [npm run android](#npm-run-android) - * [npm run eject](#npm-run-eject) -* [Writing and Running Tests](#writing-and-running-tests) -* [Environment Variables](#environment-variables) - * [Configuring Packager IP Address](#configuring-packager-ip-address) -* [Adding Flow](#adding-flow) -* [Customizing App Display Name and Icon](#customizing-app-display-name-and-icon) -* [Sharing and Deployment](#sharing-and-deployment) - * [Publishing to Expo's React Native Community](#publishing-to-expos-react-native-community) - * [Building an Expo "standalone" app](#building-an-expo-standalone-app) - * [Ejecting from Create React Native App](#ejecting-from-create-react-native-app) - * [Build Dependencies (Xcode & Android Studio)](#build-dependencies-xcode-android-studio) - * [Should I Use ExpoKit?](#should-i-use-expokit) -* [Troubleshooting](#troubleshooting) - * [Networking](#networking) - * [iOS Simulator won't open](#ios-simulator-wont-open) - * [QR Code does not scan](#qr-code-does-not-scan) - -## Updating to New Releases - -You should only need to update the global installation of `create-react-native-app` very rarely, ideally never. - -Updating the `react-native-scripts` dependency of your app should be as simple as bumping the version number in `package.json` and reinstalling your project's dependencies. - -Upgrading to a new version of React Native requires updating the `react-native`, `react`, and `expo` package versions, and setting the correct `sdkVersion` in `app.json`. See the [versioning guide](https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md) for up-to-date information about package version compatibility. - -## Available Scripts - -If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing. - -### `npm start` - -Runs your app in development mode. - -Open it in the [Expo app](https://expo.io) on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal. - -Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the `--reset-cache` flag to the start script: - -``` -npm start -- --reset-cache -# or -yarn start -- --reset-cache -``` - -#### `npm test` - -Runs the [jest](https://github.com/facebook/jest) test runner on your tests. - -#### `npm run ios` - -Like `npm start`, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed. - -#### `npm run android` - -Like `npm start`, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html) for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of `adb` available to Create React Native App: - -##### Using Android Studio's `adb` - -1. Make sure that you can run adb from your terminal. -2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location). - -##### Using Genymotion's `adb` - -1. Find Genymotion’s copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`. -2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)). -3. Make sure that you can run adb from your terminal. - -#### `npm run eject` - -This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project. - -**Warning:** Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an [Xcode and/or Android Studio environment](https://facebook.github.io/react-native/docs/getting-started.html) set up. - -## Customizing App Display Name and Icon - -You can edit `app.json` to include [configuration keys](https://docs.expo.io/versions/latest/guides/configuration.html) under the `expo` key. - -To change your app's display name, set the `expo.name` key in `app.json` to an appropriate string. - -To set an app icon, set the `expo.icon` key in `app.json` to be either a local path or a URL. It's recommended that you use a 512x512 png file with transparency. - -## Writing and Running Tests - -This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test` extension to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/App.test.js) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/tutorial-react-native.html). - -## Environment Variables - -You can configure some of Create React Native App's behavior using environment variables. - -### Configuring Packager IP Address - -When starting your project, you'll see something like this for your project URL: - -``` -exp://192.168.0.2:19000 -``` - -The "manifest" at that URL tells the Expo app how to retrieve and load your app's JavaScript bundle, so even if you load it in the app via a URL like `exp://localhost:19000`, the Expo client app will still try to retrieve your app at the IP address that the start script provides. - -In some cases, this is less than ideal. This might be the case if you need to run your project inside of a virtual machine and you have to access the packager via a different IP address than the one which prints by default. In order to override the IP address or hostname that is detected by Create React Native App, you can specify your own hostname via the `REACT_NATIVE_PACKAGER_HOSTNAME` environment variable: - -Mac and Linux: - -``` -REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' npm start -``` - -Windows: -``` -set REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' -npm start -``` - -The above example would cause the development server to listen on `exp://my-custom-ip-address-or-hostname:19000`. - -## Adding Flow - -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. - -React Native works with [Flow](http://flowtype.org/) out of the box, as long as your Flow version matches the one used in the version of React Native. - -To add a local dependency to the correct Flow version to a Create React Native App project, follow these steps: - -1. Find the Flow `[version]` at the bottom of the included [.flowconfig](.flowconfig) -2. Run `npm install --save-dev flow-bin@x.y.z` (or `yarn add --dev flow-bin@x.y.z`), where `x.y.z` is the .flowconfig version number. -3. Add `"flow": "flow"` to the `scripts` section of your `package.json`. -4. Add `// @flow` to any files you want to type check (for example, to `App.js`). - -Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. -You can optionally use a [plugin for your IDE or editor](https://flow.org/en/docs/editors/) for a better integrated experience. - -To learn more about Flow, check out [its documentation](https://flow.org/). - -## Sharing and Deployment - -Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service. - -### Publishing to Expo's React Native Community - -Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account. - -Install the `exp` command-line tool, and run the publish command: - -``` -$ npm i -g exp -$ exp publish -``` - -### Building an Expo "standalone" app - -You can also use a service like [Expo's standalone builds](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html) if you want to get an IPA/APK for distribution without having to build the native code yourself. - -### Ejecting from Create React Native App - -If you want to build and deploy your app yourself, you'll need to eject from CRNA and use Xcode and Android Studio. - -This is usually as simple as running `npm run eject` in your project, which will walk you through the process. Make sure to install `react-native-cli` and follow the [native code getting started guide for React Native](https://facebook.github.io/react-native/docs/getting-started.html). - -#### Should I Use ExpoKit? - -If you have made use of Expo APIs while working on your project, then those API calls will stop working if you eject to a regular React Native project. If you want to continue using those APIs, you can eject to "React Native + ExpoKit" which will still allow you to build your own native code and continue using the Expo APIs. See the [ejecting guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) for more details about this option. - -## Troubleshooting - -### Networking - -If you're unable to load your app on your phone due to a network timeout or a refused connection, a good first step is to verify that your phone and computer are on the same network and that they can reach each other. Create React Native App needs access to ports 19000 and 19001 so ensure that your network and firewall settings allow access from your device to your computer on both of these ports. - -Try opening a web browser on your phone and opening the URL that the packager script prints, replacing `exp://` with `http://`. So, for example, if underneath the QR code in your terminal you see: - -``` -exp://192.168.0.1:19000 -``` - -Try opening Safari or Chrome on your phone and loading - -``` -http://192.168.0.1:19000 -``` - -and - -``` -http://192.168.0.1:19001 -``` - -If this works, but you're still unable to load your app by scanning the QR code, please open an issue on the [Create React Native App repository](https://github.com/react-community/create-react-native-app) with details about these steps and any other error messages you may have received. - -If you're not able to load the `http` URL in your phone's web browser, try using the tethering/mobile hotspot feature on your phone (beware of data usage, though), connecting your computer to that WiFi network, and restarting the packager. - -### iOS Simulator won't open - -If you're on a Mac, there are a few errors that users sometimes see when attempting to `npm run ios`: - -* "non-zero exit code: 107" -* "You may need to install Xcode" but it is already installed -* and others - -There are a few steps you may want to take to troubleshoot these kinds of errors: - -1. Make sure Xcode is installed and open it to accept the license agreement if it prompts you. You can install it from the Mac App Store. -2. Open Xcode's Preferences, the Locations tab, and make sure that the `Command Line Tools` menu option is set to something. Sometimes when the CLI tools are first installed by Homebrew this option is left blank, which can prevent Apple utilities from finding the simulator. Make sure to re-run `npm/yarn run ios` after doing so. -3. If that doesn't work, open the Simulator, and under the app menu select `Reset Contents and Settings...`. After that has finished, quit the Simulator, and re-run `npm/yarn run ios`. - -### QR Code does not scan - -If you're not able to scan the QR code, make sure your phone's camera is focusing correctly, and also make sure that the contrast on the two colors in your terminal is high enough. For example, WebStorm's default themes may [not have enough contrast](https://github.com/react-community/create-react-native-app/issues/49) for terminal QR codes to be scannable with the system barcode scanners that the Expo app uses. - -If this causes problems for you, you may want to try changing your terminal's color theme to have more contrast, or running Create React Native App from a different terminal. You can also manually enter the URL printed by the packager script in the Expo app's search bar to load it manually. diff --git a/frontend/tmpApp/app.json b/frontend/tmpApp/app.json deleted file mode 100644 index 732b7eb..0000000 --- a/frontend/tmpApp/app.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "expo": { - "sdkVersion": "21.0.0" - } -} diff --git a/frontend/tmpApp/package.json b/frontend/tmpApp/package.json deleted file mode 100644 index 9ea3a23..0000000 --- a/frontend/tmpApp/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "tmpApp", - "version": "0.1.0", - "private": true, - "devDependencies": { - "react-native-scripts": "1.5.0", - "jest-expo": "^21.0.2", - "react-test-renderer": "16.0.0-alpha.12" - }, - "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", - "scripts": { - "start": "react-native-scripts start", - "eject": "react-native-scripts eject", - "android": "react-native-scripts android", - "ios": "react-native-scripts ios", - "test": "node node_modules/jest/bin/jest.js --watch" - }, - "jest": { - "preset": "jest-expo" - }, - "dependencies": { - "expo": "^21.0.0", - "react": "16.0.0-alpha.12", - "react-native": "^0.48.4" - } -} \ No newline at end of file diff --git a/frontend/tmpApp/web/public/index.html b/frontend/tmpApp/web/public/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/tmpApp/web/webpack/web.dev.config.js b/frontend/tmpApp/web/webpack/web.dev.config.js deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/tmpApp/web/webpack/web.prod.config.js b/frontend/tmpApp/web/webpack/web.prod.config.js deleted file mode 100644 index e69de29..0000000 From 3eec7b511e044adf1d7d4154e8d6cbabf49db1c5 Mon Sep 17 00:00:00 2001 From: John Dingee Date: Sat, 7 Oct 2017 09:49:30 -0400 Subject: [PATCH 06/35] add two apps, one native, one web add hot loading on web --- .DS_Store | Bin 0 -> 6148 bytes .gitignore | 1 + frontend/.DS_Store | Bin 0 -> 6148 bytes frontend/README.md | 13 + frontend/native-sponge/.babelrc | 8 + frontend/native-sponge/.flowconfig | 63 + frontend/native-sponge/.gitignore | 3 + frontend/native-sponge/.watchmanconfig | 1 + frontend/native-sponge/App.js | 23 + frontend/native-sponge/App.test.js | 9 + frontend/native-sponge/README.md | 220 ++ frontend/native-sponge/app.json | 5 + frontend/native-sponge/package.json | 26 + frontend/web-sponge/.gitignore | 21 + frontend/web-sponge/README.md | 2164 +++++++++++++++++ frontend/web-sponge/package.json | 16 + frontend/web-sponge/public/favicon.ico | Bin 0 -> 3870 bytes frontend/web-sponge/public/index.html | 40 + frontend/web-sponge/public/manifest.json | 15 + frontend/web-sponge/src/App.css | 28 + frontend/web-sponge/src/App.js | 21 + frontend/web-sponge/src/App.test.js | 8 + frontend/web-sponge/src/index.css | 5 + frontend/web-sponge/src/index.js | 21 + frontend/web-sponge/src/logo.svg | 7 + .../web-sponge/src/registerServiceWorker.js | 108 + 26 files changed, 2826 insertions(+) create mode 100644 .DS_Store create mode 100644 frontend/.DS_Store create mode 100644 frontend/native-sponge/.babelrc create mode 100644 frontend/native-sponge/.flowconfig create mode 100644 frontend/native-sponge/.gitignore create mode 100644 frontend/native-sponge/.watchmanconfig create mode 100644 frontend/native-sponge/App.js create mode 100644 frontend/native-sponge/App.test.js create mode 100644 frontend/native-sponge/README.md create mode 100644 frontend/native-sponge/app.json create mode 100644 frontend/native-sponge/package.json create mode 100644 frontend/web-sponge/.gitignore create mode 100644 frontend/web-sponge/README.md create mode 100644 frontend/web-sponge/package.json create mode 100644 frontend/web-sponge/public/favicon.ico create mode 100644 frontend/web-sponge/public/index.html create mode 100644 frontend/web-sponge/public/manifest.json create mode 100644 frontend/web-sponge/src/App.css create mode 100644 frontend/web-sponge/src/App.js create mode 100644 frontend/web-sponge/src/App.test.js create mode 100644 frontend/web-sponge/src/index.css create mode 100644 frontend/web-sponge/src/index.js create mode 100644 frontend/web-sponge/src/logo.svg create mode 100644 frontend/web-sponge/src/registerServiceWorker.js diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..788834527f120de97920a9d81d5f817f11187bab GIT binary patch literal 6148 zcmeHKIc~#13?yS00@AolxnIZ+7KZZzf531Qrx7H;IcjzJc7}%m8ygpHQY1rwJ6e*n z3r!)4BBJY${!wHlA|2dNzHDjD^5%`*WyDbZjCXmFQTqPvd1$JC4j8wSgB)c7^Nhcr zrU8ex$(;1{D}o%@IR`j(Ewsnm7jrUDR*JIeD|@gra^s;>F8F zYamxDKm{%pSj2W^{r?GmW&Xb;aYqHHz@Jh;mz(WojaSOv+Ps|g+5+FfPlj4A$KtIR i=&cwVYsC*|b;X{MuZeS@(-C(%kUs*Z3yli=h63Nsxf`DV literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore index 88c331e..9d0d904 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ *.box .vagrant venv +*node_modules/ diff --git a/frontend/.DS_Store b/frontend/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..87d752b5911980bbd845e6ea3fccaf36bec1b5ba GIT binary patch literal 6148 zcmeHKOG*P#5UkcL0usp5<-33jZ!m=91YW>Tf(RiaB)XoJ=kjP)e-MU=3m0yr8oKMf zp00VkT1-y^u+`i47FYt9(;e~QVQT)|ePS1tF(RGsc*hPmIN}xkr22fqxeFZdfD>Lu z`~#k`+a90xkA1&CPgYh6NC7Dz1*Cu!__YGwduj8lL`5ke1*E{Y0{(qybjPl6NQ_Sh zLyQ2#8Pj20$1Fi?o*;IGLn1RYODZv`RwITbo%vREUEz?JbXW}^Rwr9cC>E#l{VmF2 zU815CkOE@`E_1u|{=cFBF#nH9+DQQ^@UIlG+4^q1;+3kmPA=!Yw$bnDUh_$J<2on| m(T<7Hj=Ax6d>utu*L= SpongeWeb + -> SpongeNative + +Sponge web has the actions, business logic etc needed to run the app with hot loading on the web + - bootstrapped with "react-create-app" +SpongeNative + - Bootstrapped with "create-react-native-app" + - not working on this currently, focusing first on the react app itself. + + The idea here is that once the web app is created, we can hook these two together, using the actions from the web to facilitate the development of the ios / android apps. + + - trying a number of approaches to get a front end build working - react-native create app ( sponge package ) diff --git a/frontend/native-sponge/.babelrc b/frontend/native-sponge/.babelrc new file mode 100644 index 0000000..2bcd546 --- /dev/null +++ b/frontend/native-sponge/.babelrc @@ -0,0 +1,8 @@ +{ + "presets": ["babel-preset-expo"], + "env": { + "development": { + "plugins": ["transform-react-jsx-source"] + } + } +} diff --git a/frontend/native-sponge/.flowconfig b/frontend/native-sponge/.flowconfig new file mode 100644 index 0000000..96d526a --- /dev/null +++ b/frontend/native-sponge/.flowconfig @@ -0,0 +1,63 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore "BUCK" generated dirs +/\.buckd/ + +; Ignore unexpected extra "@providesModule" +.*/node_modules/.*/node_modules/fbjs/.* + +; Ignore duplicate module providers +; For RN Apps installed via npm, "Libraries" folder is inside +; "node_modules/react-native" but in the source repo it is in the root +.*/Libraries/react-native/React.js +.*/Libraries/react-native/ReactNative.js + +; Additional create-react-native-app ignores + +; Ignore duplicate module providers +.*/node_modules/fbemitter/lib/* + +; Ignore misbehaving dev-dependencies +.*/node_modules/xdl/build/* +.*/node_modules/reqwest/tests/* + +; Ignore missing expo-sdk dependencies (temporarily) +; https://github.com/expo/expo/issues/162 +.*/node_modules/expo/src/* + +; Ignore react-native-fbads dependency of the expo sdk +.*/node_modules/react-native-fbads/* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow +flow/ + +[options] +module.system=haste + +emoji=true + +experimental.strict_type_args=true + +munge_underscores=true + +module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FixMe + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +unsafe.enable_getters_and_setters=true + +[version] +^0.49.1 diff --git a/frontend/native-sponge/.gitignore b/frontend/native-sponge/.gitignore new file mode 100644 index 0000000..1025e17 --- /dev/null +++ b/frontend/native-sponge/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.expo/ +npm-debug.* diff --git a/frontend/native-sponge/.watchmanconfig b/frontend/native-sponge/.watchmanconfig new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/frontend/native-sponge/.watchmanconfig @@ -0,0 +1 @@ +{} diff --git a/frontend/native-sponge/App.js b/frontend/native-sponge/App.js new file mode 100644 index 0000000..8d6286c --- /dev/null +++ b/frontend/native-sponge/App.js @@ -0,0 +1,23 @@ +import React from 'react'; +import { StyleSheet, Text, View } from 'react-native'; + +export default class App extends React.Component { + render() { + return ( + + Open up App.js to start working on your app! + Changes you make will automatically reload. + Shake your phone to open the developer menu. + + ); + } +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); diff --git a/frontend/native-sponge/App.test.js b/frontend/native-sponge/App.test.js new file mode 100644 index 0000000..fc6f975 --- /dev/null +++ b/frontend/native-sponge/App.test.js @@ -0,0 +1,9 @@ +import React from 'react'; +import App from './App'; + +import renderer from 'react-test-renderer'; + +it('renders without crashing', () => { + const rendered = renderer.create().toJSON(); + expect(rendered).toBeTruthy(); +}); diff --git a/frontend/native-sponge/README.md b/frontend/native-sponge/README.md new file mode 100644 index 0000000..6185052 --- /dev/null +++ b/frontend/native-sponge/README.md @@ -0,0 +1,220 @@ +This project was bootstrapped with [Create React Native App](https://github.com/react-community/create-react-native-app). + +Below you'll find information about performing common tasks. The most recent version of this guide is available [here](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/README.md). + +## Table of Contents + +* [Updating to New Releases](#updating-to-new-releases) +* [Available Scripts](#available-scripts) + * [npm start](#npm-start) + * [npm test](#npm-test) + * [npm run ios](#npm-run-ios) + * [npm run android](#npm-run-android) + * [npm run eject](#npm-run-eject) +* [Writing and Running Tests](#writing-and-running-tests) +* [Environment Variables](#environment-variables) + * [Configuring Packager IP Address](#configuring-packager-ip-address) +* [Adding Flow](#adding-flow) +* [Customizing App Display Name and Icon](#customizing-app-display-name-and-icon) +* [Sharing and Deployment](#sharing-and-deployment) + * [Publishing to Expo's React Native Community](#publishing-to-expos-react-native-community) + * [Building an Expo "standalone" app](#building-an-expo-standalone-app) + * [Ejecting from Create React Native App](#ejecting-from-create-react-native-app) + * [Build Dependencies (Xcode & Android Studio)](#build-dependencies-xcode-android-studio) + * [Should I Use ExpoKit?](#should-i-use-expokit) +* [Troubleshooting](#troubleshooting) + * [Networking](#networking) + * [iOS Simulator won't open](#ios-simulator-wont-open) + * [QR Code does not scan](#qr-code-does-not-scan) + +## Updating to New Releases + +You should only need to update the global installation of `create-react-native-app` very rarely, ideally never. + +Updating the `react-native-scripts` dependency of your app should be as simple as bumping the version number in `package.json` and reinstalling your project's dependencies. + +Upgrading to a new version of React Native requires updating the `react-native`, `react`, and `expo` package versions, and setting the correct `sdkVersion` in `app.json`. See the [versioning guide](https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md) for up-to-date information about package version compatibility. + +## Available Scripts + +If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing. + +### `npm start` + +Runs your app in development mode. + +Open it in the [Expo app](https://expo.io) on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal. + +Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the `--reset-cache` flag to the start script: + +``` +npm start -- --reset-cache +# or +yarn start -- --reset-cache +``` + +#### `npm test` + +Runs the [jest](https://github.com/facebook/jest) test runner on your tests. + +#### `npm run ios` + +Like `npm start`, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed. + +#### `npm run android` + +Like `npm start`, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html) for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of `adb` available to Create React Native App: + +##### Using Android Studio's `adb` + +1. Make sure that you can run adb from your terminal. +2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location). + +##### Using Genymotion's `adb` + +1. Find Genymotion’s copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`. +2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)). +3. Make sure that you can run adb from your terminal. + +#### `npm run eject` + +This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project. + +**Warning:** Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an [Xcode and/or Android Studio environment](https://facebook.github.io/react-native/docs/getting-started.html) set up. + +## Customizing App Display Name and Icon + +You can edit `app.json` to include [configuration keys](https://docs.expo.io/versions/latest/guides/configuration.html) under the `expo` key. + +To change your app's display name, set the `expo.name` key in `app.json` to an appropriate string. + +To set an app icon, set the `expo.icon` key in `app.json` to be either a local path or a URL. It's recommended that you use a 512x512 png file with transparency. + +## Writing and Running Tests + +This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test` extension to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/App.test.js) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/tutorial-react-native.html). + +## Environment Variables + +You can configure some of Create React Native App's behavior using environment variables. + +### Configuring Packager IP Address + +When starting your project, you'll see something like this for your project URL: + +``` +exp://192.168.0.2:19000 +``` + +The "manifest" at that URL tells the Expo app how to retrieve and load your app's JavaScript bundle, so even if you load it in the app via a URL like `exp://localhost:19000`, the Expo client app will still try to retrieve your app at the IP address that the start script provides. + +In some cases, this is less than ideal. This might be the case if you need to run your project inside of a virtual machine and you have to access the packager via a different IP address than the one which prints by default. In order to override the IP address or hostname that is detected by Create React Native App, you can specify your own hostname via the `REACT_NATIVE_PACKAGER_HOSTNAME` environment variable: + +Mac and Linux: + +``` +REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' npm start +``` + +Windows: +``` +set REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' +npm start +``` + +The above example would cause the development server to listen on `exp://my-custom-ip-address-or-hostname:19000`. + +## Adding Flow + +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. + +React Native works with [Flow](http://flowtype.org/) out of the box, as long as your Flow version matches the one used in the version of React Native. + +To add a local dependency to the correct Flow version to a Create React Native App project, follow these steps: + +1. Find the Flow `[version]` at the bottom of the included [.flowconfig](.flowconfig) +2. Run `npm install --save-dev flow-bin@x.y.z` (or `yarn add --dev flow-bin@x.y.z`), where `x.y.z` is the .flowconfig version number. +3. Add `"flow": "flow"` to the `scripts` section of your `package.json`. +4. Add `// @flow` to any files you want to type check (for example, to `App.js`). + +Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. +You can optionally use a [plugin for your IDE or editor](https://flow.org/en/docs/editors/) for a better integrated experience. + +To learn more about Flow, check out [its documentation](https://flow.org/). + +## Sharing and Deployment + +Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service. + +### Publishing to Expo's React Native Community + +Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account. + +Install the `exp` command-line tool, and run the publish command: + +``` +$ npm i -g exp +$ exp publish +``` + +### Building an Expo "standalone" app + +You can also use a service like [Expo's standalone builds](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html) if you want to get an IPA/APK for distribution without having to build the native code yourself. + +### Ejecting from Create React Native App + +If you want to build and deploy your app yourself, you'll need to eject from CRNA and use Xcode and Android Studio. + +This is usually as simple as running `npm run eject` in your project, which will walk you through the process. Make sure to install `react-native-cli` and follow the [native code getting started guide for React Native](https://facebook.github.io/react-native/docs/getting-started.html). + +#### Should I Use ExpoKit? + +If you have made use of Expo APIs while working on your project, then those API calls will stop working if you eject to a regular React Native project. If you want to continue using those APIs, you can eject to "React Native + ExpoKit" which will still allow you to build your own native code and continue using the Expo APIs. See the [ejecting guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) for more details about this option. + +## Troubleshooting + +### Networking + +If you're unable to load your app on your phone due to a network timeout or a refused connection, a good first step is to verify that your phone and computer are on the same network and that they can reach each other. Create React Native App needs access to ports 19000 and 19001 so ensure that your network and firewall settings allow access from your device to your computer on both of these ports. + +Try opening a web browser on your phone and opening the URL that the packager script prints, replacing `exp://` with `http://`. So, for example, if underneath the QR code in your terminal you see: + +``` +exp://192.168.0.1:19000 +``` + +Try opening Safari or Chrome on your phone and loading + +``` +http://192.168.0.1:19000 +``` + +and + +``` +http://192.168.0.1:19001 +``` + +If this works, but you're still unable to load your app by scanning the QR code, please open an issue on the [Create React Native App repository](https://github.com/react-community/create-react-native-app) with details about these steps and any other error messages you may have received. + +If you're not able to load the `http` URL in your phone's web browser, try using the tethering/mobile hotspot feature on your phone (beware of data usage, though), connecting your computer to that WiFi network, and restarting the packager. + +### iOS Simulator won't open + +If you're on a Mac, there are a few errors that users sometimes see when attempting to `npm run ios`: + +* "non-zero exit code: 107" +* "You may need to install Xcode" but it is already installed +* and others + +There are a few steps you may want to take to troubleshoot these kinds of errors: + +1. Make sure Xcode is installed and open it to accept the license agreement if it prompts you. You can install it from the Mac App Store. +2. Open Xcode's Preferences, the Locations tab, and make sure that the `Command Line Tools` menu option is set to something. Sometimes when the CLI tools are first installed by Homebrew this option is left blank, which can prevent Apple utilities from finding the simulator. Make sure to re-run `npm/yarn run ios` after doing so. +3. If that doesn't work, open the Simulator, and under the app menu select `Reset Contents and Settings...`. After that has finished, quit the Simulator, and re-run `npm/yarn run ios`. + +### QR Code does not scan + +If you're not able to scan the QR code, make sure your phone's camera is focusing correctly, and also make sure that the contrast on the two colors in your terminal is high enough. For example, WebStorm's default themes may [not have enough contrast](https://github.com/react-community/create-react-native-app/issues/49) for terminal QR codes to be scannable with the system barcode scanners that the Expo app uses. + +If this causes problems for you, you may want to try changing your terminal's color theme to have more contrast, or running Create React Native App from a different terminal. You can also manually enter the URL printed by the packager script in the Expo app's search bar to load it manually. diff --git a/frontend/native-sponge/app.json b/frontend/native-sponge/app.json new file mode 100644 index 0000000..732b7eb --- /dev/null +++ b/frontend/native-sponge/app.json @@ -0,0 +1,5 @@ +{ + "expo": { + "sdkVersion": "21.0.0" + } +} diff --git a/frontend/native-sponge/package.json b/frontend/native-sponge/package.json new file mode 100644 index 0000000..5a1eb00 --- /dev/null +++ b/frontend/native-sponge/package.json @@ -0,0 +1,26 @@ +{ + "name": "native-sponge", + "version": "0.1.0", + "private": true, + "devDependencies": { + "react-native-scripts": "1.5.0", + "jest-expo": "^21.0.2", + "react-test-renderer": "16.0.0-alpha.12" + }, + "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", + "scripts": { + "start": "react-native-scripts start", + "eject": "react-native-scripts eject", + "android": "react-native-scripts android", + "ios": "react-native-scripts ios", + "test": "node node_modules/jest/bin/jest.js --watch" + }, + "jest": { + "preset": "jest-expo" + }, + "dependencies": { + "expo": "^21.0.0", + "react": "16.0.0-alpha.12", + "react-native": "^0.48.4" + } +} diff --git a/frontend/web-sponge/.gitignore b/frontend/web-sponge/.gitignore new file mode 100644 index 0000000..d30f40e --- /dev/null +++ b/frontend/web-sponge/.gitignore @@ -0,0 +1,21 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/frontend/web-sponge/README.md b/frontend/web-sponge/README.md new file mode 100644 index 0000000..98e26c9 --- /dev/null +++ b/frontend/web-sponge/README.md @@ -0,0 +1,2164 @@ +This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). + +Below you will find some information on how to perform common tasks.
+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). + +## Table of Contents + +- [Updating to New Releases](#updating-to-new-releases) +- [Sending Feedback](#sending-feedback) +- [Folder Structure](#folder-structure) +- [Available Scripts](#available-scripts) + - [npm start](#npm-start) + - [npm test](#npm-test) + - [npm run build](#npm-run-build) + - [npm run eject](#npm-run-eject) +- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills) +- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor) +- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor) +- [Debugging in the Editor](#debugging-in-the-editor) +- [Formatting Code Automatically](#formatting-code-automatically) +- [Changing the Page ``](#changing-the-page-title) +- [Installing a Dependency](#installing-a-dependency) +- [Importing a Component](#importing-a-component) +- [Code Splitting](#code-splitting) +- [Adding a Stylesheet](#adding-a-stylesheet) +- [Post-Processing CSS](#post-processing-css) +- [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc) +- [Adding Images, Fonts, and Files](#adding-images-fonts-and-files) +- [Using the `public` Folder](#using-the-public-folder) + - [Changing the HTML](#changing-the-html) + - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system) + - [When to Use the `public` Folder](#when-to-use-the-public-folder) +- [Using Global Variables](#using-global-variables) +- [Adding Bootstrap](#adding-bootstrap) + - [Using a Custom Theme](#using-a-custom-theme) +- [Adding Flow](#adding-flow) +- [Adding Custom Environment Variables](#adding-custom-environment-variables) + - [Referencing Environment Variables in the HTML](#referencing-environment-variables-in-the-html) + - [Adding Temporary Environment Variables In Your Shell](#adding-temporary-environment-variables-in-your-shell) + - [Adding Development Environment Variables In `.env`](#adding-development-environment-variables-in-env) +- [Can I Use Decorators?](#can-i-use-decorators) +- [Integrating with an API Backend](#integrating-with-an-api-backend) + - [Node](#node) + - [Ruby on Rails](#ruby-on-rails) +- [Proxying API Requests in Development](#proxying-api-requests-in-development) + - ["Invalid Host Header" Errors After Configuring Proxy](#invalid-host-header-errors-after-configuring-proxy) + - [Configuring the Proxy Manually](#configuring-the-proxy-manually) + - [Configuring a WebSocket Proxy](#configuring-a-websocket-proxy) +- [Using HTTPS in Development](#using-https-in-development) +- [Generating Dynamic `<meta>` Tags on the Server](#generating-dynamic-meta-tags-on-the-server) +- [Pre-Rendering into Static HTML Files](#pre-rendering-into-static-html-files) +- [Injecting Data from the Server into the Page](#injecting-data-from-the-server-into-the-page) +- [Running Tests](#running-tests) + - [Filename Conventions](#filename-conventions) + - [Command Line Interface](#command-line-interface) + - [Version Control Integration](#version-control-integration) + - [Writing Tests](#writing-tests) + - [Testing Components](#testing-components) + - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) + - [Initializing Test Environment](#initializing-test-environment) + - [Focusing and Excluding Tests](#focusing-and-excluding-tests) + - [Coverage Reporting](#coverage-reporting) + - [Continuous Integration](#continuous-integration) + - [Disabling jsdom](#disabling-jsdom) + - [Snapshot Testing](#snapshot-testing) + - [Editor Integration](#editor-integration) +- [Developing Components in Isolation](#developing-components-in-isolation) + - [Getting Started with Storybook](#getting-started-with-storybook) + - [Getting Started with Styleguidist](#getting-started-with-styleguidist) +- [Making a Progressive Web App](#making-a-progressive-web-app) + - [Opting Out of Caching](#opting-out-of-caching) + - [Offline-First Considerations](#offline-first-considerations) + - [Progressive Web App Metadata](#progressive-web-app-metadata) +- [Analyzing the Bundle Size](#analyzing-the-bundle-size) +- [Deployment](#deployment) + - [Static Server](#static-server) + - [Other Solutions](#other-solutions) + - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) + - [Building for Relative Paths](#building-for-relative-paths) + - [Azure](#azure) + - [Firebase](#firebase) + - [GitHub Pages](#github-pages) + - [Heroku](#heroku) + - [Netlify](#netlify) + - [Now](#now) + - [S3 and CloudFront](#s3-and-cloudfront) + - [Surge](#surge) +- [Advanced Configuration](#advanced-configuration) +- [Troubleshooting](#troubleshooting) + - [`npm start` doesn’t detect changes](#npm-start-doesnt-detect-changes) + - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra) + - [`npm run build` exits too early](#npm-run-build-exits-too-early) + - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku) + - [`npm run build` fails to minify](#npm-run-build-fails-to-minify) + - [Moment.js locales are missing](#momentjs-locales-are-missing) +- [Something Missing?](#something-missing) + +## Updating to New Releases + +Create React App is divided into two packages: + +* `create-react-app` is a global command-line utility that you use to create new projects. +* `react-scripts` is a development dependency in the generated projects (including this one). + +You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`. + +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. + +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. + +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. + +We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly. + +## Sending Feedback + +We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues). + +## Folder Structure + +After creation, your project should look like this: + +``` +my-app/ + README.md + node_modules/ + package.json + public/ + index.html + favicon.ico + src/ + App.css + App.js + App.test.js + index.css + index.js + logo.svg +``` + +For the project to build, **these files must exist with exact filenames**: + +* `public/index.html` is the page template; +* `src/index.js` is the JavaScript entry point. + +You can delete or rename the other files. + +You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.<br> +You need to **put any JS and CSS files inside `src`**, otherwise Webpack won’t see them. + +Only files inside `public` can be used from `public/index.html`.<br> +Read instructions below for using assets from JavaScript and HTML. + +You can, however, create more top-level directories.<br> +They will not be included in the production build so you can use them for things like documentation. + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.<br> +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.<br> +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.<br> +See the section about [running tests](#running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.<br> +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.<br> +Your app is ready to be deployed! + +See the section about [deployment](#deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +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. + +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. + +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. + +## Supported Language Features and Polyfills + +This project supports a superset of the latest JavaScript standard.<br> +In addition to [ES6](https://github.com/lukehoban/es6features) syntax features, it also supports: + +* [Exponentiation Operator](https://github.com/rwaldron/exponentiation-operator) (ES2016). +* [Async/await](https://github.com/tc39/ecmascript-asyncawait) (ES2017). +* [Object Rest/Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread) (stage 3 proposal). +* [Dynamic import()](https://github.com/tc39/proposal-dynamic-import) (stage 3 proposal) +* [Class Fields and Static Properties](https://github.com/tc39/proposal-class-public-fields) (part of stage 3 proposal). +* [JSX](https://facebook.github.io/react/docs/introducing-jsx.html) and [Flow](https://flowtype.org/) syntax. + +Learn more about [different proposal stages](https://babeljs.io/docs/plugins/#presets-stage-x-experimental-presets-). + +While we recommend to use 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. + +Note that **the project only includes a few ES6 [polyfills](https://en.wikipedia.org/wiki/Polyfill)**: + +* [`Object.assign()`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) via [`object-assign`](https://github.com/sindresorhus/object-assign). +* [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) via [`promise`](https://github.com/then/promise). +* [`fetch()`](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) via [`whatwg-fetch`](https://github.com/github/fetch). + +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. + +## Syntax Highlighting in the Editor + +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. + +## Displaying Lint Output in the Editor + +>Note: this feature is available with `react-scripts@0.2.0` and higher.<br> +>It also only works with npm 3 or higher. + +Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint. + +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. + +You would need to install an ESLint plugin for your editor first. Then, add a file called `.eslintrc` to the project root: + +```js +{ + "extends": "react-app" +} +``` + +Now your editor should report the linting warnings. + +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. + +If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules. + +## Debugging in the Editor + +**This feature is currently only supported by [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/).** + +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. + +### Visual Studio Code + +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. + +Then add the block below to your `launch.json` file and put it inside the `.vscode` folder in your app’s root directory. + +```json +{ + "version": "0.2.0", + "configurations": [{ + "name": "Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceRoot}/src", + "userDataDir": "${workspaceRoot}/.vscode/chrome", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } + }] +} +``` +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +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. + +### WebStorm + +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. + +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. + +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +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. + +The same way you can debug your application in IntelliJ IDEA Ultimate, PhpStorm, PyCharm Pro, and RubyMine. + +## Formatting Code Automatically + +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/). + +To format our code whenever we make a commit in git, we need to install the following dependencies: + +```sh +npm install --save husky lint-staged prettier +``` + +Alternatively you may use `yarn`: + +```sh +yarn add husky lint-staged prettier +``` + +* `husky` makes it easy to use githooks as if they are npm scripts. +* `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). +* `prettier` is the JavaScript formatter we will run before commits. + +Now we can make sure every file is formatted correctly by adding a few lines to the `package.json` in the project root. + +Add the following line to `scripts` section: + +```diff + "scripts": { ++ "precommit": "lint-staged", + "start": "react-scripts start", + "build": "react-scripts build", +``` + +Next we add a 'lint-staged' field to the `package.json`, for example: + +```diff + "dependencies": { + // ... + }, ++ "lint-staged": { ++ "src/**/*.{js,jsx,json,css}": [ ++ "prettier --single-quote --write", ++ "git add" ++ ] ++ }, + "scripts": { +``` + +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}"` to format your entire project for the first time. + +Next you might want to integrate Prettier in your favorite editor. Read the section on [Editor Integration](https://github.com/prettier/prettier#editor-integration) on the Prettier GitHub page. + +## Changing the Page `<title>` + +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. + +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. + +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. + +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). + +## Installing a Dependency + +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`: + +```sh +npm install --save react-router +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-router +``` + +This works for any library, not just `react-router`. + +## Importing a Component + +This project setup supports ES6 modules thanks to Babel.<br> +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. + +For example: + +### `Button.js` + +```js +import React, { Component } from 'react'; + +class Button extends Component { + render() { + // ... + } +} + +export default Button; // Don’t forget to use export default! +``` + +### `DangerButton.js` + + +```js +import React, { Component } from 'react'; +import Button from './Button'; // Import a component from another file + +class DangerButton extends Component { + render() { + return <Button color="red" />; + } +} + +export default DangerButton; +``` + +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. + +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'`. + +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. + +Learn more about ES6 modules: + +* [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) +* [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html) +* [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules) + +## Code Splitting + +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. + +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. + +Here is an example: + +### `moduleA.js` + +```js +const moduleA = 'Hello'; + +export { moduleA }; +``` +### `App.js` + +```js +import React, { Component } from 'react'; + +class App extends Component { + handleClick = () => { + import('./moduleA') + .then(({ moduleA }) => { + // Use moduleA + }) + .catch(err => { + // Handle failure + }); + }; + + render() { + return ( + <div> + <button onClick={this.handleClick}>Load</button> + </div> + ); + } +} + +export default App; +``` + +This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button. + +You can also use it with `async` / `await` syntax if you prefer it. + +### With React Router + +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). + +## Adding a Stylesheet + +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**: + +### `Button.css` + +```css +.Button { + padding: 20px; +} +``` + +### `Button.js` + +```js +import React, { Component } from 'react'; +import './Button.css'; // Tell Webpack that Button.js uses these styles + +class Button extends Component { + render() { + // You can use them as regular CSS styles + return <div className="Button" />; + } +} +``` + +**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. + +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. + +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. + +## Post-Processing CSS + +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. + +For example, this: + +```css +.App { + display: flex; + flex-direction: row; + align-items: center; +} +``` + +becomes this: + +```css +.App { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +``` + +If you need to disable autoprefixing for some reason, [follow this section](https://github.com/postcss/autoprefixer#disabling). + +## Adding a CSS Preprocessor (Sass, Less etc.) + +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)). + +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. + +First, let’s install the command-line interface for Sass: + +```sh +npm install --save node-sass-chokidar +``` + +Alternatively you may use `yarn`: + +```sh +yarn add node-sass-chokidar +``` + +Then in `package.json`, add the following lines to `scripts`: + +```diff + "scripts": { ++ "build-css": "node-sass-chokidar src/ -o src/", ++ "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --env=jsdom", +``` + +>Note: To use a different preprocessor, replace `build-css` and `watch-css` commands according to your preprocessor’s documentation. + +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. + +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. + +To enable importing files without using relative paths, you can add the `--include-path` option to the command in `package.json`. + +``` +"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/", +"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive", +``` + +This will allow you to do imports like + +```scss +@import 'styles/_colors.scss'; // assuming a styles directory under src/ +@import 'nprogress/nprogress'; // importing a css file from the nprogress node module +``` + +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. + +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: + +```sh +npm install --save npm-run-all +``` + +Alternatively you may use `yarn`: + +```sh +yarn add npm-run-all +``` + +Then we can change `start` and `build` scripts to include the CSS preprocessor commands: + +```diff + "scripts": { + "build-css": "node-sass-chokidar src/ -o src/", + "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", +- "start": "react-scripts start", +- "build": "react-scripts build", ++ "start-js": "react-scripts start", ++ "start": "npm-run-all -p watch-css start-js", ++ "build": "npm run build-css && react-scripts build", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject" + } +``` + +Now running `npm start` and `npm run build` also builds Sass files. + +**Why `node-sass-chokidar`?** + +`node-sass` has been reported as having the following issues: + +- `node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker. + +- Infinite styles compiling [#1939](https://github.com/facebookincubator/create-react-app/issues/1939) + +- `node-sass` has been reported as having issues with detecting new files in a directory [#1891](https://github.com/sass/node-sass/issues/1891) + + `node-sass-chokidar` is used here as it addresses these issues. + +## Adding Images, Fonts, and Files + +With Webpack, using static assets like images and fonts works similarly to CSS. + +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. + +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). + +Here is an example: + +```js +import React from 'react'; +import logo from './logo.png'; // Tell Webpack this JS file uses this image + +console.log(logo); // /logo.84287d09.png + +function Header() { + // Import result is the URL of your image + return <img src={logo} alt="Logo" />; +} + +export default Header; +``` + +This ensures that when the project is built, Webpack will correctly move the images into the build folder, and provide us with correct paths. + +This works in CSS too: + +```css +.Logo { + background-image: url(./logo.png); +} +``` + +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. + +Please be advised that this is also a custom feature of Webpack. + +**It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).<br> +An alternative way of handling static assets is described in the next section. + +## Using the `public` Folder + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +### Changing the HTML + +The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title). +The `<script>` tag with the compiled code will be added to it automatically during the build process. + +### Adding Assets Outside of the Module System + +You can also add other assets to the `public` folder. + +Note that we normally encourage you to `import` assets in JavaScript files instead. +For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-fonts-and-files). +This mechanism provides a number of benefits: + +* Scripts and stylesheets get minified and bundled together to avoid extra network requests. +* Missing files cause compilation errors instead of 404 errors for your users. +* Result filenames include content hashes so you don’t need to worry about browsers caching their old versions. + +However there is an **escape hatch** that you can use to add an asset outside of the module system. + +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`. + +Inside `index.html`, you can use it like this: + +```html +<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> +``` + +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. + +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. + +In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes: + +```js +render() { + // Note: this is an escape hatch and should be used sparingly! + // Normally we recommend using `import` for getting asset URLs + // as described in “Adding Images and Fonts” above this section. + return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />; +} +``` + +Keep in mind the downsides of this approach: + +* None of the files in `public` folder get post-processed or minified. +* Missing files will not be called at compilation time, and will cause 404 errors for your users. +* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change. + +### When to Use the `public` Folder + +Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-fonts-and-files) from JavaScript. +The `public` folder is useful as a workaround for a number of less common cases: + +* 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). +* You have thousands of images and need to dynamically reference their paths. +* You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code. +* Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag. + +Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them. + +## Using Global Variables + +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. + +You can avoid this by reading the global variable explicitly from the `window` object, for example: + +```js +const $ = window.$; +``` + +This makes it obvious you are using a global variable intentionally rather than because of a typo. + +Alternatively, you can force the linter to ignore any line by adding `// eslint-disable-line` after it. + +## Adding Bootstrap + +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: + +Install React Bootstrap and Bootstrap from npm. React Bootstrap does not include Bootstrap CSS so this needs to be installed as well: + +```sh +npm install --save react-bootstrap bootstrap@3 +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-bootstrap bootstrap@3 +``` + +Import Bootstrap CSS and optionally Bootstrap theme CSS in the beginning of your ```src/index.js``` file: + +```js +import 'bootstrap/dist/css/bootstrap.css'; +import 'bootstrap/dist/css/bootstrap-theme.css'; +// Put any other imports below so that CSS from your +// components takes precedence over default styles. +``` + +Import required React Bootstrap components within ```src/App.js``` file or your custom component files: + +```js +import { Navbar, Jumbotron, Button } from 'react-bootstrap'; +``` + +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. + +### Using a Custom Theme + +Sometimes you might need to tweak the visual styles of Bootstrap (or equivalent package).<br> +We suggest the following approach: + +* Create a new package that depends on the package you wish to customize, e.g. Bootstrap. +* Add the necessary build steps to tweak the theme, and publish your package on npm. +* Install your own theme npm package as a dependency of your app. + +Here is an example of adding a [customized Bootstrap](https://medium.com/@tacomanator/customizing-create-react-app-aa9ffb88165) that follows these steps. + +## Adding Flow + +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. + +Recent versions of [Flow](http://flowtype.org/) work with Create React App projects out of the box. + +To add Flow to a Create React App project, follow these steps: + +1. Run `npm install --save flow-bin` (or `yarn add flow-bin`). +2. Add `"flow": "flow"` to the `scripts` section of your `package.json`. +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. +4. Add `// @flow` to any files you want to type check (for example, to `src/App.js`). + +Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. +You can optionally use an IDE like [Nuclide](https://nuclide.io/docs/languages/flow/) for a better integrated experience. +In the future we plan to integrate it into Create React App even more closely. + +To learn more about Flow, check out [its documentation](https://flowtype.org/). + +## Adding Custom Environment Variables + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +Your project can consume variables declared in your environment as if they were declared locally in your JS files. By +default you will have `NODE_ENV` defined for you, and any other environment variables starting with +`REACT_APP_`. + +**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. + +>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. + +These environment variables will be defined for you on `process.env`. For example, having an environment +variable named `REACT_APP_SECRET_CODE` will be exposed in your JS as `process.env.REACT_APP_SECRET_CODE`. + +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. + +These environment variables can be useful for displaying information conditionally based on where the project is +deployed or consuming sensitive data that lives outside of version control. + +First, you need to have environment variables defined. For example, let’s say you wanted to consume a secret defined +in the environment inside a `<form>`: + +```jsx +render() { + return ( + <div> + <small>You are running this application in <b>{process.env.NODE_ENV}</b> mode.</small> + <form> + <input type="hidden" defaultValue={process.env.REACT_APP_SECRET_CODE} /> + </form> + </div> + ); +} +``` + +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. + +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`: + +```html +<div> + <small>You are running this application in <b>development</b> mode.</small> + <form> + <input type="hidden" value="abcdef" /> + </form> +</div> +``` + +The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this +value, we need to have it defined in the environment. This can be done using two ways: either in your shell or in +a `.env` file. Both of these ways are described in the next few sections. + +Having access to the `NODE_ENV` is also useful for performing actions conditionally: + +```js +if (process.env.NODE_ENV !== 'production') { + analytics.disable(); +} +``` + +When you compile the app with `npm run build`, the minification step will strip out this condition, and the resulting bundle will be smaller. + +### Referencing Environment Variables in the HTML + +>Note: this feature is available with `react-scripts@0.9.0` and higher. + +You can also access the environment variables starting with `REACT_APP_` in the `public/index.html`. For example: + +```html +<title>%REACT_APP_WEBSITE_NAME% +``` + +Note that the caveats from the above section apply: + +* Apart from a few built-in variables (`NODE_ENV` and `PUBLIC_URL`), variable names must start with `REACT_APP_` to work. +* 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). + +### Adding Temporary Environment Variables In Your Shell + +Defining environment variables can vary between OSes. It’s also important to know that this manner is temporary for the +life of the shell session. + +#### Windows (cmd.exe) + +```cmd +set REACT_APP_SECRET_CODE=abcdef&&npm start +``` + +(Note: the lack of whitespace is intentional.) + +#### Linux, macOS (Bash) + +```bash +REACT_APP_SECRET_CODE=abcdef npm start +``` + +### Adding Development Environment Variables In `.env` + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +To define permanent environment variables, create a file called `.env` in the root of your project: + +``` +REACT_APP_SECRET_CODE=abcdef +``` + +`.env` files **should be** checked into source control (with the exclusion of `.env*.local`). + +#### What other `.env` files are can be used? + +>Note: this feature is **available with `react-scripts@1.0.0` and higher**. + +* `.env`: Default. +* `.env.local`: Local overrides. **This file is loaded for all environments except test.** +* `.env.development`, `.env.test`, `.env.production`: Environment-specific settings. +* `.env.development.local`, `.env.test.local`, `.env.production.local`: Local overrides of environment-specific settings. + +Files on the left have more priority than files on the right: + +* `npm start`: `.env.development.local`, `.env.development`, `.env.local`, `.env` +* `npm run build`: `.env.production.local`, `.env.production`, `.env.local`, `.env` +* `npm test`: `.env.test.local`, `.env.test`, `.env` (note `.env.local` is missing) + +These variables will act as the defaults if the machine does not explicitly set them.
+Please refer to the [dotenv documentation](https://github.com/motdotla/dotenv) for more details. + +>Note: If you are defining environment variables for development, your CI and/or hosting platform will most likely need +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). + +## Can I Use Decorators? + +Many popular libraries use [decorators](https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841) in their documentation.
+Create React App doesn’t support decorator syntax at the moment because: + +* It is an experimental proposal and is subject to change. +* The current specification version is not officially supported by Babel. +* If the specification changes, we won’t be able to write a codemod because we don’t use them internally at Facebook. + +However in many cases you can rewrite decorator-based code without decorators just as fine.
+Please refer to these two threads for reference: + +* [#214](https://github.com/facebookincubator/create-react-app/issues/214) +* [#411](https://github.com/facebookincubator/create-react-app/issues/411) + +Create React App will add decorator support when the specification advances to a stable stage. + +## Integrating with an API Backend + +These tutorials will help you to integrate your app with an API backend running on another port, +using `fetch()` to access it. + +### Node +Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo). + +### Ruby on Rails + +Check out [this tutorial](https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo-rails). + +## Proxying API Requests in Development + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +People often serve the front-end React app from the same host and port as their backend implementation.
+For example, a production setup might look like this after the app is deployed: + +``` +/ - static server returns index.html with React app +/todos - static server returns index.html with React app +/api/todos - server handles any /api/* requests using the backend implementation +``` + +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. + +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: + +```js + "proxy": "http://localhost:4000", +``` + +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 a `text/html` accept header to the proxy. + +Conveniently, this avoids [CORS issues](http://stackoverflow.com/questions/21854516/understanding-ajax-cors-and-security-considerations) and error messages like this in development: + +``` +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. +``` + +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`. + +The `proxy` option supports HTTP, HTTPS and WebSocket connections.
+If the `proxy` option is **not** flexible enough for you, alternatively you can: + +* [Configure the proxy yourself](#configuring-the-proxy-manually) +* Enable CORS on your server ([here’s how to do it for Express](http://enable-cors.org/server_expressjs.html)). +* Use [environment variables](#adding-custom-environment-variables) to inject the right server host and port into your app. + +### "Invalid Host Header" Errors After Configuring Proxy + +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). + +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: + +>Invalid Host header + +To work around it, you can specify your public development host in a file called `.env.development` in the root of your project: + +``` +HOST=mypublicdevhost.com +``` + +If you restart the development server now and load the app from the specified host, it should work. + +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:** + +``` +# NOTE: THIS IS DANGEROUS! +# It exposes your machine to attacks from the websites you visit. +DANGEROUSLY_DISABLE_HOST_CHECK=true +``` + +We don’t recommend this approach. + +### Configuring the Proxy Manually + +>Note: this feature is available with `react-scripts@1.0.0` and higher. + +If the `proxy` option is **not** flexible enough for you, you can specify an object in the following form (in `package.json`).
+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. +```js +{ + // ... + "proxy": { + "/api": { + "target": "", + "ws": true + // ... + } + } + // ... +} +``` + +All requests matching this path will be proxies, no exceptions. This includes requests for `text/html`, which the standard `proxy` option does not proxy. + +If you need to specify multiple proxies, you may do so by specifying additional entries. +You may also narrow down matches using `*` and/or `**`, to match the path exactly or any subpath. +```js +{ + // ... + "proxy": { + // Matches any request starting with /api + "/api": { + "target": "", + "ws": true + // ... + }, + // Matches any request starting with /foo + "/foo": { + "target": "", + "ssl": true, + "pathRewrite": { + "^/foo": "/foo/beta" + } + // ... + }, + // Matches /bar/abc.html but not /bar/sub/def.html + "/bar/*.html": { + "target": "", + // ... + }, + // Matches /baz/abc.html and /baz/sub/def.html + "/baz/**/*.html": { + "target": "" + // ... + } + } + // ... +} +``` + +### Configuring a WebSocket Proxy + +When setting up a WebSocket proxy, there are a some extra considerations to be aware of. + +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). + +There’s some good documentation available for [setting up a Socket.io server](https://socket.io/docs/). + +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). + +Either way, you can proxy WebSocket requests manually in `package.json`: + +```js +{ + // ... + "proxy": { + "/socket": { + // Your compatible WebSocket server + "target": "ws://", + // Tell http-proxy-middleware that this is a WebSocket proxy. + // Also allows you to proxy WebSocket requests without an additional HTTP request + // https://github.com/chimurai/http-proxy-middleware#external-websocket-upgrade + "ws": true + // ... + } + } + // ... +} +``` + +## Using HTTPS in Development + +>Note: this feature is available with `react-scripts@0.4.0` and higher. + +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. + +To do this, set the `HTTPS` environment variable to `true`, then start the dev server as usual with `npm start`: + +#### Windows (cmd.exe) + +```cmd +set HTTPS=true&&npm start +``` + +(Note: the lack of whitespace is intentional.) + +#### Linux, macOS (Bash) + +```bash +HTTPS=true npm start +``` + +Note that the server will use a self-signed certificate, so your web browser will almost definitely display a warning upon accessing the page. + +## Generating Dynamic `` Tags on the Server + +Since Create React App doesn’t support server rendering, you might be wondering how to make `` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this: + +```html + + + + + +``` + +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! + +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. + +## Pre-Rendering into Static HTML Files + +If you’re hosting your `build` with a static hosting provider you can use [react-snapshot](https://www.npmjs.com/package/react-snapshot) 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. + +There are also opportunities to use this outside of static hosting, to take the pressure off the server when generating and caching routes. + +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. + +You can read more about [zero-configuration pre-rendering (also called snapshotting) here](https://medium.com/superhighfives/an-almost-static-stack-6df0a2791319). + +## Injecting Data from the Server into the Page + +Similarly to the previous section, you can leave some placeholders in the HTML that inject global variables, for example: + +```js + + + + +``` + +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.** + +## Running Tests + +>Note: this feature is available with `react-scripts@0.3.0` and higher.
+>[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) + +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. + +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. + +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. + +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. + +### Filename Conventions + +Jest will look for test files with any of the following popular naming conventions: + +* Files with `.js` suffix in `__tests__` folders. +* Files with `.test.js` suffix. +* Files with `.spec.js` suffix. + +The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder. + +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. + +### Command Line Interface + +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. + +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: + +![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif) + +### Version Control Integration + +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. + +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. + +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. + +### Writing Tests + +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. + +Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this: + +```js +import sum from './sum'; + +it('sums numbers', () => { + expect(sum(1, 2)).toEqual(3); + expect(sum(2, 2)).toEqual(4); +}); +``` + +All `expect()` matchers supported by Jest are [extensively documented here](http://facebook.github.io/jest/docs/expect.html).
+You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](http://facebook.github.io/jest/docs/expect.html#tohavebeencalled) to create “spies” or mock functions. + +### Testing Components + +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. + +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: + +```js +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; + +it('renders without crashing', () => { + const div = document.createElement('div'); + ReactDOM.render(, div); +}); +``` + +This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot 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`. + +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. + +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: + +```sh +npm install --save enzyme react-test-renderer +``` + +Alternatively you may use `yarn`: + +```sh +yarn add enzyme react-test-renderer +``` + +You can write a smoke test with it too: + +```js +import React from 'react'; +import { shallow } from 'enzyme'; +import App from './App'; + +it('renders without crashing', () => { + shallow(); +}); +``` + +Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `` and doesn’t go deeper. For example, even if `` itself renders a ` + ); } diff --git a/frontend/web-sponge/src/actions/index.js b/frontend/web-sponge/src/actions/index.js new file mode 100644 index 0000000..a3c02da --- /dev/null +++ b/frontend/web-sponge/src/actions/index.js @@ -0,0 +1,7 @@ +export const clickSomething = filter => { + console.log('[clickSomething]') + return { + type: 'CLICKED_SOMETHING', + filter + } +} diff --git a/frontend/web-sponge/src/index.js b/frontend/web-sponge/src/index.js index 58bc99c..3c3f6e7 100644 --- a/frontend/web-sponge/src/index.js +++ b/frontend/web-sponge/src/index.js @@ -1,12 +1,24 @@ +// npm packages import React from 'react' import ReactDOM from 'react-dom' +import { Provider } from 'react-redux' +import { createStore } from 'redux' + +// SpongeBase app modules import App from './App' import './index.css' +import spongeApp from './reducers' + +let store = createStore(spongeApp) + + const rootEl = document.getElementById('root') ReactDOM.render( - , + + + , rootEl ) diff --git a/frontend/web-sponge/src/logo.svg b/frontend/web-sponge/src/logo.svg deleted file mode 100644 index 6b60c10..0000000 --- a/frontend/web-sponge/src/logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/frontend/web-sponge/src/reducers/index.js b/frontend/web-sponge/src/reducers/index.js new file mode 100644 index 0000000..d07fc9e --- /dev/null +++ b/frontend/web-sponge/src/reducers/index.js @@ -0,0 +1,26 @@ +import { combineReducers } from 'redux' + +const clickSomething = (state = 'SHOW_ALL', action) => { + switch (action.type) { + case 'SET_VISIBILITY_FILTER': + return action.filter + default: + return state + } +} + +const clickSomethingElse = (state = 'BLA', action) => { + switch (action.type) { + case 'BLEE': + return action.filter + default: + return state + } +} + +const todoApp = combineReducers({ + clickSomething, + clickSomethingElse +}) + +export default todoApp diff --git a/frontend/web-sponge/yarn.lock b/frontend/web-sponge/yarn.lock new file mode 100644 index 0000000..940544d --- /dev/null +++ b/frontend/web-sponge/yarn.lock @@ -0,0 +1,6756 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +abab@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + +accepts@~1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" + dependencies: + mime-types "~2.1.16" + negotiator "0.6.1" + +acorn-dynamic-import@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" + dependencies: + acorn "^4.0.3" + +acorn-globals@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" + dependencies: + acorn "^4.0.4" + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +acorn@^4.0.3, acorn@^4.0.4: + version "4.0.13" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + +acorn@^5.0.0, acorn@^5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" + +address@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.0.2.tgz#480081e82b587ba319459fef512f516fe03d58af" + +address@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9" + +ajv-keywords@^2.0.0, ajv-keywords@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" + +ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^5.0.0, ajv@^5.1.0, ajv@^5.1.5, ajv@^5.2.0, ajv@^5.2.3: + version "5.2.3" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + json-schema-traverse "^0.3.0" + json-stable-stringify "^1.0.1" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +anser@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.1.tgz#c3641863a962cebef941ea2c8706f2cb4f0716bd" + +ansi-align@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" + dependencies: + string-width "^1.0.1" + +ansi-escapes@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-escapes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" + +ansi-escapes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + +ansi-regex@^2.0.0, ansi-regex@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansi-styles@^3.0.0, ansi-styles@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" + dependencies: + color-convert "^1.9.0" + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +append-transform@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" + dependencies: + default-require-extensions "^1.0.0" + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + dependencies: + sprintf-js "~1.0.2" + +aria-query@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24" + dependencies: + ast-types-flow "0.0.7" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-flatten@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-flatten@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" + +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +arrify@^1.0.0, arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + +asn1.js@^4.0.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +ast-types-flow@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async@^1.4.0, async@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.1.2, async@^2.1.4, async@^2.4.1: + version "2.5.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" + dependencies: + lodash "^4.14.0" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +autoprefixer@7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.2.tgz#fbeaf07d48fd878e0682bf7cbeeade728adb2b18" + dependencies: + browserslist "^2.1.5" + caniuse-lite "^1.0.30000697" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^6.0.6" + postcss-value-parser "^3.2.3" + +autoprefixer@^6.3.1: + version "6.7.7" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + dependencies: + browserslist "^1.7.6" + caniuse-db "^1.0.30000634" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.16" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + +aws4@^1.2.1, aws4@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +axobject-query@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" + dependencies: + ast-types-flow "0.0.7" + +babel-code-frame@6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +babel-code-frame@^6.11.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" + dependencies: + babel-code-frame "^6.22.0" + babel-generator "^6.25.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.25.0" + babel-traverse "^6.25.0" + babel-types "^6.25.0" + babylon "^6.17.2" + convert-source-map "^1.1.0" + debug "^2.1.1" + json5 "^0.5.0" + lodash "^4.2.0" + minimatch "^3.0.2" + path-is-absolute "^1.0.0" + private "^0.1.6" + slash "^1.0.0" + source-map "^0.5.0" + +babel-core@^6.0.0, babel-core@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.0" + debug "^2.6.8" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.7" + slash "^1.0.0" + source-map "^0.5.6" + +babel-eslint@7.2.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" + dependencies: + babel-code-frame "^6.22.0" + babel-traverse "^6.23.1" + babel-types "^6.23.0" + babylon "^6.17.0" + +babel-generator@^6.18.0, babel-generator@^6.25.0, babel-generator@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.6" + trim-right "^1.0.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-builder-react-jsx@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + esutils "^2.0.2" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-jest@20.0.3, babel-jest@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" + dependencies: + babel-core "^6.0.0" + babel-plugin-istanbul "^4.0.0" + babel-preset-jest "^20.0.3" + +babel-loader@7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.1.tgz#b87134c8b12e3e4c2a94e0546085bc680a2b8488" + dependencies: + find-cache-dir "^1.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-dynamic-import-node@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.0.2.tgz#adb5bc8f48a89311540395ae9f0cc3ed4b10bb2e" + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-istanbul@^4.0.0: + version "4.1.5" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" + dependencies: + find-up "^2.1.0" + istanbul-lib-instrument "^1.7.5" + test-exclude "^4.1.1" + +babel-plugin-jest-hoist@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + +babel-plugin-syntax-dynamic-import@6.18.0, babel-plugin-syntax-dynamic-import@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + +babel-plugin-syntax-flow@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" + +babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + +babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + +babel-plugin-transform-async-to-generator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-class-properties@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.23.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-flow-strip-types@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" + dependencies: + babel-plugin-syntax-flow "^6.18.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-object-rest-spread@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-constant-elements@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz#2f119bf4d2cdd45eb9baaae574053c604f6147dd" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-display-name@^6.23.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-self@6.22.0, babel-plugin-transform-react-jsx-self@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-source@6.22.0, babel-plugin-transform-react-jsx-source@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx@6.24.1, babel-plugin-transform-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" + dependencies: + babel-helper-builder-react-jsx "^6.24.1" + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" + dependencies: + regenerator-transform "0.9.11" + +babel-plugin-transform-regenerator@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-runtime@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-preset-env@1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^2.1.2" + invariant "^2.2.2" + semver "^5.3.0" + +babel-preset-flow@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" + dependencies: + babel-plugin-transform-flow-strip-types "^6.22.0" + +babel-preset-jest@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" + dependencies: + babel-plugin-jest-hoist "^20.0.3" + +babel-preset-react-app@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz#5716d6a8c7354db0cc2707207ab6ceb3b2e0a825" + dependencies: + babel-plugin-dynamic-import-node "1.0.2" + babel-plugin-syntax-dynamic-import "6.18.0" + babel-plugin-transform-class-properties "6.24.1" + babel-plugin-transform-object-rest-spread "6.23.0" + babel-plugin-transform-react-constant-elements "6.23.0" + babel-plugin-transform-react-jsx "6.24.1" + babel-plugin-transform-react-jsx-self "6.22.0" + babel-plugin-transform-react-jsx-source "6.22.0" + babel-plugin-transform-regenerator "6.24.1" + babel-plugin-transform-runtime "6.23.0" + babel-preset-env "1.5.2" + babel-preset-react "6.24.1" + +babel-preset-react@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" + dependencies: + babel-plugin-syntax-jsx "^6.3.13" + babel-plugin-transform-react-display-name "^6.23.0" + babel-plugin-transform-react-jsx "^6.24.1" + babel-plugin-transform-react-jsx-self "^6.22.0" + babel-plugin-transform-react-jsx-source "^6.22.0" + babel-preset-flow "^6.23.0" + +babel-register@^6.24.1, babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@6.26.0, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.17.0, babylon@^6.17.2, babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + +balanced-match@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +big.js@^3.1.3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" + +binary-extensions@^1.0.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird@^3.4.7: + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + +body-parser@1.18.2: + version "1.18.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" + dependencies: + bytes "3.0.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.1" + http-errors "~1.6.2" + iconv-lite "0.4.19" + on-finished "~2.3.0" + qs "6.5.1" + raw-body "2.3.2" + type-is "~1.6.15" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boom@4.x.x: + version "4.3.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" + dependencies: + hoek "4.x.x" + +boom@5.x.x: + version "5.2.0" + resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" + dependencies: + hoek "4.x.x" + +boxen@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" + dependencies: + ansi-align "^1.1.0" + camelcase "^2.1.0" + chalk "^1.1.1" + cli-boxes "^1.0.0" + filled-array "^1.0.0" + object-assign "^4.0.1" + repeating "^2.0.0" + string-width "^1.0.1" + widest-line "^1.0.0" + +brace-expansion@^1.0.0, brace-expansion@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browser-resolve@^1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.0.8" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309" + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: + version "1.7.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + dependencies: + caniuse-db "^1.0.30000639" + electron-to-chromium "^1.2.7" + +browserslist@^2.1.2, browserslist@^2.1.5: + version "2.5.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.5.0.tgz#0ea00d22813a4dfae5786485225a9c584b3ef37c" + dependencies: + caniuse-lite "^1.0.30000744" + electron-to-chromium "^1.3.24" + +bser@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" + dependencies: + node-int64 "^0.4.0" + +bser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" + dependencies: + node-int64 "^0.4.0" + +buffer-indexof@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-modules@^1.0.0, builtin-modules@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + +camel-case@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + dependencies: + no-case "^2.2.0" + upper-case "^1.1.1" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0, camelcase@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + +caniuse-api@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" + dependencies: + browserslist "^1.3.6" + caniuse-db "^1.0.30000529" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: + version "1.0.30000744" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000744.tgz#00758ff7dd5f7138d34a15608dccf71a59656ffe" + +caniuse-lite@^1.0.30000697, caniuse-lite@^1.0.30000744: + version "1.0.30000744" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000744.tgz#860fa5c83ba34fe619397d607f30bb474821671b" + +capture-stack-trace@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" + +case-sensitive-paths-webpack-plugin@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.1.tgz#3d29ced8c1f124bf6f53846fb3f5894731fdc909" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + +chokidar@^1.6.0, chokidar@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +ci-info@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + +clap@^1.0.9: + version "1.2.3" + resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" + dependencies: + chalk "^1.1.3" + +clean-css@4.1.x: + version "4.1.9" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301" + dependencies: + source-map "0.5.x" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + dependencies: + restore-cursor "^2.0.0" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +coa@~1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" + dependencies: + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +color-convert@^1.3.0, color-convert@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" + dependencies: + color-name "^1.1.1" + +color-name@^1.0.0, color-name@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +color-string@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" + dependencies: + color-name "^1.0.0" + +color@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" + dependencies: + clone "^1.0.2" + color-convert "^1.3.0" + color-string "^0.3.0" + +colormin@^1.0.5: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" + dependencies: + color "^0.11.0" + css-color-names "0.0.4" + has "^1.0.1" + +colors@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@2.11.x, commander@~2.11.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + +compressible@~2.0.11: + version "2.0.11" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.11.tgz#16718a75de283ed8e604041625a2064586797d8a" + dependencies: + mime-db ">= 1.29.0 < 2" + +compression@^1.5.2: + version "1.7.1" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.1.tgz#eff2603efc2e22cf86f35d2eb93589f9875373db" + dependencies: + accepts "~1.3.4" + bytes "3.0.0" + compressible "~2.0.11" + debug "2.6.9" + on-headers "~1.0.1" + safe-buffer "5.1.1" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" + dependencies: + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +configstore@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" + dependencies: + dot-prop "^3.0.0" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + object-assign "^4.0.1" + os-tmpdir "^1.0.0" + osenv "^0.1.0" + uuid "^2.0.1" + write-file-atomic "^1.1.2" + xdg-basedir "^2.0.0" + +connect-history-api-fallback@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type-parser@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + +convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.4.0, core-js@^2.5.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" + dependencies: + is-directory "^0.3.1" + js-yaml "^3.4.3" + minimist "^1.2.0" + object-assign "^4.1.0" + os-homedir "^1.0.1" + parse-json "^2.2.0" + require-from-string "^1.1.0" + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-error-class@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + dependencies: + capture-stack-trace "^1.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^2.0.0" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.6" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@5.1.0, cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +cryptiles@3.x.x: + version "3.1.2" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" + dependencies: + boom "5.x.x" + +crypto-browserify@^3.11.0: + version "3.11.1" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + +css-color-names@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + +css-loader@0.28.4: + version "0.28.4" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.4.tgz#6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f" + dependencies: + babel-code-frame "^6.11.0" + css-selector-tokenizer "^0.7.0" + cssnano ">=2.6.1 <4" + icss-utils "^2.1.0" + loader-utils "^1.0.2" + lodash.camelcase "^4.3.0" + object-assign "^4.0.1" + postcss "^5.0.6" + postcss-modules-extract-imports "^1.0.0" + postcss-modules-local-by-default "^1.0.1" + postcss-modules-scope "^1.0.0" + postcss-modules-values "^1.1.0" + postcss-value-parser "^3.3.0" + source-list-map "^0.1.7" + +css-select@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-selector-tokenizer@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" + dependencies: + cssesc "^0.1.0" + fastparse "^1.1.1" + regexpu-core "^1.0.0" + +css-what@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" + +cssesc@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + +"cssnano@>=2.6.1 <4": + version "3.10.0" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" + dependencies: + autoprefixer "^6.3.1" + decamelize "^1.1.2" + defined "^1.0.0" + has "^1.0.1" + object-assign "^4.0.1" + postcss "^5.0.14" + postcss-calc "^5.2.0" + postcss-colormin "^2.1.8" + postcss-convert-values "^2.3.4" + postcss-discard-comments "^2.0.4" + postcss-discard-duplicates "^2.0.1" + postcss-discard-empty "^2.0.1" + postcss-discard-overridden "^0.1.1" + postcss-discard-unused "^2.2.1" + postcss-filter-plugins "^2.0.0" + postcss-merge-idents "^2.1.5" + postcss-merge-longhand "^2.0.1" + postcss-merge-rules "^2.0.3" + postcss-minify-font-values "^1.0.2" + postcss-minify-gradients "^1.0.1" + postcss-minify-params "^1.0.4" + postcss-minify-selectors "^2.0.4" + postcss-normalize-charset "^1.1.0" + postcss-normalize-url "^3.0.7" + postcss-ordered-values "^2.1.0" + postcss-reduce-idents "^2.2.2" + postcss-reduce-initial "^1.0.0" + postcss-reduce-transforms "^1.0.3" + postcss-svgo "^2.1.1" + postcss-unique-selectors "^2.0.2" + postcss-value-parser "^3.2.3" + postcss-zindex "^2.0.1" + +csso@~2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" + dependencies: + clap "^1.0.9" + source-map "^0.5.3" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" + +"cssstyle@>= 0.2.37 < 0.3.0": + version "0.2.37" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" + dependencies: + cssom "0.3.x" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +damerau-levenshtein@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.6.0, debug@^2.6.3, debug@^2.6.6, debug@^2.6.8: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +default-gateway@^2.2.2: + version "2.6.1" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.6.1.tgz#d337764dbd40c327532606c858f9a3c05cc456df" + dependencies: + execa "^0.8.0" + ip-regex "^2.1.0" + +default-require-extensions@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" + dependencies: + strip-bom "^2.0.0" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +del@^2.0.2, del@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +del@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" + dependencies: + globby "^6.1.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + p-map "^1.1.1" + pify "^3.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@1.1.1, depd@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + dependencies: + repeating "^2.0.0" + +detect-node@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" + +detect-port-alt@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.3.tgz#a4d2f061d757a034ecf37c514260a98750f2b131" + dependencies: + address "^1.0.1" + debug "^2.6.0" + +diff@^3.2.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + +dns-packet@^1.0.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.2.2.tgz#a8a26bec7646438963fc86e06f8f8b16d6c8bf7a" + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + dependencies: + buffer-indexof "^1.0.0" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +dom-converter@~0.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" + dependencies: + utila "~0.3" + +dom-serializer@0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +dom-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/dom-urls/-/dom-urls-1.1.0.tgz#001ddf81628cd1e706125c7176f53ccec55d918e" + dependencies: + urijs "^1.16.1" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +domelementtype@1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" + +domelementtype@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" + +domhandler@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" + dependencies: + domelementtype "1" + +domutils@1.1: + version "1.1.6" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" + dependencies: + is-obj "^1.0.0" + +dotenv@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" + +duplexer2@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.24: + version "1.3.24" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz#9b7b88bb05ceb9fa016a177833cc2dde388f21b6" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emoji-regex@^6.1.0: + version "6.5.1" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +encodeurl@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + +enhanced-resolve@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + object-assign "^4.0.1" + tapable "^0.2.7" + +entities@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" + +errno@^0.1.3, errno@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" + dependencies: + prr "~0.0.0" + +error-ex@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + +es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.30" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" + dependencies: + es6-iterator "2" + es6-symbol "~3.1" + +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-symbol "^3.1" + +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-promise@^4.0.5: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escodegen@^1.6.1: + version "1.9.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.5.6" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-config-react-app@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-2.0.1.tgz#fd0503da01ae608f0c6ae8861de084975142230e" + +eslint-import-resolver-node@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" + dependencies: + debug "^2.6.8" + resolve "^1.2.0" + +eslint-loader@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.9.0.tgz#7e1be9feddca328d3dcfaef1ad49d5beffe83a13" + dependencies: + loader-fs-cache "^1.0.0" + loader-utils "^1.0.2" + object-assign "^4.0.1" + object-hash "^1.1.4" + rimraf "^2.6.1" + +eslint-module-utils@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" + dependencies: + debug "^2.6.8" + pkg-dir "^1.0.0" + +eslint-plugin-flowtype@2.35.0: + version "2.35.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.0.tgz#d17494f0ae8b727c632d8b9d4b4a848e7e0c04af" + dependencies: + lodash "^4.15.0" + +eslint-plugin-import@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" + dependencies: + builtin-modules "^1.1.1" + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.1.1" + has "^1.0.1" + lodash.cond "^4.3.0" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + +eslint-plugin-jsx-a11y@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1" + dependencies: + aria-query "^0.7.0" + array-includes "^3.0.3" + ast-types-flow "0.0.7" + axobject-query "^0.1.0" + damerau-levenshtein "^1.0.0" + emoji-regex "^6.1.0" + jsx-ast-utils "^1.4.0" + +eslint-plugin-react@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.1.0.tgz#27770acf39f5fd49cd0af4083ce58104eb390d4c" + dependencies: + doctrine "^2.0.0" + has "^1.0.1" + jsx-ast-utils "^1.4.1" + +eslint-scope@^3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.4.1.tgz#99cd7eafcffca2ff99a5c8f5f2a474d6364b4bd3" + dependencies: + ajv "^5.2.0" + babel-code-frame "^6.22.0" + chalk "^1.1.3" + concat-stream "^1.6.0" + cross-spawn "^5.1.0" + debug "^2.6.8" + doctrine "^2.0.0" + eslint-scope "^3.7.1" + espree "^3.5.0" + esquery "^1.0.0" + estraverse "^4.2.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^9.17.0" + ignore "^3.3.3" + imurmurhash "^0.1.4" + inquirer "^3.0.6" + is-resolvable "^1.0.0" + js-yaml "^3.9.1" + json-stable-stringify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.4" + minimatch "^3.0.2" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^4.0.0" + progress "^2.0.0" + require-uncached "^1.0.3" + semver "^5.3.0" + strip-json-comments "~2.0.1" + table "^4.0.1" + text-table "~0.2.0" + +espree@^3.5.0: + version "3.5.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" + dependencies: + acorn "^5.1.1" + acorn-jsx "^3.0.0" + +esprima@^2.6.0: + version "2.7.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + +esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + dependencies: + estraverse "^4.1.0" + object-assign "^4.0.1" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +eventsource@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" + dependencies: + original ">=0.0.5" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +exec-sh@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" + dependencies: + merge "^1.1.3" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + dependencies: + homedir-polyfill "^1.0.1" + +express@^4.13.3: + version "4.16.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.16.1.tgz#6b33b560183c9b253b7b62144df33a4654ac9ed0" + dependencies: + accepts "~1.3.4" + array-flatten "1.1.1" + body-parser "1.18.2" + content-disposition "0.5.2" + content-type "~1.0.4" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.1" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.1.0" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.2" + path-to-regexp "0.1.7" + proxy-addr "~2.0.2" + qs "6.5.1" + range-parser "~1.2.0" + safe-buffer "5.1.1" + send "0.16.1" + serve-static "1.13.1" + setprototypeof "1.1.0" + statuses "~1.3.1" + type-is "~1.6.15" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@~3.0.0, extend@~3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +external-editor@^2.0.4: + version "2.0.5" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" + dependencies: + iconv-lite "^0.4.17" + jschardet "^1.4.2" + tmp "^0.0.33" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extract-text-webpack-plugin@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.0.tgz#90caa7907bc449f335005e3ac7532b41b00de612" + dependencies: + async "^2.4.1" + loader-utils "^1.1.0" + schema-utils "^0.3.0" + webpack-sources "^1.0.1" + +extsprintf@1.3.0, extsprintf@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +fast-deep-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fastparse@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^1.8.0: + version "1.9.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" + dependencies: + bser "1.0.2" + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + dependencies: + bser "^2.0.0" + +fbjs@^0.8.16: + version "0.8.16" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.9" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +file-loader@0.11.2: + version "0.11.2" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.11.2.tgz#4ff1df28af38719a6098093b88c82c71d1794a34" + dependencies: + loader-utils "^1.0.2" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +fileset@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + dependencies: + glob "^7.0.3" + minimatch "^3.0.3" + +filesize@3.5.10: + version "3.5.10" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.10.tgz#fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +filled-array@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" + +finalhandler@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" + dependencies: + debug "2.6.9" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.2" + statuses "~1.3.1" + unpipe "~1.0.0" + +find-cache-dir@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + dependencies: + commondir "^1.0.1" + mkdirp "^0.5.1" + pkg-dir "^1.0.0" + +find-cache-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^2.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + +flat-cache@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +flatten@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + +for-in@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +form-data@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + +fs-extra@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^3.0.0" + universalify "^0.1.0" + +fs-extra@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@1.1.2, fsevents@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.36" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2, function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@1.0.0, global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +globals@^9.17.0, globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +got@^5.0.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" + dependencies: + create-error-class "^3.0.1" + duplexer2 "^0.1.4" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + node-status-codes "^1.0.0" + object-assign "^4.0.1" + parse-json "^2.1.0" + pinkie-promise "^2.0.0" + read-all-stream "^3.0.0" + readable-stream "^2.0.5" + timed-out "^3.0.0" + unzip-response "^1.0.2" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + +gzip-size@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" + dependencies: + duplexer "^0.1.1" + +handle-thing@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" + +handlebars@^4.0.3: + version "4.0.10" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" + dependencies: + async "^1.4.0" + optimist "^0.6.1" + source-map "^0.4.4" + optionalDependencies: + uglify-js "^2.6" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +har-validator@~5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" + dependencies: + ajv "^5.1.0" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hash-base@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" + dependencies: + inherits "^2.0.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +hawk@3.1.3, hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hawk@~6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" + dependencies: + boom "4.x.x" + cryptiles "3.x.x" + hoek "4.x.x" + sntp "2.x.x" + +he@1.1.x: + version "1.1.1" + resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" + +history@^4.5.1, history@^4.7.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/history/-/history-4.7.2.tgz#22b5c7f31633c5b8021c7f4a8a954ac139ee8d5b" + dependencies: + invariant "^2.2.1" + loose-envify "^1.2.0" + resolve-pathname "^2.2.0" + value-equal "^0.4.0" + warning "^3.0.0" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hoek@4.x.x: + version "4.2.0" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" + +hoist-non-react-statics@^2.2.1, hoist-non-react-statics@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.3.1.tgz#343db84c6018c650778898240135a1420ee22ce0" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +homedir-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" + dependencies: + parse-passwd "^1.0.0" + +hosted-git-info@^2.1.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-comment-regex@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" + +html-encoding-sniffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" + dependencies: + whatwg-encoding "^1.0.1" + +html-entities@1.2.1, html-entities@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" + +html-minifier@^3.2.3: + version "3.5.5" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.5.tgz#3bdc9427e638bbe3dbde96c0eb988b044f02739e" + dependencies: + camel-case "3.0.x" + clean-css "4.1.x" + commander "2.11.x" + he "1.1.x" + ncname "1.0.x" + param-case "2.1.x" + relateurl "0.2.x" + uglify-js "3.1.x" + +html-webpack-plugin@2.29.0: + version "2.29.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.29.0.tgz#e987f421853d3b6938c8c4c8171842e5fd17af23" + dependencies: + bluebird "^3.4.7" + html-minifier "^3.2.3" + loader-utils "^0.2.16" + lodash "^4.17.3" + pretty-error "^2.0.2" + toposort "^1.0.0" + +htmlparser2@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" + dependencies: + domelementtype "1" + domhandler "2.1" + domutils "1.1" + readable-stream "1.0" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + +http-errors@1.6.2, http-errors@~1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" + dependencies: + depd "1.1.1" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-parser-js@>=0.4.0: + version "0.4.9" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.9.tgz#ea1a04fb64adff0242e9974f297dd4c3cad271e1" + +http-proxy-middleware@~0.17.4: + version "0.17.4" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" + dependencies: + http-proxy "^1.16.2" + is-glob "^3.1.0" + lodash "^4.17.2" + micromatch "^2.3.11" + +http-proxy@^1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +iconv-lite@0.4.13: + version "0.4.13" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" + +iconv-lite@0.4.19, iconv-lite@^0.4.17, iconv-lite@~0.4.13: + version "0.4.19" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + +icss-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" + dependencies: + postcss "^6.0.1" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +ignore@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +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: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + +inquirer@3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" + dependencies: + ansi-escapes "^2.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +inquirer@^3.0.6: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +internal-ip@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-2.0.3.tgz#ed3cf9b671ac7ff23037bfacad42eb439cd9546c" + dependencies: + default-gateway "^2.2.2" + ipaddr.js "^1.5.2" + +interpret@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" + +invariant@^2.0.0, invariant@^2.2.1, invariant@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + +ip@^1.1.0, ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + +ipaddr.js@1.5.2, ipaddr.js@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-ci@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" + dependencies: + ci-info "^1.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + +is-retry-allowed@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + +is-root@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5" + +is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-svg@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" + dependencies: + html-comment-regex "^1.1.0" + +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +is-windows@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +istanbul-api@^1.1.1: + version "1.1.14" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" + dependencies: + async "^2.1.4" + fileset "^2.0.2" + istanbul-lib-coverage "^1.1.1" + istanbul-lib-hook "^1.0.7" + istanbul-lib-instrument "^1.8.0" + istanbul-lib-report "^1.1.1" + istanbul-lib-source-maps "^1.2.1" + istanbul-reports "^1.1.2" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + +istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" + +istanbul-lib-hook@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" + dependencies: + append-transform "^0.4.0" + +istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.18.0" + istanbul-lib-coverage "^1.1.1" + semver "^5.3.0" + +istanbul-lib-report@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" + dependencies: + istanbul-lib-coverage "^1.1.1" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + +istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" + dependencies: + debug "^2.6.3" + istanbul-lib-coverage "^1.1.1" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + +istanbul-reports@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" + dependencies: + handlebars "^4.0.3" + +jest-changed-files@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" + +jest-cli@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" + dependencies: + ansi-escapes "^1.4.0" + callsites "^2.0.0" + chalk "^1.1.3" + graceful-fs "^4.1.11" + is-ci "^1.0.10" + istanbul-api "^1.1.1" + istanbul-lib-coverage "^1.0.1" + istanbul-lib-instrument "^1.4.2" + istanbul-lib-source-maps "^1.1.0" + jest-changed-files "^20.0.3" + jest-config "^20.0.4" + jest-docblock "^20.0.3" + jest-environment-jsdom "^20.0.3" + jest-haste-map "^20.0.4" + jest-jasmine2 "^20.0.4" + jest-message-util "^20.0.3" + jest-regex-util "^20.0.3" + jest-resolve-dependencies "^20.0.3" + jest-runtime "^20.0.4" + jest-snapshot "^20.0.3" + jest-util "^20.0.3" + micromatch "^2.3.11" + node-notifier "^5.0.2" + pify "^2.3.0" + slash "^1.0.0" + string-length "^1.0.1" + throat "^3.0.0" + which "^1.2.12" + worker-farm "^1.3.1" + yargs "^7.0.2" + +jest-config@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" + dependencies: + chalk "^1.1.3" + glob "^7.1.1" + jest-environment-jsdom "^20.0.3" + jest-environment-node "^20.0.3" + jest-jasmine2 "^20.0.4" + jest-matcher-utils "^20.0.3" + jest-regex-util "^20.0.3" + jest-resolve "^20.0.4" + jest-validate "^20.0.3" + pretty-format "^20.0.3" + +jest-diff@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" + dependencies: + chalk "^1.1.3" + diff "^3.2.0" + jest-matcher-utils "^20.0.3" + pretty-format "^20.0.3" + +jest-docblock@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" + +jest-environment-jsdom@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" + dependencies: + jest-mock "^20.0.3" + jest-util "^20.0.3" + jsdom "^9.12.0" + +jest-environment-node@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" + dependencies: + jest-mock "^20.0.3" + jest-util "^20.0.3" + +jest-haste-map@^20.0.4: + version "20.0.5" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" + dependencies: + fb-watchman "^2.0.0" + graceful-fs "^4.1.11" + jest-docblock "^20.0.3" + micromatch "^2.3.11" + sane "~1.6.0" + worker-farm "^1.3.1" + +jest-jasmine2@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" + dependencies: + chalk "^1.1.3" + graceful-fs "^4.1.11" + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-matchers "^20.0.3" + jest-message-util "^20.0.3" + jest-snapshot "^20.0.3" + once "^1.4.0" + p-map "^1.1.1" + +jest-matcher-utils@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" + dependencies: + chalk "^1.1.3" + pretty-format "^20.0.3" + +jest-matchers@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" + dependencies: + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-message-util "^20.0.3" + jest-regex-util "^20.0.3" + +jest-message-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" + dependencies: + chalk "^1.1.3" + micromatch "^2.3.11" + slash "^1.0.0" + +jest-mock@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" + +jest-regex-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" + +jest-resolve-dependencies@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" + dependencies: + jest-regex-util "^20.0.3" + +jest-resolve@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" + dependencies: + browser-resolve "^1.11.2" + is-builtin-module "^1.0.0" + resolve "^1.3.2" + +jest-runtime@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" + dependencies: + babel-core "^6.0.0" + babel-jest "^20.0.3" + babel-plugin-istanbul "^4.0.0" + chalk "^1.1.3" + convert-source-map "^1.4.0" + graceful-fs "^4.1.11" + jest-config "^20.0.4" + jest-haste-map "^20.0.4" + jest-regex-util "^20.0.3" + jest-resolve "^20.0.4" + jest-util "^20.0.3" + json-stable-stringify "^1.0.1" + micromatch "^2.3.11" + strip-bom "3.0.0" + yargs "^7.0.2" + +jest-snapshot@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" + dependencies: + chalk "^1.1.3" + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-util "^20.0.3" + natural-compare "^1.4.0" + pretty-format "^20.0.3" + +jest-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" + dependencies: + chalk "^1.1.3" + graceful-fs "^4.1.11" + jest-message-util "^20.0.3" + jest-mock "^20.0.3" + jest-validate "^20.0.3" + leven "^2.1.0" + mkdirp "^0.5.1" + +jest-validate@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" + dependencies: + chalk "^1.1.3" + jest-matcher-utils "^20.0.3" + leven "^2.1.0" + pretty-format "^20.0.3" + +jest@20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" + dependencies: + jest-cli "^20.0.4" + +js-base64@^2.1.9: + version "2.3.2" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf" + +js-tokens@^3.0.0, js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1: + version "3.10.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" + dependencies: + argparse "^1.0.7" + esprima "^2.6.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jschardet@^1.4.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" + +jsdom@^9.12.0: + version "9.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" + dependencies: + abab "^1.0.3" + acorn "^4.0.4" + acorn-globals "^3.1.0" + array-equal "^1.0.0" + content-type-parser "^1.0.1" + cssom ">= 0.3.2 < 0.4.0" + cssstyle ">= 0.2.37 < 0.3.0" + escodegen "^1.6.1" + html-encoding-sniffer "^1.0.1" + nwmatcher ">= 1.3.9 < 2.0.0" + parse5 "^1.5.1" + request "^2.79.0" + sax "^1.2.1" + symbol-tree "^3.2.1" + tough-cookie "^2.3.2" + webidl-conversions "^4.0.0" + whatwg-encoding "^1.0.1" + whatwg-url "^4.3.0" + xml-name-validator "^2.0.1" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-loader@^0.5.4: + version "0.5.7" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json3@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +jsx-ast-utils@^1.4.0, jsx-ast-utils@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" + +kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + optionalDependencies: + graceful-fs "^4.1.9" + +latest-version@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" + dependencies: + package-json "^2.0.0" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lazy-req@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-fs-cache@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc" + dependencies: + find-cache-dir "^0.1.1" + mkdirp "0.5.1" + +loader-runner@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" + +loader-utils@^0.2.16: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +loader-utils@^1.0.2, loader-utils@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash-es@^4.2.0, lodash-es@^4.2.1: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" + +lodash._reinterpolate@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + +lodash.cond@^4.3.0: + version "4.5.2" + resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" + +lodash.defaults@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + +lodash.template@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" + dependencies: + lodash._reinterpolate "~3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" + dependencies: + lodash._reinterpolate "~3.0.0" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + +"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.2.0, lodash@^4.2.1, lodash@^4.3.0: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + +loglevel@^1.4.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.5.0.tgz#3863984a2c326b986fbb965f378758a6dc8a4324" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + +lowercase-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + +lru-cache@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +macaddress@^0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" + +make-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" + dependencies: + pify "^2.3.0" + +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + dependencies: + tmpl "1.0.x" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +math-expression-evaluator@^1.2.14: + version "1.2.17" + resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" + +md5.js@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + dependencies: + mimic-fn "^1.0.0" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +merge@^1.1.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micromatch@^2.1.5, micromatch@^2.3.11: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +"mime-db@>= 1.29.0 < 2", mime-db@~1.30.0: + version "1.30.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" + +mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: + version "2.1.17" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" + dependencies: + mime-db "~1.30.0" + +mime@1.3.x: + version "1.3.6" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" + +mime@1.4.1, mime@^1.3.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + +mimic-fn@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +minimatch@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" + dependencies: + brace-expansion "^1.0.0" + +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + +mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + +multicast-dns@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.1.1.tgz#6e7de86a570872ab17058adea7160bbeca814dde" + dependencies: + dns-packet "^1.0.1" + thunky "^0.1.0" + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + +nan@^2.3.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +ncname@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" + dependencies: + xml-char-classes "^1.0.0" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +no-case@^2.2.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + dependencies: + lower-case "^1.1.1" + +node-fetch@^1.0.1: + version "1.7.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-forge@0.6.33: + version "0.6.33" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + +node-libs-browser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.1.4" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "0.0.1" + os-browserify "^0.2.0" + path-browserify "0.0.0" + process "^0.11.0" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.0.5" + stream-browserify "^2.0.1" + stream-http "^2.3.1" + string_decoder "^0.10.25" + timers-browserify "^2.0.2" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +node-notifier@^5.0.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" + dependencies: + growly "^1.3.0" + semver "^5.3.0" + shellwords "^0.1.0" + which "^1.2.12" + +node-pre-gyp@^0.6.36: + version "0.6.38" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" + dependencies: + hawk "3.1.3" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +node-status-codes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +normalize-url@^1.4.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +"nwmatcher@>= 1.3.9 < 2.0.0": + version "1.4.2" + resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.2.tgz#c5e545ab40d22a56b0326531c4beaed7a888b3ea" + +oauth-sign@~0.8.1, oauth-sign@~0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-hash@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.8.tgz#28a659cf987d96a4dabe7860289f3b5326c4a03c" + +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +obuf@^1.0.0, obuf@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" + +once@^1.3.0, once@^1.3.3, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + dependencies: + mimic-fn "^1.0.0" + +opn@5.1.0, opn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" + dependencies: + is-wsl "^1.1.0" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.1, optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +original@>=0.0.5: + version "1.0.0" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" + dependencies: + url-parse "1.0.x" + +os-browserify@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" + +os-homedir@^1.0.0, os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@^0.1.0, osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-limit@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + +package-json@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" + dependencies: + got "^5.0.0" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +param-case@2.1.x: + version "2.1.1" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + dependencies: + no-case "^2.2.0" + +parse-asn1@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.1.0, parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + +parse5@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" + +parseurl@~1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-to-regexp@^1.0.1, path-to-regexp@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + dependencies: + isarray "0.0.1" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.14" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + dependencies: + find-up "^1.0.0" + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + dependencies: + find-up "^2.1.0" + +pluralize@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" + +portfinder@^1.0.9: + version "1.0.13" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" + dependencies: + async "^1.5.2" + debug "^2.2.0" + mkdirp "0.5.x" + +postcss-calc@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" + dependencies: + postcss "^5.0.2" + postcss-message-helpers "^2.0.0" + reduce-css-calc "^1.2.6" + +postcss-colormin@^2.1.8: + version "2.2.2" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" + dependencies: + colormin "^1.0.5" + postcss "^5.0.13" + postcss-value-parser "^3.2.3" + +postcss-convert-values@^2.3.4: + version "2.6.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" + dependencies: + postcss "^5.0.11" + postcss-value-parser "^3.1.2" + +postcss-discard-comments@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" + dependencies: + postcss "^5.0.14" + +postcss-discard-duplicates@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" + dependencies: + postcss "^5.0.4" + +postcss-discard-empty@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" + dependencies: + postcss "^5.0.14" + +postcss-discard-overridden@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" + dependencies: + postcss "^5.0.16" + +postcss-discard-unused@^2.2.1: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" + dependencies: + postcss "^5.0.14" + uniqs "^2.0.0" + +postcss-filter-plugins@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" + dependencies: + postcss "^5.0.4" + uniqid "^4.0.0" + +postcss-flexbugs-fixes@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz#9b8b932c53f9cf13ba0f61875303e447c33dcc51" + dependencies: + postcss "^6.0.1" + +postcss-load-config@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + postcss-load-options "^1.2.0" + postcss-load-plugins "^2.3.0" + +postcss-load-options@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + +postcss-load-plugins@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" + dependencies: + cosmiconfig "^2.1.1" + object-assign "^4.1.0" + +postcss-loader@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.6.tgz#8c7e0055a3df1889abc6bad52dd45b2f41bbc6fc" + dependencies: + loader-utils "^1.1.0" + postcss "^6.0.2" + postcss-load-config "^1.2.0" + schema-utils "^0.3.0" + +postcss-merge-idents@^2.1.5: + version "2.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" + dependencies: + has "^1.0.1" + postcss "^5.0.10" + postcss-value-parser "^3.1.1" + +postcss-merge-longhand@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" + dependencies: + postcss "^5.0.4" + +postcss-merge-rules@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" + dependencies: + browserslist "^1.5.2" + caniuse-api "^1.5.2" + postcss "^5.0.4" + postcss-selector-parser "^2.2.2" + vendors "^1.0.0" + +postcss-message-helpers@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" + +postcss-minify-font-values@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" + dependencies: + object-assign "^4.0.1" + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-minify-gradients@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" + dependencies: + postcss "^5.0.12" + postcss-value-parser "^3.3.0" + +postcss-minify-params@^1.0.4: + version "1.2.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.2" + postcss-value-parser "^3.0.2" + uniqs "^2.0.0" + +postcss-minify-selectors@^2.0.4: + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" + dependencies: + alphanum-sort "^1.0.2" + has "^1.0.1" + postcss "^5.0.14" + postcss-selector-parser "^2.0.0" + +postcss-modules-extract-imports@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" + dependencies: + postcss "^6.0.1" + +postcss-modules-local-by-default@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-scope@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-values@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^6.0.1" + +postcss-normalize-charset@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" + dependencies: + postcss "^5.0.5" + +postcss-normalize-url@^3.0.7: + version "3.0.8" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^1.4.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + +postcss-ordered-values@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.1" + +postcss-reduce-idents@^2.2.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-reduce-initial@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" + dependencies: + postcss "^5.0.4" + +postcss-reduce-transforms@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" + dependencies: + has "^1.0.1" + postcss "^5.0.8" + postcss-value-parser "^3.0.1" + +postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^2.1.1: + version "2.1.6" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" + dependencies: + is-svg "^2.0.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + svgo "^0.7.0" + +postcss-unique-selectors@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +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: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss-zindex@^2.0.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" + dependencies: + has "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +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: + version "5.2.18" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.2.3" + +postcss@^6.0.1, postcss@^6.0.2, postcss@^6.0.6: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.13.tgz#b9ecab4ee00c89db3ec931145bd9590bbf3f125f" + dependencies: + chalk "^2.1.0" + source-map "^0.6.1" + supports-color "^4.4.0" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +prepend-http@^1.0.0, prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +pretty-bytes@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9" + +pretty-error@^2.0.2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" + dependencies: + renderkid "^2.0.1" + utila "~0.4" + +pretty-format@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" + dependencies: + ansi-regex "^2.1.1" + ansi-styles "^3.0.0" + +private@^0.1.6, private@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@^0.11.0: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +progress@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + +promise@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.1.tgz#e45d68b00a17647b6da711bf85ed6ed47208f450" + dependencies: + asap "~2.0.3" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + dependencies: + asap "~2.0.3" + +prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.6.0: + version "15.6.0" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.3.1" + object-assign "^4.1.1" + +proxy-addr@~2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.5.2" + +prr@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@^1.1.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" + +qs@6.5.1, qs@~6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" + +qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +querystringify@0.0.x: + version "0.0.4" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" + +querystringify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" + +randomatic@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +randombytes@^2.0.0, randombytes@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.0.3, range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +raw-body@2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" + dependencies: + bytes "3.0.0" + http-errors "1.6.2" + iconv-lite "0.4.19" + unpipe "1.0.0" + +rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: + version "1.2.1" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dev-utils@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-4.1.0.tgz#f6f436febd3f4eeb538490319b51c875c1e35bc5" + dependencies: + address "1.0.2" + babel-code-frame "6.22.0" + chalk "1.1.3" + cross-spawn "5.1.0" + detect-port-alt "1.1.3" + escape-string-regexp "1.0.5" + filesize "3.5.10" + global-modules "1.0.0" + gzip-size "3.0.0" + inquirer "3.2.1" + is-root "1.0.0" + opn "5.1.0" + react-error-overlay "^2.0.2" + recursive-readdir "2.2.1" + shell-quote "1.6.1" + sockjs-client "1.1.4" + strip-ansi "3.0.1" + text-table "0.2.0" + +"react-dom@^15 || ^16", react-dom@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.0.0.tgz#9cc3079c3dcd70d4c6e01b84aab2a7e34c303f58" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.0" + +react-error-overlay@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-2.0.2.tgz#967b091962b17f5aeb4a60b1311b1736e1b6533d" + dependencies: + anser "1.4.1" + babel-code-frame "6.22.0" + babel-runtime "6.26.0" + html-entities "1.2.1" + react "^15 || ^16" + react-dom "^15 || ^16" + settle-promise "1.0.0" + source-map "0.5.6" + +react-redux@^5.0.6: + version "5.0.6" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-5.0.6.tgz#23ed3a4f986359d68b5212eaaa681e60d6574946" + dependencies: + hoist-non-react-statics "^2.2.1" + invariant "^2.0.0" + lodash "^4.2.0" + lodash-es "^4.2.0" + loose-envify "^1.1.0" + prop-types "^15.5.10" + +react-router-dom@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.2.2.tgz#c8a81df3adc58bba8a76782e946cbd4eae649b8d" + dependencies: + history "^4.7.2" + invariant "^2.2.2" + loose-envify "^1.3.1" + prop-types "^15.5.4" + react-router "^4.2.0" + warning "^3.0.0" + +react-router-redux@^5.0.0-alpha.6: + version "5.0.0-alpha.6" + resolved "https://registry.yarnpkg.com/react-router-redux/-/react-router-redux-5.0.0-alpha.6.tgz#7418663c2ecd3c51be856fcf28f3d1deecc1a576" + dependencies: + history "^4.5.1" + prop-types "^15.5.4" + react-router "^4.1.1" + +react-router@^4.1.1, react-router@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-4.2.0.tgz#61f7b3e3770daeb24062dae3eedef1b054155986" + dependencies: + history "^4.7.2" + hoist-non-react-statics "^2.3.0" + invariant "^2.2.2" + loose-envify "^1.3.1" + path-to-regexp "^1.7.0" + prop-types "^15.5.4" + warning "^3.0.0" + +react-scripts@1.0.14: + version "1.0.14" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-1.0.14.tgz#70fe76c9beb67b136b953e875bdfe4ad78d410d1" + dependencies: + autoprefixer "7.1.2" + babel-core "6.25.0" + babel-eslint "7.2.3" + babel-jest "20.0.3" + babel-loader "7.1.1" + babel-preset-react-app "^3.0.3" + babel-runtime "6.26.0" + case-sensitive-paths-webpack-plugin "2.1.1" + chalk "1.1.3" + css-loader "0.28.4" + dotenv "4.0.0" + eslint "4.4.1" + eslint-config-react-app "^2.0.1" + eslint-loader "1.9.0" + eslint-plugin-flowtype "2.35.0" + eslint-plugin-import "2.7.0" + eslint-plugin-jsx-a11y "5.1.1" + eslint-plugin-react "7.1.0" + extract-text-webpack-plugin "3.0.0" + file-loader "0.11.2" + fs-extra "3.0.1" + html-webpack-plugin "2.29.0" + jest "20.0.4" + object-assign "4.1.1" + postcss-flexbugs-fixes "3.2.0" + postcss-loader "2.0.6" + promise "8.0.1" + react-dev-utils "^4.1.0" + style-loader "0.18.2" + sw-precache-webpack-plugin "0.11.4" + url-loader "0.5.9" + webpack "3.5.1" + webpack-dev-server "2.8.2" + webpack-manifest-plugin "1.2.1" + whatwg-fetch "2.0.3" + optionalDependencies: + fsevents "1.1.2" + +"react@^15 || ^16", react@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.0.0.tgz#ce7df8f1941b036f02b2cca9dbd0cb1f0e855e2d" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.0" + +read-all-stream@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" + dependencies: + pinkie-promise "^2.0.0" + readable-stream "^2.0.0" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +readable-stream@1.0: + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.2.9: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +recursive-readdir@2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.1.tgz#90ef231d0778c5ce093c9a48d74e5c5422d13a99" + dependencies: + minimatch "3.0.3" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +reduce-css-calc@^1.2.6: + version "1.3.0" + resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" + dependencies: + balanced-match "^0.4.2" + math-expression-evaluator "^1.2.14" + reduce-function-call "^1.0.1" + +reduce-function-call@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" + dependencies: + balanced-match "^0.4.2" + +redux-thunk@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.2.0.tgz#e615a16e16b47a19a515766133d1e3e99b7852e5" + +redux@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b" + dependencies: + lodash "^4.2.1" + lodash-es "^4.2.1" + loose-envify "^1.1.0" + symbol-observable "^1.0.3" + +regenerate@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" + +regenerator-runtime@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" + +regenerator-transform@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + dependencies: + is-equal-shallow "^0.1.3" + +regexpu-core@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +registry-auth-token@^3.0.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + dependencies: + rc "^1.0.1" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +relateurl@0.2.x: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + +renderkid@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" + dependencies: + css-select "^1.1.0" + dom-converter "~0.1" + htmlparser2 "~3.3.0" + strip-ansi "^3.0.0" + utila "~0.3" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request@2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +request@^2.79.0: + version "2.83.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.6.0" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.1" + forever-agent "~0.6.1" + form-data "~2.3.1" + har-validator "~5.0.3" + hawk "~6.0.2" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.17" + oauth-sign "~0.8.2" + performance-now "^2.1.0" + qs "~6.5.1" + safe-buffer "^5.1.1" + stringstream "~0.0.5" + tough-cookie "~2.3.3" + tunnel-agent "^0.6.0" + uuid "^3.1.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-from-string@^1.1.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require-uncached@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +requires-port@1.0.x, requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + +resolve-dir@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + +resolve-pathname@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz#7e9ae21ed815fd63ab189adeee64dc831eefa879" + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + +resolve@^1.2.0, resolve@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" + dependencies: + path-parse "^1.0.5" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" + dependencies: + glob "^7.0.5" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" + dependencies: + hash-base "^2.0.0" + inherits "^2.0.1" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + dependencies: + is-promise "^2.1.0" + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + +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: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +sane@~1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" + dependencies: + anymatch "^1.3.0" + exec-sh "^0.2.0" + fb-watchman "^1.8.0" + minimatch "^3.0.2" + minimist "^1.1.1" + walker "~1.0.5" + watch "~0.10.0" + +sax@^1.2.1, sax@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +schema-utils@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" + dependencies: + ajv "^5.0.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + +selfsigned@^1.9.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.1.tgz#bf8cb7b83256c4551e31347c6311778db99eec52" + dependencies: + node-forge "0.6.33" + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" + +send@0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" + dependencies: + debug "2.6.9" + depd "~1.1.1" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.6.2" + mime "1.4.1" + ms "2.0.0" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.1" + +serve-index@^1.7.2: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.2" + send "0.16.1" + +serviceworker-cache-polyfill@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz#de19ee73bef21ab3c0740a37b33db62464babdeb" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +setimmediate@^1.0.4, setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + +settle-promise@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/settle-promise/-/settle-promise-1.0.0.tgz#697adb58b821f387ce2757c06efc9de5f0ee33d8" + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.9" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shell-quote@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + +shellwords@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + dependencies: + is-fullwidth-code-point "^2.0.0" + +slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sntp@2.x.x: + version "2.0.2" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" + dependencies: + hoek "4.x.x" + +sockjs-client@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" + dependencies: + debug "^2.6.6" + eventsource "0.1.6" + faye-websocket "~0.11.0" + inherits "^2.0.1" + json3 "^3.3.2" + url-parse "^1.1.8" + +sockjs@0.3.18: + version "0.3.18" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" + dependencies: + faye-websocket "^0.10.0" + uuid "^2.0.2" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" + +source-list-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" + +source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + dependencies: + source-map "^0.5.6" + +source-map@0.5.6: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + +source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3, source-map@~0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +spdy-transport@^2.0.18: + version "2.0.20" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" + dependencies: + debug "^2.6.8" + detect-node "^2.0.3" + hpack.js "^2.1.6" + obuf "^1.1.1" + readable-stream "^2.2.9" + safe-buffer "^5.0.1" + wbuf "^1.7.2" + +spdy@^3.4.1: + version "3.4.7" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" + dependencies: + debug "^2.6.8" + handle-thing "^1.2.5" + http-deceiver "^1.2.7" + safe-buffer "^5.0.1" + select-hose "^2.0.0" + spdy-transport "^2.0.18" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +"statuses@>= 1.3.1 < 2", statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.3.1: + version "2.7.2" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.2.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + +string-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" + dependencies: + strip-ansi "^3.0.0" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^0.10.25, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" + +stringstream@~0.0.4, stringstream@~0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@3.0.1, strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-bom@3.0.0, strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +style-loader@0.18.2: + version "0.18.2" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.2.tgz#cc31459afbcd6d80b7220ee54b291a9fd66ff5eb" + dependencies: + loader-utils "^1.0.2" + schema-utils "^0.3.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^3.1.2, supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +supports-color@^4.0.0, supports-color@^4.2.1, supports-color@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" + dependencies: + has-flag "^2.0.0" + +svgo@^0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" + dependencies: + coa "~1.0.1" + colors "~1.1.2" + csso "~2.3.1" + js-yaml "~3.7.0" + mkdirp "~0.5.1" + sax "~1.2.1" + whet.extend "~0.9.9" + +sw-precache-webpack-plugin@0.11.4: + version "0.11.4" + resolved "https://registry.yarnpkg.com/sw-precache-webpack-plugin/-/sw-precache-webpack-plugin-0.11.4.tgz#a695017e54eed575551493a519dc1da8da2dc5e0" + dependencies: + del "^2.2.2" + sw-precache "^5.1.1" + uglify-js "^3.0.13" + +sw-precache@^5.1.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/sw-precache/-/sw-precache-5.2.0.tgz#eb6225ce580ceaae148194578a0ad01ab7ea199c" + dependencies: + dom-urls "^1.1.0" + es6-promise "^4.0.5" + glob "^7.1.1" + lodash.defaults "^4.2.0" + lodash.template "^4.4.0" + meow "^3.7.0" + mkdirp "^0.5.1" + pretty-bytes "^4.0.2" + sw-toolbox "^3.4.0" + update-notifier "^1.0.3" + +sw-toolbox@^3.4.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/sw-toolbox/-/sw-toolbox-3.6.0.tgz#26df1d1c70348658e4dea2884319149b7b3183b5" + dependencies: + path-to-regexp "^1.0.1" + serviceworker-cache-polyfill "^4.0.0" + +symbol-observable@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" + +symbol-tree@^3.2.1: + version "3.2.2" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" + +table@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" + dependencies: + ajv "^5.2.3" + ajv-keywords "^2.1.0" + chalk "^2.1.0" + lodash "^4.17.4" + slice-ansi "1.0.0" + string-width "^2.1.1" + +tapable@^0.2.7: + version "0.2.8" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" + +tar-pack@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +test-exclude@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" + dependencies: + arrify "^1.0.1" + micromatch "^2.3.11" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" + +text-table@0.2.0, text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +throat@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +thunky@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" + +time-stamp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" + +timed-out@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" + +timers-browserify@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" + dependencies: + setimmediate "^1.0.4" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + +toposort@^1.0.0: + version "1.0.6" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.6.tgz#c31748e55d210effc00fdcdc7d6e68d7d7bb9cec" + +tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" + dependencies: + punycode "^1.4.1" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.15: + version "1.6.15" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.15" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +ua-parser-js@^0.7.9: + version "0.7.14" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" + +uglify-js@3.1.x, uglify-js@^3.0.13: + version "3.1.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.3.tgz#d61f0453b4718cab01581f3162aa90bab7520b42" + dependencies: + commander "~2.11.0" + source-map "~0.5.1" + +uglify-js@^2.6, uglify-js@^2.8.29: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uglifyjs-webpack-plugin@^0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" + dependencies: + source-map "^0.5.6" + uglify-js "^2.8.29" + webpack-sources "^1.0.1" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + +uniqid@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" + dependencies: + macaddress "^0.2.8" + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + +universalify@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +unzip-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" + +update-notifier@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" + dependencies: + boxen "^0.6.0" + chalk "^1.0.0" + configstore "^2.0.0" + is-npm "^1.0.0" + latest-version "^2.0.0" + lazy-req "^1.1.0" + semver-diff "^2.0.0" + xdg-basedir "^2.0.0" + +upper-case@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + +urijs@^1.16.1: + version "1.19.0" + resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.19.0.tgz#d8aa284d0e7469703a6988ad045c4cbfdf08ada0" + +url-loader@0.5.9: + version "0.5.9" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" + dependencies: + loader-utils "^1.0.2" + mime "1.3.x" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + dependencies: + prepend-http "^1.0.1" + +url-parse@1.0.x: + version "1.0.5" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" + dependencies: + querystringify "0.0.x" + requires-port "1.0.x" + +url-parse@^1.1.8: + version "1.1.9" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" + dependencies: + querystringify "~1.0.0" + requires-port "1.0.x" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utila@~0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + +uuid@^2.0.1, uuid@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + +uuid@^3.0.0, uuid@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +value-equal@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz#c5bdd2f54ee093c04839d71ce2e4758a6890abc7" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + +vendors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + dependencies: + makeerror "1.0.x" + +warning@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" + dependencies: + loose-envify "^1.0.0" + +watch@~0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" + +watchpack@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" + dependencies: + async "^2.1.2" + chokidar "^1.7.0" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" + dependencies: + minimalistic-assert "^1.0.0" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + +webidl-conversions@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + +webpack-dev-middleware@^1.11.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz#d34efefb2edda7e1d3b5dbe07289513219651709" + dependencies: + memory-fs "~0.4.1" + mime "^1.3.4" + path-is-absolute "^1.0.0" + range-parser "^1.0.3" + time-stamp "^2.0.0" + +webpack-dev-server@2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.8.2.tgz#abd61f410778cc4c843d7cebbf41465b1ab7734c" + dependencies: + ansi-html "0.0.7" + array-includes "^3.0.3" + bonjour "^3.5.0" + chokidar "^1.6.0" + compression "^1.5.2" + connect-history-api-fallback "^1.3.0" + del "^3.0.0" + express "^4.13.3" + html-entities "^1.2.0" + http-proxy-middleware "~0.17.4" + internal-ip "^2.0.2" + ip "^1.1.5" + loglevel "^1.4.1" + opn "^5.1.0" + portfinder "^1.0.9" + selfsigned "^1.9.1" + serve-index "^1.7.2" + sockjs "0.3.18" + sockjs-client "1.1.4" + spdy "^3.4.1" + strip-ansi "^3.0.1" + supports-color "^4.2.1" + webpack-dev-middleware "^1.11.0" + yargs "^6.6.0" + +webpack-manifest-plugin@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" + dependencies: + fs-extra "^0.30.0" + lodash ">=3.5 <5" + +webpack-sources@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" + dependencies: + source-list-map "^2.0.0" + source-map "~0.5.3" + +webpack@3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.5.1.tgz#b749ee3d2b5a118dad53e8e41585b3f71e75499a" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^5.1.5" + ajv-keywords "^2.0.0" + async "^2.1.2" + enhanced-resolve "^3.4.0" + escope "^3.6.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^4.2.1" + tapable "^0.2.7" + uglifyjs-webpack-plugin "^0.4.6" + watchpack "^1.4.0" + webpack-sources "^1.0.1" + yargs "^8.0.2" + +websocket-driver@>=0.5.1: + version "0.7.0" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" + dependencies: + http-parser-js ">=0.4.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.2.tgz#0e18781de629a18308ce1481650f67ffa2693a5d" + +whatwg-encoding@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" + dependencies: + iconv-lite "0.4.13" + +whatwg-fetch@2.0.3, whatwg-fetch@>=0.10.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" + +whatwg-url@^4.3.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +whet.extend@~0.9.9: + version "0.9.9" + resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + +which@^1.2.12, which@^1.2.14, which@^1.2.9: + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + +widest-line@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" + dependencies: + string-width "^1.0.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +worker-farm@^1.3.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" + dependencies: + errno "^0.1.4" + xtend "^4.0.1" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +write-file-atomic@^1.1.2: + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +xdg-basedir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" + dependencies: + os-homedir "^1.0.0" + +xml-char-classes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" + +xml-name-validator@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" + +xtend@^4.0.0, xtend@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + dependencies: + camelcase "^4.1.0" + +yargs@^6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + +yargs@^7.0.2: + version "7.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" From 5bb2106e6cb450985e6101d5806be90d0dceefc9 Mon Sep 17 00:00:00 2001 From: John Dingee Date: Sat, 7 Oct 2017 10:47:21 -0400 Subject: [PATCH 08/35] put the node process in docker compose --- docker-compose.yml | 8 +++++++- frontend/web-sponge/Dockerfile | 4 ++++ frontend/web-sponge/src/App.js | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 frontend/web-sponge/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index 8ceb02a..2cf9cf9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,4 +9,10 @@ api: - db db: image: mvertes/alpine-mongo:3.4.9-0 -# frontend: +frontend: + build: ./frontend/web-sponge + command: npm start + ports: + - "3000:3000" + volumes: + - ./frontend/web-sponge:/watcher-app diff --git a/frontend/web-sponge/Dockerfile b/frontend/web-sponge/Dockerfile new file mode 100644 index 0000000..70f9eb1 --- /dev/null +++ b/frontend/web-sponge/Dockerfile @@ -0,0 +1,4 @@ +FROM node:8.6-alpine +ADD . /watcher-app +WORKDIR /watcher-app +RUN npm install diff --git a/frontend/web-sponge/src/App.js b/frontend/web-sponge/src/App.js index 126884a..49f7acb 100644 --- a/frontend/web-sponge/src/App.js +++ b/frontend/web-sponge/src/App.js @@ -12,7 +12,7 @@ class App extends Component { return (

-

Duasfsfsde

+

asfsfs

To get started, edit src/App.js and save to reload. From fcec3212e458440e913e8fb2f7ad58aec15da6a0 Mon Sep 17 00:00:00 2001 From: John Dingee Date: Tue, 10 Oct 2017 11:01:18 -0400 Subject: [PATCH 09/35] get spongemap.html in app.js --- docker-compose.yml | 14 +- frontend/web-sponge/package.json | 2 +- frontend/web-sponge/src/App.css | 370 +++++++++++++++++++++++++++++++ frontend/web-sponge/src/App.js | 107 ++++++++- 4 files changed, 474 insertions(+), 19 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2cf9cf9..3402bb1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,10 +9,10 @@ api: - db db: image: mvertes/alpine-mongo:3.4.9-0 -frontend: - build: ./frontend/web-sponge - command: npm start - ports: - - "3000:3000" - volumes: - - ./frontend/web-sponge:/watcher-app +# frontend: +# build: ./frontend/web-sponge +# command: npm start +# ports: +# - "3000:3000" +# volumes: +# - ./frontend/web-sponge:/watcher-app diff --git a/frontend/web-sponge/package.json b/frontend/web-sponge/package.json index 36d8625..0fde145 100644 --- a/frontend/web-sponge/package.json +++ b/frontend/web-sponge/package.json @@ -13,7 +13,7 @@ "redux-thunk": "^2.2.0" }, "scripts": { - "start": "react-scripts start", + "start": "PORT=3456 react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject" diff --git a/frontend/web-sponge/src/App.css b/frontend/web-sponge/src/App.css index c5c6e8a..f6ce9bd 100644 --- a/frontend/web-sponge/src/App.css +++ b/frontend/web-sponge/src/App.css @@ -26,3 +26,373 @@ from { transform: rotate(0deg); } to { transform: rotate(360deg); } } + +.nav ul ul { +display: none; +} +.nav ul li:hover > ul { + display: block; +} + +.ul { + background: linear-gradient(top, #efefef 0%, #bbbbbb 100%); + background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); + background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); + box-shadow: 0px 0px 9px rgba(0,0,0,0.15); + padding: 0 20px; + list-style: none; + position: relative; +} + +/* Change the styles below in order to customize your template */ + +body{font-family: Helvetica, Arial; font-weight: regular; font-size: 15px; color: #CBCBCB; background-color: #333; margin: 0;} +h1{font-weight: bold; font-size: 31px; letter-spacing: -1px; color: #FFF; line-height: 33px;} +h3{font-weight: bold; font-size: 12px; color: #777; text-transform: uppercase; margin: 18px 0 0 0;} +p{margin: 8px 0 20px 0; line-height: 18px;} +a, a:visited{color: #72B6E5; text-decoration: none;} +a:hover{text-decoration: underline;} + +.wrapper{display: block; padding: 4px 30px 0 30px;} + +.map{background-color:#eee; position: absolute; top: 0; left: 0; bottom: 0; width: 67%; *height:100%;} +.sidepanel{background-color:#333; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; height: 100%; overflow: auto;} + +.context{font-family: Helvetica, Arial; font-size: 13px; color: #999; padding: 10px 0 0 0;} +.subheader{border-bottom: 1px solid #555;} +.footer{border-top: 1px solid #555; margin-top: 30px;} +.titleBlock{text-align: right;} + +/* Here are the styles that makes the template responsive */ + +@media only screen and (max-width: 768px) { + .map{position: inherit; height: 400px; width: 100%; display: block;} + .sidepanel{position: inherit; width: 100%;} +} + +@media only screen and (max-width: 480px) { + .map {height: 300px;} +} + +/* SPONGEMAP .css */ + + + html, body, #map { + height: 100%; + padding: 0; + margin: 0; + } + + #layer_selector { + position: absolute; + top: 20px; + right: 20px; + padding: 0; + /* width: 13%; */ + } + + #layer_selector ul { + padding: 0; margin: 0; + list-style-type: none; + + } + + #layer_selector li { + border-bottom: 1px solid #999; + padding: 10px 30px; + font-family: "Helvetica", Arial; + font-size: 13px; + color: #444; + cursor: auto; + } + + #layer_selector li:hover { + background-color: #F0F0F0; + cursor: pointer; + } + + #layer_selector li.selected { + background-color: #EEE; + } + + div.cartodb-popup.custom_infowindow {width:auto;padding-top:5px;margin-left:-POSITION_OF_THE_TIP;background:url("http://vizzuality.github.io/icij/img/map/infowindow-top.png") no-repeat} + div.cartodb-popup.custom_infowindow div.cartodb-popup-content-wrapper {width:407px;height:400px;max-width:407px;padding:0 5px;background:url("http://vizzuality.github.io/icij/img/map/infowindow-content.png") repeat-y} + div.cartodb-popup.custom_infowindow div.cartodb-popup-tip-container{width:407px;background:url("http://vizzuality.github.io/icij/img/map/infowindow-bottom.png") no-repeat} + div.cartodb-popup.custom_infowindow div.row{display:block;overflow:auto} + div.cartodb-popup.custom_infowindow div.row div.label,div.cartodb-popup.custom_infowindow div.row div.info{padding:20px 0;margin:0 20px} + div.cartodb-popup.custom_infowindow div.row div.label{float:left;width:407px} + div.cartodb-popup.custom_infowindow div.row div.info{float:right;width:407px} + div.cartodb-popup.custom_infowindow div.row div.info.border{border-bottom:1px solid #E1E2E4} + div.cartodb-popup.custom_infowindow div.row.no-pad div.info,div.cartodb-popup.custom_infowindow div.row.no-pad div.label{padding-top:0} + div.cartodb-popup.custom_infowindow a.cartodb-popup-close-button{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;top:10px;right:10px;width:20px !important;height:auto !important;padding:5px 0;text-align:center;background:0;text-indent:0;font:bold 11px "Helvetica",Arial;text-decoration:none} + div.cartodb-popup.custom_infowindow a.cartodb-popup-close-button:hover{text-decoration:underline} + div.cartodb-popup.custom_infowindow label{display:block;margin-top:2px;font:bold 11px "Helvetica",Arial;line-height:12px;color:#4CA7CC} + /* div.cartodb-popup.custom_infowindow p{display:block;max-width:none !important;width:auto !importantfont-size:14px;color:#999999} */ + div.cartodb-popup.custom_infowindow p strong{font-weight:bold} + div.cartodb-popup.custom_infowindow p.margin{margin-top:12px} + div.cartodb-popup.custom_infowindow p a{color:#459CBE;text-decoration:none} + + .leaflet-right { + right: 0px; + margin-right: 100px ; + } + + * { + margin: 0; + padding: 0; +} +body { + font: 14px/1.4 Georgia, Serif; + color: #fff !important; + margin: 0; + line-height: 20px; +} + + + +#page-wrap { + margin: 10px; +} + +.tab-pane{ + padding-top: 10px; +} +p { + margin: 20px 0; +} + + /* + Generic Styling, for Desktops/Laptops + */ + table { + width: 100%; + border-collapse: collapse; + } + /* Zebra striping */ + .table-striped tbody tr:nth-child(odd) td{ + background: #d9d9d9; + } + + /*tr:nth-of-type(odd) {*/ + /*background: #eee; */ + /*}*/ + th { + background: #333; + color: black; + font-weight: bold; + } + td, th { + padding: 6px; + border: 1px solid #ccc; + text-align: left; + background: #ddd; + } + + table.tablesorter thead tr .header { + background-image: url( http://tablesorter.com/themes/blue/bg.gif); + background-repeat: no-repeat; + background-position: center right; + cursor: pointer; + padding-right: 15px; + } + .tablesorter-headerAsc { + background-image: url(http://tablesorter.com/themes/blue/desc.gif) !important; + padding-right: 15px; + } + .tablesorter-headerDesc{ + background-image: url(http://tablesorter.com/themes/blue/asc.gif) !important; + padding-right: 15px; + } + + #dogtable-filtering{ + color: #444; + } + + + /* + Max width before this PARTICULAR table gets nasty + This query will take effect for any screen smaller than 760px + and also iPads specifically. + */ + @media + only screen and (max-width: 760px), + (min-device-width: 768px) and (max-device-width: 1024px) { + + /* Force table to not be like tables anymore */ + table, thead, tbody, th, td, tr { + display: block; + } + + /* Hide table headers (but not display: none;, for accessibility) */ + thead tr { + position: absolute; + top: -9999px; + left: -9999px; + } + + tr { border: 1px solid #ccc; } + + td { + /* Behave like a "row" */ + border: none; + border-bottom: 1px solid #eee; + position: relative; + padding-left: 50%; + } + + td:before { + /* Now like a table header */ + position: absolute; + /* Top/left values mimic padding */ + top: 6px; + left: 6px; + width: 45%; + padding-right: 10px; + white-space: nowrap; + } + + /* + Label the data + */ + td:nth-of-type(1):before { content: "First Name"; } + td:nth-of-type(2):before { content: "Last Name"; } + td:nth-of-type(3):before { content: "Job Title"; } + td:nth-of-type(4):before { content: "Favorite Color"; } + td:nth-of-type(5):before { content: "Wars of Trek?"; } + td:nth-of-type(6):before { content: "Porn Name"; } + td:nth-of-type(7):before { content: "Date of Birth"; } + td:nth-of-type(8):before { content: "Dream Vacation City"; } + td:nth-of-type(9):before { content: "GPA"; } + td:nth-of-type(10):before { content: "Arbitrary Data"; } + } + + /* Smartphones (portrait and landscape) ----------- */ + @media only screen + and (min-device-width : 320px) + and (max-device-width : 480px) { + body { + padding: 0; + margin: 0; + width: 320px; } + } + + /* iPads (portrait and landscape) ----------- */ + @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { + body { + width: 495px; + } + } + +/* ------ Twitter feed ------------------------------ */ + +#loading-container { + padding:16px 0px 16px 0px; + text-align:center; +} + +#twitter-feed { + /*width:298px;*/ + margin:50px; + font-family: Arial, Helvetica, sans-serif; + margin-top:20px; + padding:8px 10px 5px 10px; + border-radius:12px; + background-color:#FFF; + color:#333; + overflow:auto; +} + + +.twitter-article, #loading-container { + width:100%; + border-top:1px dotted #CCC; + float:left; + padding:8px 0px 8px 0px; + position:relative; +} +.twitter-pic { + position:absolute; +} + +.twitter-pic img { + float:left; + border-radius:7px; + border:none; + +} + +/* -------- TEXT STYLING ------*/ +.twitter-text { + width:100%; + float:left; + font-size:11px; + padding-left:52px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.twitter-text p { + margin:0px; + line-height:15px; +} +.twitter-text a, { + color: #00acee; + text-decoration: none; +} +.twitter-text a:hover, { + text-decoration: underline; + color: #00acee; +} + +.tweet-time { + font-size:10px; + color:#878787; + float:right; +} +.tweet-time a, .tweet-time a:hover { + color:#878787; +} + +.tweetprofilelink a { + color:#444; +} +.tweetprofilelink a:hover { + color:#444; +} + +/* -------- FEED ACTIONS ------*/ +#twitter-actions { + width:75px; + float:right; + margin-right:5px; + margin-top:3px; + display:none; +} +.intent { + width:25px; + height:16px; + float:left; +} +.intent a{ + width:25px; + height:16px; + display:block; + background-image:url(/static/img/tweet-actions.png); + float:left; +} +.intent a:hover{ + background-position:-25px 0px; +} + +#intent-retweet a{ + background-position:0px -17px; +} +#intent-retweet a:hover{ + background-position:-25px -17px; +} +#intent-fave a{ + background-position:0px -36px; +} +#intent-fave a:hover{ + background-position:-25px -36px; +} diff --git a/frontend/web-sponge/src/App.js b/frontend/web-sponge/src/App.js index 49f7acb..f170bdb 100644 --- a/frontend/web-sponge/src/App.js +++ b/frontend/web-sponge/src/App.js @@ -9,19 +9,104 @@ class App extends Component { } render() { - return ( -

-
-

asfsfs

-
-

- To get started, edit src/App.js and save to reload. -

- + const cartoScript = '' + // + // + + const selectorStyle = { + position: 'relative', + marginLeft: '2em', + marginTop: '4em' + } + const appContent =
+ +
+
+ + +
+ + +
+
+ {cartoScript} +
+
+ + return ( +
+ {appContent}
); } From 824dc9d0f7d1e0d861053c667e617428439fcf3d Mon Sep 17 00:00:00 2001 From: John Dingee Date: Tue, 10 Oct 2017 13:33:58 -0400 Subject: [PATCH 10/35] split python template file into components --- api/templates/spongemap.html | 22 ++-- frontend/web-sponge/src/App.css | 122 +++++++++--------- frontend/web-sponge/src/App.js | 108 ++++------------ .../web-sponge/src/components/CartoWrapper.js | 29 +++++ .../web-sponge/src/components/InfoPanel.js | 44 +++++++ .../web-sponge/src/components/MapComponent.js | 0 .../web-sponge/src/components/NavControl.js | 33 +++++ .../web-sponge/src/components/SearchForm.js | 16 +++ 8 files changed, 220 insertions(+), 154 deletions(-) create mode 100644 frontend/web-sponge/src/components/CartoWrapper.js create mode 100644 frontend/web-sponge/src/components/InfoPanel.js create mode 100644 frontend/web-sponge/src/components/MapComponent.js create mode 100644 frontend/web-sponge/src/components/NavControl.js create mode 100644 frontend/web-sponge/src/components/SearchForm.js diff --git a/api/templates/spongemap.html b/api/templates/spongemap.html index 0c42fcd..824f207 100644 --- a/api/templates/spongemap.html +++ b/api/templates/spongemap.html @@ -7,9 +7,9 @@ - + --> - + @@ -34,20 +34,20 @@ @@ -59,7 +59,7 @@
- +