├── .eslintrc.js ├── .gitignore ├── babel.config.js ├── dist ├── bundle.js └── index.html ├── nodemon.json ├── package.json ├── src ├── client │ ├── .DS_Store │ ├── App.jsx │ ├── actions │ │ ├── actionTypes.js │ │ └── actions.js │ ├── components │ │ ├── PredictionBox.jsx │ │ ├── PredictionEntry.jsx │ │ ├── PredictionsDisplay.jsx │ │ └── SearchDisplay.jsx │ ├── containers │ │ └── PredictionsContainer.jsx │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── predictionsReducer.js │ │ └── reducers.js │ └── styles │ │ └── style.scss └── server │ ├── controllers │ └── mainController.js │ ├── models │ └── model.js │ ├── routes │ └── mainRouter.js │ └── server.js └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/dist/index.html -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": ["src/server/"] 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/package.json -------------------------------------------------------------------------------- /src/client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/.DS_Store -------------------------------------------------------------------------------- /src/client/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/App.jsx -------------------------------------------------------------------------------- /src/client/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/actions/actionTypes.js -------------------------------------------------------------------------------- /src/client/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/actions/actions.js -------------------------------------------------------------------------------- /src/client/components/PredictionBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/components/PredictionBox.jsx -------------------------------------------------------------------------------- /src/client/components/PredictionEntry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/components/PredictionEntry.jsx -------------------------------------------------------------------------------- /src/client/components/PredictionsDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/components/PredictionsDisplay.jsx -------------------------------------------------------------------------------- /src/client/components/SearchDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/components/SearchDisplay.jsx -------------------------------------------------------------------------------- /src/client/containers/PredictionsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/containers/PredictionsContainer.jsx -------------------------------------------------------------------------------- /src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/index.html -------------------------------------------------------------------------------- /src/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/index.js -------------------------------------------------------------------------------- /src/client/reducers/predictionsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/reducers/predictionsReducer.js -------------------------------------------------------------------------------- /src/client/reducers/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/reducers/reducers.js -------------------------------------------------------------------------------- /src/client/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/client/styles/style.scss -------------------------------------------------------------------------------- /src/server/controllers/mainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/server/controllers/mainController.js -------------------------------------------------------------------------------- /src/server/models/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/server/models/model.js -------------------------------------------------------------------------------- /src/server/routes/mainRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/server/routes/mainRouter.js -------------------------------------------------------------------------------- /src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/src/server/server.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinjaeger/PredictIt/HEAD/webpack.config.js --------------------------------------------------------------------------------