From 840b644f0c511ce76c1e1cf41f0d484594b6b153 Mon Sep 17 00:00:00 2001 From: Sebastian Mandrean Date: Wed, 27 Apr 2016 10:38:30 +0200 Subject: [PATCH] Updated dependencies + fixed eslint error in About.js --- package.json | 62 +++++++++++++++++++++-------------------- src/components/About.js | 7 +++-- 2 files changed, 36 insertions(+), 33 deletions(-) diff --git a/package.json b/package.json index b65e8a1..5249437 100644 --- a/package.json +++ b/package.json @@ -39,48 +39,50 @@ }, "homepage": "https://github.com/Granze/react-starterify", "dependencies": { - "history": "^2.0.0", - "react": "^15.0.0", - "react-dom": "^15.0.0", - "react-router": "^2.0.0" + "history": "^2.1.0", + "react": "^15.0.1", + "react-dom": "^15.0.1", + "react-router": "^2.3.0" }, "devDependencies": { - "autoprefixer": "^6.0.0", + "autoprefixer": "^6.3.6", "ava": "^0.14.0", - "babel": "^6.3.13", - "babel-core": "^6.3.17", - "babel-eslint": "^6.0.0", - "babel-preset-es2015": "^6.3.13", - "babel-preset-react": "^6.3.13", - "babel-register": "^6.6.5", - "babelify": "^7.2.0", - "browser-sync": "^2.9.1", + "babel": "^6.5.2", + "babel-core": "^6.7.7", + "babel-eslint": "^6.0.4", + "babel-preset-es2015": "^6.6.0", + "babel-preset-react": "^6.5.0", + "babel-register": "^6.7.2", + "babelify": "^7.3.0", + "browser-sync": "^2.12.5", "browserify": "^13.0.0", - "cssnano": "^3.0.0", - "eslint": "^2.3.0", - "eslint-config-airbnb": "^6.1.0", - "eslint-plugin-react": "^4.2.1", - "gulp": "^3.9.0", + "cssnano": "^3.5.2", + "eslint": "^2.8.0", + "eslint-config-airbnb": "^8.0.0", + "eslint-plugin-import": "^1.6.0", + "eslint-plugin-jsx-a11y": "^1.0.3", + "eslint-plugin-react": "^5.0.1", + "gulp": "^3.9.1", "gulp-eslint": "^2.0.0", "gulp-gh-pages": "^0.5.4", - "gulp-html-replace": "^1.5.1", + "gulp-html-replace": "^1.5.5", "gulp-imagemin": "^2.4.0", "gulp-notify": "^2.2.0", - "gulp-postcss": "^6.0.0", + "gulp-postcss": "^6.1.0", "gulp-rename": "^1.2.2", - "gulp-sourcemaps": "^1.5.2", - "gulp-uglify": "^1.4.0", - "imagemin-pngquant": "^4.2.0", - "lodash": "^4.6.0", + "gulp-sourcemaps": "^2.0.0-alpha", + "gulp-uglify": "^1.5.3", + "imagemin-pngquant": "^4.2.2", + "lodash": "^4.11.1", "postcss-nested": "^1.0.0", "postcss-simple-extend": "^1.0.0", - "postcss-simple-vars": "^1.0.0", - "react-addons-test-utils": "^15.0.0", - "rimraf": "^2.4.3", - "run-sequence": "^1.1.2", + "postcss-simple-vars": "^1.2.0", + "react-addons-test-utils": "^15.0.1", + "rimraf": "^2.5.2", + "run-sequence": "^1.1.5", "tap-nyan": "0.0.2", "vinyl-buffer": "^1.0.0", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.4.0" + "watchify": "^3.7.0" } -} +} \ No newline at end of file diff --git a/src/components/About.js b/src/components/About.js index d273cff..5749e07 100644 --- a/src/components/About.js +++ b/src/components/About.js @@ -4,10 +4,11 @@ const About = () => (

About

React Starterify aims to give you a good starting point for your projects.

-

If you're looking for a minimal ES6 (ES2015) React JS starter - with nice shallow rendering test examples, this is probably for you.

+

+ If you're looking for a minimal ES6 (ES2015) React JS starter + with nice shallow rendering test examples, this is probably for you. +

); export default About; -