mirror of
https://github.com/Unkn0wnCat/Unkn0wnCat.net.git
synced 2025-07-27 21:38:11 +02:00
Upgrade dependencies
This commit is contained in:
parent
1c68451ce6
commit
5e8c681332
6 changed files with 2119 additions and 2865 deletions
4935
package-lock.json
generated
4935
package-lock.json
generated
File diff suppressed because it is too large
Load diff
19
package.json
19
package.json
|
@ -1,24 +1,22 @@
|
||||||
{
|
{
|
||||||
"name": "gatsby-starter-default",
|
"name": "unkn0wncat-net",
|
||||||
"private": true,
|
"description": "Unkn0wnCat.net",
|
||||||
"description": "A simple starter to get up and developing quickly with Gatsby",
|
"version": "2.0.0",
|
||||||
"version": "0.1.0",
|
"author": "Kevin Kandlbinder <kevin@kevink.dev>",
|
||||||
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^8.2.0",
|
"dotenv": "^8.2.0",
|
||||||
"gatsby": "^2.32.4",
|
"gatsby": "^2.32.4",
|
||||||
"gatsby-image": "^2.11.0",
|
|
||||||
"gatsby-plugin-manifest": "^2.12.1",
|
"gatsby-plugin-manifest": "^2.12.1",
|
||||||
"gatsby-plugin-offline": "^3.10.1",
|
"gatsby-plugin-offline": "^3.10.1",
|
||||||
"gatsby-plugin-react-helmet": "^3.10.0",
|
"gatsby-plugin-react-helmet": "^3.10.0",
|
||||||
"gatsby-plugin-sharp": "^2.14.3",
|
|
||||||
"gatsby-plugin-sass": "^2.8.0",
|
"gatsby-plugin-sass": "^2.8.0",
|
||||||
|
"gatsby-plugin-sharp": "^2.14.3",
|
||||||
"gatsby-plugin-sitemap": "^2.12.0",
|
"gatsby-plugin-sitemap": "^2.12.0",
|
||||||
"gatsby-plugin-styled-components": "^3.10.0",
|
"gatsby-plugin-styled-components": "^3.10.0",
|
||||||
"gatsby-source-filesystem": "^2.11.0",
|
"gatsby-source-filesystem": "^2.11.0",
|
||||||
"gatsby-source-youtube-v2": "^1.0.1",
|
"gatsby-source-youtube-v2": "^1.0.1",
|
||||||
"gatsby-transformer-sharp": "^2.12.0",
|
|
||||||
"gatsby-transformer-remark": "^2.16.1",
|
"gatsby-transformer-remark": "^2.16.1",
|
||||||
|
"gatsby-transformer-sharp": "^2.12.0",
|
||||||
"html-to-react": "^1.4.5",
|
"html-to-react": "^1.4.5",
|
||||||
"node-sass": "^4.14.1",
|
"node-sass": "^4.14.1",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
|
@ -45,9 +43,6 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
|
"url": "https://github.com/Unkn0wnCat/Unkn0wnCat.net"
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import PropTypes from "prop-types"
|
import PropTypes from "prop-types"
|
||||||
|
|
||||||
import styles from "./layout.module.scss"
|
import * as styles from "./layout.module.scss"
|
||||||
import Navbar from "./navbar"
|
import Navbar from "./navbar"
|
||||||
|
|
||||||
const Layout = ({ children, noNavSpacer = false }) => {
|
const Layout = ({ children, noNavSpacer = false }) => {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import PropTypes from "prop-types"
|
|
||||||
|
|
||||||
import { Link } from "gatsby"
|
import { Link } from "gatsby"
|
||||||
|
|
||||||
import styles from "./navbar.module.scss"
|
import * as styles from "./navbar.module.scss"
|
||||||
|
|
||||||
function spacerStyle(noSpacer) {
|
function spacerStyle(noSpacer) {
|
||||||
if(noSpacer) {
|
if(noSpacer) {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import React from "react"
|
import React from "react"
|
||||||
|
import { graphql } from 'gatsby'
|
||||||
|
|
||||||
import Layout from "../components/layout"
|
import Layout from "../components/layout"
|
||||||
import SEO from "../components/seo"
|
import SEO from "../components/seo"
|
||||||
|
@ -8,7 +9,7 @@ import twitchImage from "../images/assets/twitch.jpg"
|
||||||
import twitterImage from "../images/assets/twitter.jpg"
|
import twitterImage from "../images/assets/twitter.jpg"
|
||||||
import steamImage from "../images/assets/steam.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;
|
const HtmlToReactParser = require('html-to-react').Parser;
|
||||||
let parser = new HtmlToReactParser();
|
let parser = new HtmlToReactParser();
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
import React from "react"
|
import React from "react"
|
||||||
|
|
||||||
import { Link, graphql } from "gatsby"
|
import { graphql } from "gatsby"
|
||||||
|
|
||||||
import Layout from "../components/layout"
|
import Layout from "../components/layout"
|
||||||
import SEO from "../components/seo"
|
import SEO from "../components/seo"
|
||||||
|
|
||||||
import styles from "./videos.module.scss"
|
import * as styles from "./videos.module.scss"
|
||||||
|
|
||||||
const makeStyle = function(image) {
|
const makeStyle = function(image) {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue