From 3594c83118ba0216a30856bf7b037ae6ba34e169 Mon Sep 17 00:00:00 2001 From: Aaron Meese Date: Thu, 24 Mar 2022 21:41:26 -0400 Subject: [PATCH] Reworked directory structure Slowly starting to get things more organized, nowhere near done yet but it's slightly better. --- .gitignore | 2 +- .prettierrc.yaml | 3 -- SECURITY.md | 21 ------------- .../README.md | 0 .../gatsby-browser.js | 0 .../gatsby-config.js | 0 .../gatsby-node.js | 0 .../index.js | 0 .../package.json | 2 +- .../src/colors.json | 0 .../src/components/Card.tsx | 0 .../src/components/Footer.tsx | 0 .../src/components/Header.tsx | 0 .../src/components/Helmet.tsx | 0 .../src/components/Hide.tsx | 0 .../src/components/ImageLabel.tsx | 0 .../src/components/Layout.tsx | 0 .../src/components/Link.tsx | 0 .../src/components/Logo/Contenful.svg | 0 .../src/components/Logo/Gatsby.svg | 0 .../src/components/Logo/Portfolio.svg | 0 .../src/components/MarkdownComponents.tsx | 0 .../src/components/Post.tsx | 0 .../src/components/Project.tsx | 0 .../src/components/ScrollIcon.tsx | 0 .../src/components/Section.tsx | 0 .../src/components/SocialLink.tsx | 0 .../src/components/Triangle.tsx | 0 .../src/icons.ts | 0 .../src/queries/useAboutMeQuery.ts | 0 .../src/queries/useHelmetQuery.ts | 0 .../src/queries/useMediumQuery.ts | 0 .../src/queries/useProjectsQuery.ts | 0 .../src/queries/useSiteQuery.ts | 0 .../src/rebass-preset.d.ts | 0 .../src/sections/About.tsx | 0 .../src/sections/Landing.tsx | 0 .../src/sections/Projects.tsx | 0 .../src/sections/Writing.tsx | 0 .../src/styles/global.css | 0 .../src/templates/Home.tsx | 0 .../src/templates/NotFound.tsx | 0 .../src/theme.ts | 0 .../src/types.ts | 0 .../src/utils/constants.ts | 0 .../src/utils/helpers.ts | 0 .../src/utils/icons.ts | 0 .../src/utils/script.ts | 0 .../src/utils/string.ts | 0 .../tsconfig.json | 0 package.json | 19 ++++++------ {example => website}/README.md | 0 {example => website}/gatsby-config.js | 2 +- {example => website}/icon.png | Bin {example => website}/package.json | 7 +++-- yarn.lock | 28 ++++++++++++++++++ 56 files changed, 44 insertions(+), 40 deletions(-) delete mode 100644 .prettierrc.yaml delete mode 100644 SECURITY.md rename {gatsby-theme-mate => gatsby-theme-neon}/README.md (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/gatsby-browser.js (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/gatsby-config.js (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/gatsby-node.js (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/index.js (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/package.json (98%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/colors.json (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Card.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Footer.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Header.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Helmet.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Hide.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/ImageLabel.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Layout.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Link.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Logo/Contenful.svg (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Logo/Gatsby.svg (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Logo/Portfolio.svg (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/MarkdownComponents.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Post.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Project.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/ScrollIcon.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Section.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/SocialLink.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/components/Triangle.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/icons.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/queries/useAboutMeQuery.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/queries/useHelmetQuery.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/queries/useMediumQuery.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/queries/useProjectsQuery.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/queries/useSiteQuery.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/rebass-preset.d.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/sections/About.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/sections/Landing.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/sections/Projects.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/sections/Writing.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/styles/global.css (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/templates/Home.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/templates/NotFound.tsx (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/theme.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/types.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/utils/constants.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/utils/helpers.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/utils/icons.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/utils/script.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/src/utils/string.ts (100%) rename {gatsby-theme-mate => gatsby-theme-neon}/tsconfig.json (100%) rename {example => website}/README.md (100%) rename {example => website}/gatsby-config.js (88%) rename {example => website}/icon.png (100%) rename {example => website}/package.json (73%) diff --git a/.gitignore b/.gitignore index 755216a..aa58baf 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ public node_modules .env -yarn-error.log \ No newline at end of file +*.log diff --git a/.prettierrc.yaml b/.prettierrc.yaml deleted file mode 100644 index 6f48938..0000000 --- a/.prettierrc.yaml +++ /dev/null @@ -1,3 +0,0 @@ -trailingComma: 'all' -singleQuote: true -printWidth: 80 diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index 034e848..0000000 --- a/SECURITY.md +++ /dev/null @@ -1,21 +0,0 @@ -# Security Policy - -## Supported Versions - -Use this section to tell people about which versions of your project are -currently being supported with security updates. - -| Version | Supported | -| ------- | ------------------ | -| 5.1.x | :white_check_mark: | -| 5.0.x | :x: | -| 4.0.x | :white_check_mark: | -| < 4.0 | :x: | - -## Reporting a Vulnerability - -Use this section to tell people how to report a vulnerability. - -Tell them where to go, how often they can expect to get an update on a -reported vulnerability, what to expect if the vulnerability is accepted or -declined, etc. diff --git a/gatsby-theme-mate/README.md b/gatsby-theme-neon/README.md similarity index 100% rename from gatsby-theme-mate/README.md rename to gatsby-theme-neon/README.md diff --git a/gatsby-theme-mate/gatsby-browser.js b/gatsby-theme-neon/gatsby-browser.js similarity index 100% rename from gatsby-theme-mate/gatsby-browser.js rename to gatsby-theme-neon/gatsby-browser.js diff --git a/gatsby-theme-mate/gatsby-config.js b/gatsby-theme-neon/gatsby-config.js similarity index 100% rename from gatsby-theme-mate/gatsby-config.js rename to gatsby-theme-neon/gatsby-config.js diff --git a/gatsby-theme-mate/gatsby-node.js b/gatsby-theme-neon/gatsby-node.js similarity index 100% rename from gatsby-theme-mate/gatsby-node.js rename to gatsby-theme-neon/gatsby-node.js diff --git a/gatsby-theme-mate/index.js b/gatsby-theme-neon/index.js similarity index 100% rename from gatsby-theme-mate/index.js rename to gatsby-theme-neon/index.js diff --git a/gatsby-theme-mate/package.json b/gatsby-theme-neon/package.json similarity index 98% rename from gatsby-theme-mate/package.json rename to gatsby-theme-neon/package.json index d724086..0f3fe1f 100644 --- a/gatsby-theme-mate/package.json +++ b/gatsby-theme-neon/package.json @@ -1,5 +1,5 @@ { - "name": "gatsby-theme-mate", + "name": "gatsby-theme-neon", "version": "0.0.0", "main": "index.js", "author": "emasuriano", diff --git a/gatsby-theme-mate/src/colors.json b/gatsby-theme-neon/src/colors.json similarity index 100% rename from gatsby-theme-mate/src/colors.json rename to gatsby-theme-neon/src/colors.json diff --git a/gatsby-theme-mate/src/components/Card.tsx b/gatsby-theme-neon/src/components/Card.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Card.tsx rename to gatsby-theme-neon/src/components/Card.tsx diff --git a/gatsby-theme-mate/src/components/Footer.tsx b/gatsby-theme-neon/src/components/Footer.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Footer.tsx rename to gatsby-theme-neon/src/components/Footer.tsx diff --git a/gatsby-theme-mate/src/components/Header.tsx b/gatsby-theme-neon/src/components/Header.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Header.tsx rename to gatsby-theme-neon/src/components/Header.tsx diff --git a/gatsby-theme-mate/src/components/Helmet.tsx b/gatsby-theme-neon/src/components/Helmet.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Helmet.tsx rename to gatsby-theme-neon/src/components/Helmet.tsx diff --git a/gatsby-theme-mate/src/components/Hide.tsx b/gatsby-theme-neon/src/components/Hide.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Hide.tsx rename to gatsby-theme-neon/src/components/Hide.tsx diff --git a/gatsby-theme-mate/src/components/ImageLabel.tsx b/gatsby-theme-neon/src/components/ImageLabel.tsx similarity index 100% rename from gatsby-theme-mate/src/components/ImageLabel.tsx rename to gatsby-theme-neon/src/components/ImageLabel.tsx diff --git a/gatsby-theme-mate/src/components/Layout.tsx b/gatsby-theme-neon/src/components/Layout.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Layout.tsx rename to gatsby-theme-neon/src/components/Layout.tsx diff --git a/gatsby-theme-mate/src/components/Link.tsx b/gatsby-theme-neon/src/components/Link.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Link.tsx rename to gatsby-theme-neon/src/components/Link.tsx diff --git a/gatsby-theme-mate/src/components/Logo/Contenful.svg b/gatsby-theme-neon/src/components/Logo/Contenful.svg similarity index 100% rename from gatsby-theme-mate/src/components/Logo/Contenful.svg rename to gatsby-theme-neon/src/components/Logo/Contenful.svg diff --git a/gatsby-theme-mate/src/components/Logo/Gatsby.svg b/gatsby-theme-neon/src/components/Logo/Gatsby.svg similarity index 100% rename from gatsby-theme-mate/src/components/Logo/Gatsby.svg rename to gatsby-theme-neon/src/components/Logo/Gatsby.svg diff --git a/gatsby-theme-mate/src/components/Logo/Portfolio.svg b/gatsby-theme-neon/src/components/Logo/Portfolio.svg similarity index 100% rename from gatsby-theme-mate/src/components/Logo/Portfolio.svg rename to gatsby-theme-neon/src/components/Logo/Portfolio.svg diff --git a/gatsby-theme-mate/src/components/MarkdownComponents.tsx b/gatsby-theme-neon/src/components/MarkdownComponents.tsx similarity index 100% rename from gatsby-theme-mate/src/components/MarkdownComponents.tsx rename to gatsby-theme-neon/src/components/MarkdownComponents.tsx diff --git a/gatsby-theme-mate/src/components/Post.tsx b/gatsby-theme-neon/src/components/Post.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Post.tsx rename to gatsby-theme-neon/src/components/Post.tsx diff --git a/gatsby-theme-mate/src/components/Project.tsx b/gatsby-theme-neon/src/components/Project.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Project.tsx rename to gatsby-theme-neon/src/components/Project.tsx diff --git a/gatsby-theme-mate/src/components/ScrollIcon.tsx b/gatsby-theme-neon/src/components/ScrollIcon.tsx similarity index 100% rename from gatsby-theme-mate/src/components/ScrollIcon.tsx rename to gatsby-theme-neon/src/components/ScrollIcon.tsx diff --git a/gatsby-theme-mate/src/components/Section.tsx b/gatsby-theme-neon/src/components/Section.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Section.tsx rename to gatsby-theme-neon/src/components/Section.tsx diff --git a/gatsby-theme-mate/src/components/SocialLink.tsx b/gatsby-theme-neon/src/components/SocialLink.tsx similarity index 100% rename from gatsby-theme-mate/src/components/SocialLink.tsx rename to gatsby-theme-neon/src/components/SocialLink.tsx diff --git a/gatsby-theme-mate/src/components/Triangle.tsx b/gatsby-theme-neon/src/components/Triangle.tsx similarity index 100% rename from gatsby-theme-mate/src/components/Triangle.tsx rename to gatsby-theme-neon/src/components/Triangle.tsx diff --git a/gatsby-theme-mate/src/icons.ts b/gatsby-theme-neon/src/icons.ts similarity index 100% rename from gatsby-theme-mate/src/icons.ts rename to gatsby-theme-neon/src/icons.ts diff --git a/gatsby-theme-mate/src/queries/useAboutMeQuery.ts b/gatsby-theme-neon/src/queries/useAboutMeQuery.ts similarity index 100% rename from gatsby-theme-mate/src/queries/useAboutMeQuery.ts rename to gatsby-theme-neon/src/queries/useAboutMeQuery.ts diff --git a/gatsby-theme-mate/src/queries/useHelmetQuery.ts b/gatsby-theme-neon/src/queries/useHelmetQuery.ts similarity index 100% rename from gatsby-theme-mate/src/queries/useHelmetQuery.ts rename to gatsby-theme-neon/src/queries/useHelmetQuery.ts diff --git a/gatsby-theme-mate/src/queries/useMediumQuery.ts b/gatsby-theme-neon/src/queries/useMediumQuery.ts similarity index 100% rename from gatsby-theme-mate/src/queries/useMediumQuery.ts rename to gatsby-theme-neon/src/queries/useMediumQuery.ts diff --git a/gatsby-theme-mate/src/queries/useProjectsQuery.ts b/gatsby-theme-neon/src/queries/useProjectsQuery.ts similarity index 100% rename from gatsby-theme-mate/src/queries/useProjectsQuery.ts rename to gatsby-theme-neon/src/queries/useProjectsQuery.ts diff --git a/gatsby-theme-mate/src/queries/useSiteQuery.ts b/gatsby-theme-neon/src/queries/useSiteQuery.ts similarity index 100% rename from gatsby-theme-mate/src/queries/useSiteQuery.ts rename to gatsby-theme-neon/src/queries/useSiteQuery.ts diff --git a/gatsby-theme-mate/src/rebass-preset.d.ts b/gatsby-theme-neon/src/rebass-preset.d.ts similarity index 100% rename from gatsby-theme-mate/src/rebass-preset.d.ts rename to gatsby-theme-neon/src/rebass-preset.d.ts diff --git a/gatsby-theme-mate/src/sections/About.tsx b/gatsby-theme-neon/src/sections/About.tsx similarity index 100% rename from gatsby-theme-mate/src/sections/About.tsx rename to gatsby-theme-neon/src/sections/About.tsx diff --git a/gatsby-theme-mate/src/sections/Landing.tsx b/gatsby-theme-neon/src/sections/Landing.tsx similarity index 100% rename from gatsby-theme-mate/src/sections/Landing.tsx rename to gatsby-theme-neon/src/sections/Landing.tsx diff --git a/gatsby-theme-mate/src/sections/Projects.tsx b/gatsby-theme-neon/src/sections/Projects.tsx similarity index 100% rename from gatsby-theme-mate/src/sections/Projects.tsx rename to gatsby-theme-neon/src/sections/Projects.tsx diff --git a/gatsby-theme-mate/src/sections/Writing.tsx b/gatsby-theme-neon/src/sections/Writing.tsx similarity index 100% rename from gatsby-theme-mate/src/sections/Writing.tsx rename to gatsby-theme-neon/src/sections/Writing.tsx diff --git a/gatsby-theme-mate/src/styles/global.css b/gatsby-theme-neon/src/styles/global.css similarity index 100% rename from gatsby-theme-mate/src/styles/global.css rename to gatsby-theme-neon/src/styles/global.css diff --git a/gatsby-theme-mate/src/templates/Home.tsx b/gatsby-theme-neon/src/templates/Home.tsx similarity index 100% rename from gatsby-theme-mate/src/templates/Home.tsx rename to gatsby-theme-neon/src/templates/Home.tsx diff --git a/gatsby-theme-mate/src/templates/NotFound.tsx b/gatsby-theme-neon/src/templates/NotFound.tsx similarity index 100% rename from gatsby-theme-mate/src/templates/NotFound.tsx rename to gatsby-theme-neon/src/templates/NotFound.tsx diff --git a/gatsby-theme-mate/src/theme.ts b/gatsby-theme-neon/src/theme.ts similarity index 100% rename from gatsby-theme-mate/src/theme.ts rename to gatsby-theme-neon/src/theme.ts diff --git a/gatsby-theme-mate/src/types.ts b/gatsby-theme-neon/src/types.ts similarity index 100% rename from gatsby-theme-mate/src/types.ts rename to gatsby-theme-neon/src/types.ts diff --git a/gatsby-theme-mate/src/utils/constants.ts b/gatsby-theme-neon/src/utils/constants.ts similarity index 100% rename from gatsby-theme-mate/src/utils/constants.ts rename to gatsby-theme-neon/src/utils/constants.ts diff --git a/gatsby-theme-mate/src/utils/helpers.ts b/gatsby-theme-neon/src/utils/helpers.ts similarity index 100% rename from gatsby-theme-mate/src/utils/helpers.ts rename to gatsby-theme-neon/src/utils/helpers.ts diff --git a/gatsby-theme-mate/src/utils/icons.ts b/gatsby-theme-neon/src/utils/icons.ts similarity index 100% rename from gatsby-theme-mate/src/utils/icons.ts rename to gatsby-theme-neon/src/utils/icons.ts diff --git a/gatsby-theme-mate/src/utils/script.ts b/gatsby-theme-neon/src/utils/script.ts similarity index 100% rename from gatsby-theme-mate/src/utils/script.ts rename to gatsby-theme-neon/src/utils/script.ts diff --git a/gatsby-theme-mate/src/utils/string.ts b/gatsby-theme-neon/src/utils/string.ts similarity index 100% rename from gatsby-theme-mate/src/utils/string.ts rename to gatsby-theme-neon/src/utils/string.ts diff --git a/gatsby-theme-mate/tsconfig.json b/gatsby-theme-neon/tsconfig.json similarity index 100% rename from gatsby-theme-mate/tsconfig.json rename to gatsby-theme-neon/tsconfig.json diff --git a/package.json b/package.json index 7dc012f..5b4986d 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,23 @@ { - "name": "gatsby-starter-theme-workspace", + "name": "meese.enterprises", "private": true, "version": "0.0.0", "main": "index.js", "license": "0BSD", "scripts": { - "example": "env-cmd --silent yarn workspace example", - "theme": "env-cmd --silent yarn workspace gatsby-theme-mate", - "clean": "yarn example clean", - "start": "yarn example start", - "build": "yarn example build", - "serve": "yarn example serve", - "test": "yarn example test", + "website": "env-cmd --silent yarn workspace website", + "theme": "env-cmd --silent yarn workspace gatsby-theme-neon", + "clean": "yarn website clean", + "start": "yarn website start", + "build": "yarn website build", + "serve": "yarn website serve", "test:ci": "yarn build && start-server-and-test serve 5000", "check-types": "yarn theme check-types", "release": "yarn theme release" }, "workspaces": [ - "gatsby-theme-mate", - "example" + "gatsby-theme-neon", + "website" ], "devDependencies": { "env-cmd": "^10.1.0", diff --git a/example/README.md b/website/README.md similarity index 100% rename from example/README.md rename to website/README.md diff --git a/example/gatsby-config.js b/website/gatsby-config.js similarity index 88% rename from example/gatsby-config.js rename to website/gatsby-config.js index c4b8dc9..9dda28c 100644 --- a/example/gatsby-config.js +++ b/website/gatsby-config.js @@ -5,7 +5,7 @@ const { ACCESS_TOKEN, SPACE_ID, DETERMINISTIC } = process.env; module.exports = { plugins: [ { - resolve: `gatsby-theme-mate`, + resolve: `gatsby-theme-neon`, options: { accessToken: ACCESS_TOKEN, spaceId: SPACE_ID, diff --git a/example/icon.png b/website/icon.png similarity index 100% rename from example/icon.png rename to website/icon.png diff --git a/example/package.json b/website/package.json similarity index 73% rename from example/package.json rename to website/package.json index c5e128b..834c6ff 100644 --- a/example/package.json +++ b/website/package.json @@ -1,6 +1,7 @@ { - "name": "example", - "version": "1.0.0", + "name": "website", + "private": true, + "version": "0.0.0", "main": "index.js", "author": "@emasuriano", "license": "MIT", @@ -12,7 +13,7 @@ }, "dependencies": { "gatsby": "^4.10.1", - "gatsby-theme-mate": "0.0.0", + "gatsby-theme-neon": "file:../gatsby-theme-neon", "react": "^17.0.2", "react-dom": "^17.0.2" } diff --git a/yarn.lock b/yarn.lock index 6b1336a..b5802ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6709,6 +6709,34 @@ gatsby-telemetry@^3.10.0: lodash "^4.17.21" node-fetch "^2.6.7" +"gatsby-theme-neon@file:gatsby-theme-neon": + version "0.0.0" + dependencies: + "@fortawesome/fontawesome-svg-core" "^1.2.36" + "@fortawesome/free-brands-svg-icons" "^5.15.4" + "@fortawesome/free-solid-svg-icons" "^5.15.4" + "@fortawesome/react-fontawesome" "^0.1.15" + "@rebass/preset" "^4.0.5" + "@tippy.js/react" "^3.1.1" + assert "^2.0.0" + babel-plugin-styled-components "^2.0.6" + gatsby-plugin-image "^2.10.0" + gatsby-plugin-manifest "^4.10.1" + gatsby-plugin-react-helmet "^5.10.0" + gatsby-plugin-sharp "^4.10.1" + gatsby-plugin-styled-components "^5.10.0" + gatsby-plugin-typescript "^4.10.0" + gatsby-source-contentful "^7.8.1" + gatsby-source-medium "^4.10.0" + gatsby-transformer-remark "^5.10.1" + react-awesome-reveal "^3.8.1" + react-headroom "^3.2.0" + react-helmet "^6.1.0" + react-markdown "^7.0.0" + react-text-loop "^2.3.0" + rebass "^4.0.7" + styled-components "^5.3.3" + gatsby-transformer-remark@^5.10.1: version "5.10.1" resolved "https://registry.yarnpkg.com/gatsby-transformer-remark/-/gatsby-transformer-remark-5.10.1.tgz#6e4d73eef1cef42abfb2db1a9ada999aeaa76228"