1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-12-22 17:23:22 +01:00

package updates

This commit is contained in:
Matthias Kretschmann 2018-08-05 19:04:36 +02:00
parent 10211b2aab
commit 1d35f25790
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 18 additions and 14 deletions

View File

@ -7,7 +7,7 @@
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"scripts": {
"lint:js": "eslint ./gatsby-*.{js,jsx} && eslint ./src/**/*.{js,jsx}",
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run svg && npm run lint:js && npm run lint:css",
"build": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js build",
@ -21,17 +21,17 @@
},
"dependencies": {
"file-saver": "^1.3.8",
"gatsby": "^2.0.0-beta.58",
"gatsby": "^2.0.0-beta.71",
"gatsby-image": "^2.0.0-beta.7",
"gatsby-plugin-favicon": "^3.1.0",
"gatsby-plugin-matomo": "^0.4.1",
"gatsby-plugin-offline": "^2.0.0-beta.5",
"gatsby-plugin-favicon": "^3.1.2",
"gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-offline": "^2.0.0-beta.6",
"gatsby-plugin-react-helmet": "^3.0.0-beta.4",
"gatsby-plugin-sass": "^2.0.0-beta.6",
"gatsby-plugin-sharp": "^2.0.0-beta.7",
"gatsby-plugin-sitemap": "^2.0.0-beta.3",
"gatsby-source-filesystem": "^2.0.1-beta.10",
"gatsby-transformer-json": "^2.1.1-beta.3",
"gatsby-transformer-json": "^2.1.1-beta.5",
"gatsby-transformer-sharp": "^2.1.1-beta.6",
"gatsby-transformer-yaml": "^2.1.1-beta.3",
"giphy-js-sdk-core": "^1.0.5",
@ -39,17 +39,17 @@
"intersection-observer": "^0.5.0",
"js-yaml": "^3.12.0",
"node-sass": "^4.9.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-markdown": "^3.3.4",
"react-markdown": "^3.4.1",
"react-transition-group": "^2.4.0",
"vcf": "^2.0.1"
},
"devDependencies": {
"@svgr/cli": "^2.1.1",
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-graphql": "^2.1.1",
@ -57,10 +57,10 @@
"eslint-plugin-react": "^7.10.0",
"ora": "^3.0.0",
"prepend": "^1.0.2",
"prettier": "^1.13.7",
"prettier": "^1.14.0",
"prettier-stylelint": "^0.4.2",
"slugify": "^1.3.0",
"stylelint": "^9.3.0",
"slugify": "^1.3.1",
"stylelint": "^9.4.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0"
},

View File

@ -7,7 +7,11 @@ const ProjectTechstack = ({ techstack }) => (
<h3 className={styles.title}>
Tools & Technologies <span>The tech stack I was involved with.</span>
</h3>
<ul>{techstack.map(tech => <li key={tech}>{tech}</li>)}</ul>
<ul>
{techstack.map(tech => (
<li key={tech}>{tech}</li>
))}
</ul>
</div>
)