├── .flowconfig ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── codecov.yml ├── config-overrides.js ├── flow-typed ├── npm │ ├── bootstrap_vx.x.x.js │ ├── eslint-config-prettier_vx.x.x.js │ ├── eslint-plugin-flowtype_vx.x.x.js │ ├── eslint-plugin-import_vx.x.x.js │ ├── eslint-plugin-node_vx.x.x.js │ ├── eslint-plugin-prettier_vx.x.x.js │ ├── eslint-plugin-promise_vx.x.x.js │ ├── eslint-plugin-react_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── flow-coverage-report_vx.x.x.js │ ├── flow-typed_vx.x.x.js │ ├── gh-pages_vx.x.x.js │ ├── prettier_vx.x.x.js │ ├── react-bootstrap_vx.x.x.js │ ├── react-redux_v5.x.x.js │ ├── react-scripts_vx.x.x.js │ ├── redux-logger_vx.x.x.js │ ├── redux-thunk_vx.x.x.js │ └── redux_v3.x.x.js └── overrides │ ├── Notification.js │ ├── Window.js │ └── photon-ant.js ├── package.json ├── public ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html └── manifest.json ├── renovate.json ├── scripts ├── README.md ├── lint_problems.sh └── update_version.sh ├── src ├── App.css ├── App.js ├── App.test.js ├── PollbotAPI.js ├── PollbotAPI.test.js ├── __snapshots__ │ └── App.test.js.snap ├── actions.js ├── actions.test.js ├── create-store.js ├── index.js ├── reducers.js ├── reducers.test.js ├── registerServiceWorker.js ├── sagas.js ├── sagas.test.js ├── setupTests.js └── types.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | false 3 | -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/config-overrides.js -------------------------------------------------------------------------------- /flow-typed/npm/bootstrap_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/bootstrap_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-config-prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-config-prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-import_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-import_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-node_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-node_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-promise_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-promise_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-react_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint-plugin-react_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-coverage-report_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/flow-coverage-report_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-typed_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/flow-typed_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/gh-pages_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/gh-pages_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-bootstrap_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/react-bootstrap_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-scripts_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/react-scripts_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-logger_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/redux-logger_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-thunk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/redux-thunk_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/overrides/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/overrides/Notification.js -------------------------------------------------------------------------------- /flow-typed/overrides/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/overrides/Window.js -------------------------------------------------------------------------------- /flow-typed/overrides/photon-ant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/flow-typed/overrides/photon-ant.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/public/manifest.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/lint_problems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/scripts/lint_problems.sh -------------------------------------------------------------------------------- /scripts/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/scripts/update_version.sh -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/PollbotAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/PollbotAPI.js -------------------------------------------------------------------------------- /src/PollbotAPI.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/PollbotAPI.test.js -------------------------------------------------------------------------------- /src/__snapshots__/App.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/__snapshots__/App.test.js.snap -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/actions.test.js -------------------------------------------------------------------------------- /src/create-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/create-store.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/reducers.test.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/sagas.js -------------------------------------------------------------------------------- /src/sagas.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/sagas.test.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/src/types.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/delivery-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------