Skip to content

Commit

Permalink
Merge pull request #40 from mandrean/dependencies-eslint-fix
Browse files Browse the repository at this point in the history
Updated dependencies + fixed eslint error in About.js
  • Loading branch information
Granze committed Apr 27, 2016
2 parents 0ef9f47 + 840b644 commit a1a1191
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 33 deletions.
62 changes: 32 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
7 changes: 4 additions & 3 deletions src/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ const About = () => (
<div>
<h2>About</h2>
<p>React Starterify aims to give you a good starting point for your projects.</p>
<p>If you're looking for a minimal ES6 (ES2015) React JS starter
with nice shallow rendering test examples, this is probably for you.</p>
<p>
If you're looking for a minimal ES6 (ES2015) React JS starter
with nice shallow rendering test examples, this is probably for you.
</p>
</div>
);

export default About;

0 comments on commit a1a1191

Please sign in to comment.