feat: initial gatsby setup

This commit is contained in:
Felix Schröter 2022-08-01 18:50:53 +02:00
parent 0452e8fa24
commit f4f421ac43
Signed by: felschr
GPG key ID: 671E39E6744C807D
9 changed files with 34983 additions and 3 deletions

41
package.json Normal file
View file

@ -0,0 +1,41 @@
{
"name": "felschr.com",
"version": "1.0.0",
"private": true,
"description": "felschr.com",
"author": "Felix Schröter",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^4.19.2",
"gatsby-plugin-emotion": "^7.19.0",
"gatsby-plugin-image": "^2.19.0",
"gatsby-plugin-manifest": "^4.19.0",
"gatsby-plugin-mdx": "^3.19.0",
"gatsby-plugin-sharp": "^4.19.0",
"gatsby-plugin-sitemap": "^5.19.0",
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-sharp": "^4.19.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"typescript": "^4.7.4"
}
}