Skip to content

Commit

Permalink
Upgrading dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmielnik committed Jul 27, 2017
1 parent 9264924 commit 3014128
Show file tree
Hide file tree
Showing 15 changed files with 39 additions and 24 deletions.
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cv",
"version": "1.0.2",
"version": "1.0.3",
"description": "Kamil Mielnik's Curriculum Vitae",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -39,32 +39,33 @@
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"moment": "^2.18.0",
"normalize.css": "^5.0.0",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-github-fork-ribbon": "^0.4.5"
"react-github-fork-ribbon": "^0.5.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"autoprefixer": "^7.1.2",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"better-npm-run": "0.0.15",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"css-loader": "^0.28.4",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.3",
"postcss-loader": "^2.0.6",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.3",
"style-ext-html-webpack-plugin": "^3.4.1",
"style-loader": "^0.14.1",
"webpack": "^2.2.1",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
Expand Down
1 change: 1 addition & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {};
3 changes: 2 additions & 1 deletion src/components/button/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import styles from './styles.scss';

Expand Down
3 changes: 2 additions & 1 deletion src/components/contact-info/contact-info-entry/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import styles from './styles.scss';

const ContactInfoEntry = ({ label, url, value }) => (
Expand Down
3 changes: 2 additions & 1 deletion src/components/contact-info/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import ContactInfoEntry from './contact-info-entry';

const ContactInfo = ({ contactInfo }) => (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import styles from './styles.scss';

Expand Down
3 changes: 2 additions & 1 deletion src/components/experience/experience-entry/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import Description from './description';
import Info from './info';
import Positions from './positions';
Expand Down
3 changes: 2 additions & 1 deletion src/components/experience/experience-entry/info/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import styles from './styles.scss';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import PositionEntry from './position-entry';
import styles from './styles.scss';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { formatNumberOfMonths, sumTimePeriods } from './utils';
import styles from './styles.scss';
Expand Down
3 changes: 2 additions & 1 deletion src/components/experience/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import ExperienceEntry from './experience-entry';
import styles from './styles.scss';

Expand Down
3 changes: 2 additions & 1 deletion src/components/name/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import styles from './styles.scss';

Expand Down
3 changes: 2 additions & 1 deletion src/components/page/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import styles from './styles.scss';

const Page = ({ children }) => (
Expand Down
3 changes: 2 additions & 1 deletion src/components/section/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import styles from './styles.scss';

const Section = ({ children, title }) => (
Expand Down
3 changes: 2 additions & 1 deletion src/components/skills/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';

const Skills = ({ skills }) => (
<div>
Expand Down

0 comments on commit 3014128

Please sign in to comment.