├── .babelrc ├── .flowconfig ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── components ├── DeprecationNotice.js ├── KeyboardListener.js ├── LevelThermometer.js ├── NightingaleChart.js ├── PointSummaries.js ├── SnowflakeApp.js ├── TitleSelector.js ├── Track.js ├── TrackSelector.js └── Wordmark.js ├── constants.js ├── next.config.js ├── package.json ├── pages └── index.js ├── types ├── d3.js.flow └── next.js.flow └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | out 4 | yarn-error.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/README.md -------------------------------------------------------------------------------- /components/DeprecationNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/DeprecationNotice.js -------------------------------------------------------------------------------- /components/KeyboardListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/KeyboardListener.js -------------------------------------------------------------------------------- /components/LevelThermometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/LevelThermometer.js -------------------------------------------------------------------------------- /components/NightingaleChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/NightingaleChart.js -------------------------------------------------------------------------------- /components/PointSummaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/PointSummaries.js -------------------------------------------------------------------------------- /components/SnowflakeApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/SnowflakeApp.js -------------------------------------------------------------------------------- /components/TitleSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/TitleSelector.js -------------------------------------------------------------------------------- /components/Track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/Track.js -------------------------------------------------------------------------------- /components/TrackSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/TrackSelector.js -------------------------------------------------------------------------------- /components/Wordmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/components/Wordmark.js -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/constants.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/pages/index.js -------------------------------------------------------------------------------- /types/d3.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/types/d3.js.flow -------------------------------------------------------------------------------- /types/next.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/types/next.js.flow -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medium/snowflake/HEAD/yarn.lock --------------------------------------------------------------------------------