Speech as a package #416

Merged
bones7242 merged 89 commits from speech-as-a-package into master 2018-04-18 21:47:34 +02:00
3 changed files with 17 additions and 3 deletions
Showing only changes of commit d0c13dafdc - Show all commits

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"name": "spee.ch",
"version": "0.0.1",
"description": "a web application that reads and publishes images to and from the LBRY blockchain",
"version": "0.1.0",
"description": "an npm package that exports a customizeable spee.ch server",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",

View file

@ -4,6 +4,13 @@ import { createStore } from 'redux';
import { Provider } from 'react-redux';
import { StaticRouter } from 'react-router-dom';
import { Reducers, GAListener, App } from 'spee.ch-components';
/*
^ note: to do this better, maybe
these should be passed in from the implementation (www.spee.ch)
after they have been customized,
so that there is no conflict between the SSR here and
the bundle sent to the server?
*/
import renderFullPage from './renderFullPage.js';
import Helmet from 'react-helmet';