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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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