1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-01-03 10:25:00 +01:00

package updates

This commit is contained in:
Matthias Kretschmann 2018-07-11 15:54:32 +02:00
parent fe700dcf5c
commit 2961edbb91
Signed by: m
GPG Key ID: 606EEEF3C479A91F
8 changed files with 23 additions and 23 deletions

View File

@ -1,5 +1,5 @@
{ {
"name": "portfolio", "name": "@kremalicious/portfolio",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://matthiaskretschmann.com", "homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio", "repository": "github:kremalicious/portfolio",
@ -21,19 +21,19 @@
}, },
"dependencies": { "dependencies": {
"file-saver": "^1.3.8", "file-saver": "^1.3.8",
"gatsby": "^2.0.0-beta.21", "gatsby": "^2.0.0-beta.34",
"gatsby-image": "^2.0.0-beta.5", "gatsby-image": "^2.0.0-beta.6",
"gatsby-plugin-favicon": "github:TuckerWhitehouse/gatsby-plugin-favicon#gatsby-v2", "gatsby-plugin-favicon": "github:TuckerWhitehouse/gatsby-plugin-favicon#gatsby-v2",
"gatsby-plugin-matomo": "^0.4.1", "gatsby-plugin-matomo": "^0.4.1",
"gatsby-plugin-offline": "^2.0.0-beta.3", "gatsby-plugin-offline": "^2.0.0-beta.3",
"gatsby-plugin-react-helmet": "^3.0.0-beta.3", "gatsby-plugin-react-helmet": "next",
"gatsby-plugin-sass": "^2.0.0-beta.5", "gatsby-plugin-sass": "next",
"gatsby-plugin-sharp": "^2.0.0-beta.3", "gatsby-plugin-sharp": "^2.0.0-beta.5",
"gatsby-plugin-sitemap": "^2.0.0-beta.2", "gatsby-plugin-sitemap": "next",
"gatsby-source-filesystem": "^2.0.1-beta.3", "gatsby-source-filesystem": "next",
"gatsby-transformer-json": "^2.1.1-beta.2", "gatsby-transformer-json": "next",
"gatsby-transformer-sharp": "^2.1.1-beta.2", "gatsby-transformer-sharp": "next",
"gatsby-transformer-yaml": "^2.1.1-beta.2", "gatsby-transformer-yaml": "next",
"giphy-js-sdk-core": "^1.0.5", "giphy-js-sdk-core": "^1.0.5",
"graphql": "^0.13.2", "graphql": "^0.13.2",
"intersection-observer": "^0.5.0", "intersection-observer": "^0.5.0",
@ -42,13 +42,13 @@
"react": "^16.4.1", "react": "^16.4.1",
"react-dom": "^16.4.1", "react-dom": "^16.4.1",
"react-helmet": "^5.2.0", "react-helmet": "^5.2.0",
"react-markdown": "^3.3.2", "react-markdown": "^3.3.4",
"react-transition-group": "^2.4.0", "react-transition-group": "^2.4.0",
"vcf": "^2.0.1" "vcf": "^2.0.1"
}, },
"devDependencies": { "devDependencies": {
"@svgr/cli": "^2.1.0", "@svgr/cli": "^2.1.1",
"babel-eslint": "^8.2.5", "babel-eslint": "^8.2.6",
"eslint": "^5.1.0", "eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0", "eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0", "eslint-loader": "^2.0.0",
@ -60,8 +60,8 @@
"prettier": "^1.13.7", "prettier": "^1.13.7",
"prettier-stylelint": "^0.4.2", "prettier-stylelint": "^0.4.2",
"slugify": "^1.3.0", "slugify": "^1.3.0",
"stylelint": "^9.2.1", "stylelint": "^9.3.0",
"stylelint-config-css-modules": "^1.2.0", "stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0" "stylelint-config-standard": "^18.2.0"
}, },
"browserslist": [ "browserslist": [

View File

@ -12,7 +12,7 @@ const Layout = ({ children, location }) => {
return ( return (
<StaticQuery <StaticQuery
query={graphql` query={graphql`
query LayoutQuery { query {
# the data/meta.yml file # the data/meta.yml file
dataYaml { dataYaml {
title title

View File

@ -21,7 +21,7 @@ const TypekitScript = typekitID => (
const Typekit = () => ( const Typekit = () => (
<StaticQuery <StaticQuery
query={graphql` query={graphql`
query TypekitQuery { query {
dataYaml { dataYaml {
typekitID typekitID
} }

View File

@ -13,7 +13,7 @@ class Availability extends PureComponent {
return ( return (
<StaticQuery <StaticQuery
query={graphql` query={graphql`
query AvailabilityQuery { query {
dataYaml { dataYaml {
availability { availability {
status status

View File

@ -55,7 +55,7 @@ class ProjectNav extends Component {
return ( return (
<StaticQuery <StaticQuery
query={graphql` query={graphql`
query ProjectsNavQuery { query {
allProjectsYaml { allProjectsYaml {
edges { edges {
node { node {

View File

@ -19,7 +19,7 @@ class Footer extends PureComponent {
return ( return (
<StaticQuery <StaticQuery
query={graphql` query={graphql`
query FooterQuery { query {
# the package.json file # the package.json file
portfolioJson { portfolioJson {
name name

View File

@ -37,7 +37,7 @@ Home.propTypes = {
export default Home export default Home
export const IndexQuery = graphql` export const IndexQuery = graphql`
query IndexQuery { query {
allProjectsYaml { allProjectsYaml {
edges { edges {
node { node {

View File

@ -80,7 +80,7 @@ Project.propTypes = {
export default Project export default Project
export const projectAndProjectsQuery = graphql` export const projectAndProjectsQuery = graphql`
query ProjectBySlug($slug: String!) { query($slug: String!) {
projectsYaml(slug: { eq: $slug }) { projectsYaml(slug: { eq: $slug }) {
title title
slug slug