-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
{
"name": "gatsby-blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "1.5.0",
"author": "suu3",
"dependencies": {
"@fontsource-variable/montserrat": "^5.0.4",
"@fontsource/merriweather": "^5.0.3",
"@svgr/webpack": "^8.1.0",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"gatsby": "^5.11.0",
"gatsby-plugin-feed": "^5.11.0",
"gatsby-plugin-google-adsense": "^1.1.3",
"gatsby-plugin-google-tagmanager": "^5.13.1",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-remark-autolink-headers": "^6.12.0",
"gatsby-remark-codepen": "^0.1.1",
"gatsby-remark-copy-relative-linked-files": "^1.5.0",
"gatsby-remark-images": "^7.11.0",
"gatsby-remark-prismjs": "^7.11.0",
"gatsby-remark-responsive-iframe": "^6.11.1",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-transformer-remark": "^6.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"lodash": "^4.17.21",
"postcss": "^8.4.30",
"prismjs": "^1.29.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@csstools/postcss-global-data": "^3.0.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"eslint-plugin-flowtype": "^8.0.3",
"gatsby-plugin-pnpm": "^1.2.10",
"gh-pages": "^5.0.0",
"postcss-custom-media": "^11.0.5",
"prettier": "^2.8.8"
},
"homepage": "https://suu3.github.io/",
"keywords": [
"gatsby"
],
"license": "0BSD",
"repository": {
"type": "git",
"url": "git+https://github.com/suu3/suu3.github.io.git"
},
"scripts": {
"deploy": "gatsby clean && gatsby build && gh-pages -d public -b deploy",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"peerDependencies": {
"gatsby": "^5.0.0 || ~4.x.x"
}
}