Upgrade dependencies

This commit is contained in:
Kevin Kandlbinder 2021-04-22 01:32:31 +02:00
parent 1c68451ce6
commit 5e8c681332
6 changed files with 2119 additions and 2865 deletions

4935
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,24 +1,22 @@
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"name": "unkn0wncat-net",
"description": "Unkn0wnCat.net",
"version": "2.0.0",
"author": "Kevin Kandlbinder <kevin@kevink.dev>",
"dependencies": {
"dotenv": "^8.2.0",
"gatsby": "^2.32.4",
"gatsby-image": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.1",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.3",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.3",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-source-filesystem": "^2.11.0",
"gatsby-source-youtube-v2": "^1.0.1",
"gatsby-transformer-sharp": "^2.12.0",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.0",
"html-to-react": "^1.4.5",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
@ -45,9 +43,6 @@
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
"url": "https://github.com/Unkn0wnCat/Unkn0wnCat.net"
}
}

View file

@ -1,7 +1,7 @@
import React from "react"
import PropTypes from "prop-types"
import styles from "./layout.module.scss"
import * as styles from "./layout.module.scss"
import Navbar from "./navbar"
const Layout = ({ children, noNavSpacer = false }) => {

View file

@ -1,9 +1,8 @@
import React from "react"
import PropTypes from "prop-types"
import { Link } from "gatsby"
import styles from "./navbar.module.scss"
import * as styles from "./navbar.module.scss"
function spacerStyle(noSpacer) {
if(noSpacer) {

View file

@ -1,4 +1,5 @@
import React from "react"
import { graphql } from 'gatsby'
import Layout from "../components/layout"
import SEO from "../components/seo"
@ -8,7 +9,7 @@ import twitchImage from "../images/assets/twitch.jpg"
import twitterImage from "../images/assets/twitter.jpg"
import steamImage from "../images/assets/steam.jpg"
import styles from "./index.module.scss";
import * as styles from "./index.module.scss";
const HtmlToReactParser = require('html-to-react').Parser;
let parser = new HtmlToReactParser();

View file

@ -1,11 +1,11 @@
import React from "react"
import { Link, graphql } from "gatsby"
import { graphql } from "gatsby"
import Layout from "../components/layout"
import SEO from "../components/seo"
import styles from "./videos.module.scss"
import * as styles from "./videos.module.scss"
const makeStyle = function(image) {
return {