-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "my-blog",
"version": "1.0.0",
"private": true,
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"predeploy": "gatsby build",
"deploy": "gh-pages -d public"
},
"dependencies": {
"gatsby": "^5.14.0",
"gatsby-plugin-gatsby-cloud": "^5.13.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-json": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.13.3",
"cross-env": "^7.0.3",
"gatsby-plugin-styled-components": "^6.0.0",
"gh-pages": "^6.1.1"
}
}