Skip to content

Commit

Permalink
#Libraries: Update main project libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danjavia committed May 25, 2017
1 parent 1677b86 commit a4bc191
Show file tree
Hide file tree
Showing 3 changed files with 1,839 additions and 1,164 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "starterpack",
"version": "2.0.0",
"devDependencies": {
"react-scripts": "0.8.4",
"sw-precache": "^4.2.3"
"react-scripts": "1.0.6",
"sw-precache": "^5.1.1"
},
"dependencies": {
"apollo-client": "^1.0.0",
Expand All @@ -13,13 +13,13 @@
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.1",
"pouchdb-browser": "^6.1.2",
"react": "^15.4.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-apollo": "^0.11.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.2",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.4.2"
"react-test-renderer": "^15.5.4"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
Expand Down
9 changes: 5 additions & 4 deletions src/pages/HomePage/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@
* External Resources
**/
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import RaisedButton from 'material-ui/RaisedButton';
import baseTheme from 'material-ui/styles/baseThemes/lightBaseTheme';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();

import './HomePage.css';
/**
* Internal Resources
**/
import './HomePage.css';

injectTapEventPlugin();

/**
* Sample class definition
Expand All @@ -22,7 +23,7 @@ class HomePage extends Component {
* @property {object} muiTheme MUI integration with component
* */
static childContextTypes = {
muiTheme: React.PropTypes.object
muiTheme: PropTypes.object
};

/**
Expand Down
Loading

0 comments on commit a4bc191

Please sign in to comment.