diff --git a/package.json b/package.json index d76cd1667..b01c90e64 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "npm": ">=3.3 <4" }, "dependencies": { - "babel-polyfill": "6.5.0", - "babel-runtime": "6.5.0", + "babel-polyfill": "6.6.1", + "babel-runtime": "6.6.1", "bluebird": "3.3.3", "body-parser": "1.15.0", "classnames": "2.2.3", @@ -24,12 +24,13 @@ "isomorphic-style-loader": "0.0.10", "jade": "1.11.0", "jsonwebtoken": "5.7.0", - "markdown-it": "^6.0.0", + "markdown-it": "6.0.0", "node-fetch": "1.3.3", "normalize.css": "3.0.3", "passport": "0.3.2", "passport-facebook": "2.1.0", "pg": "4.5.1", + "pretty-error": "2.0.0", "react": "0.14.7", "react-dom": "0.14.7", "react-routing": "0.0.7", @@ -39,16 +40,16 @@ "devDependencies": { "assets-webpack-plugin": "^3.3.0", "autoprefixer": "^6.3.3", - "babel-cli": "^6.5.1", + "babel-cli": "^6.6.0", "babel-eslint": "^5.0.0", "babel-loader": "^6.2.4", "babel-plugin-react-transform": "^2.0.0", - "babel-plugin-transform-runtime": "^6.5.2", - "babel-preset-es2015": "^6.5.0", + "babel-plugin-transform-runtime": "^6.6.0", + "babel-preset-es2015": "^6.6.0", "babel-preset-react": "^6.5.0", "babel-preset-stage-0": "^6.5.0", "browser-sync": "^2.11.1", - "core-js": "^2.1.1", + "core-js": "^2.1.3", "css-loader": "^0.23.1", "csscomb": "^3.1.8", "del": "^2.2.0", @@ -61,15 +62,16 @@ "gaze": "^0.5.2", "git-repository": "^0.1.1", "glob": "^7.0.0", + "jade-loader": "^0.8.0", "jest-cli": "^0.8.2", "jscs": "^2.10.1", "json-loader": "^0.5.4", "mkdirp": "^0.5.1", "ncp": "^2.0.0", - "postcss": "^5.0.17", + "postcss": "^5.0.18", "postcss-import": "^8.0.2", "postcss-loader": "^0.8.1", - "postcss-scss": "^0.1.5", + "postcss-scss": "^0.1.6", "precss": "^1.4.0", "raw-loader": "^0.5.1", "react-transform-catch-errors": "^1.0.2", diff --git a/src/components/Html/Html.js b/src/components/Html/Html.js deleted file mode 100644 index 4c3bea3b7..000000000 --- a/src/components/Html/Html.js +++ /dev/null @@ -1,57 +0,0 @@ -/** - * React Starter Kit (https://www.reactstarterkit.com/) - * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE.txt file in the root directory of this source tree. - */ - -import React, { Component, PropTypes } from 'react'; -import { analytics } from '../../config'; - -// https://analytics.google.com/ -const trackingCode = - 'window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;' + - `ga('create','${analytics.google.trackingId}','auto');ga('send','pageview')`; - -class Html extends Component { - - static propTypes = { - title: PropTypes.string, - description: PropTypes.string, - css: PropTypes.string, - body: PropTypes.string.isRequired, - entry: PropTypes.string.isRequired, - }; - - static defaultProps = { - title: '', - description: '', - }; - - render() { - return ( - -
- - -