-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,tsx,ts,json,md,scss,css}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "./node_modules/typescript/bin/tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@fontsource/domine": "^4.5.9",
"@fontsource/fira-code": "^4.5.13",
"@fontsource/roboto": "^4.5.8",
"@fontsource/source-sans-pro": "^4.5.11",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.21.0",
"gatsby-plugin-google-analytics": "^3.7.1",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-manifest": "^3.7.1",
"gatsby-plugin-mdx": "^2.7.1",
"gatsby-plugin-offline": "^4.7.1",
"gatsby-plugin-prettier-eslint": "^1.0.6",
"gatsby-plugin-react-helmet": "^4.7.1",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-plugin-sitemap": "5.25.0",
"gatsby-plugin-styled-components": "^5.21.0",
"gatsby-remark-images": "^5.4.1",
"gatsby-remark-prismjs": "^5.4.1",
"gatsby-remark-responsive-iframe": "^4.4.1",
"gatsby-source-filesystem": "^3.7.1",
"gatsby-transformer-sharp": "^3.7.1",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.23.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"styled-components": "^5.3.5",
"styled-components-breakpoint": "^2.1.1",
"styled-components-spacing": "^3.1.1"
},
"devDependencies": {
"@types/react": "^18.0.6",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-remark-code-titles": "^1.1.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"engines": {
"node": ">=14.6.0"
}
}