-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.32 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-personal-website-blog",
"private": true,
"description": "Personal portfolio/blog",
"version": "0.5.0",
"author": "Gordon Meszaros",
"dependencies": {
"@fontsource/lato": "^4.5.9",
"@fontsource/playfair-display": "^4.5.11",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"autoprefixer": "^10.4.8",
"gatsby": "^4.25.7",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-gtag": "^4.20.0",
"gatsby-plugin-manifest": "^4.20.0",
"gatsby-plugin-mdx": "^3.20.0",
"gatsby-plugin-offline": "^5.20.0",
"gatsby-plugin-postcss": "^5.20.0",
"gatsby-plugin-preload-fonts": "^3.20.0",
"gatsby-plugin-react-helmet": "^5.20.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-remark-autolink-headers": "^5.20.0",
"gatsby-remark-classes": "^1.0.2",
"gatsby-remark-images": "^6.20.0",
"gatsby-source-filesystem": "^4.20.0",
"gatsby-transformer-sharp": "^4.20.0",
"hamburger-react": "^2.5.0",
"postcss": "^8.4.16",
"prism-react-renderer": "^1.3.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/mdx-js__react": "^1.5.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^28.1.3",
"babel-preset-gatsby": "^2.20.0",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.4"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint . --ext ts --ext tsx",
"type-check": "tsc --noEmit",
"clean": "gatsby clean",
"preload-fonts": "gatsby-preload-fonts",
"test": "jest"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}