-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "renatofreire-dev-blog",
"private": true,
"description": "This is my personal blog, where I write about software development, posting about front-end, back-end, mobile, project management and career.",
"version": "2.1.0",
"author": "Renato Freire <contato.renatofreire@gmail.com>",
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.19.2",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^4.19.0",
"gatsby-plugin-google-analytics": "^4.19.0",
"gatsby-plugin-image": "^2.19.0",
"gatsby-plugin-manifest": "^4.19.0",
"gatsby-plugin-offline": "^5.19.0",
"gatsby-plugin-react-helmet": "^5.19.0",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sharp": "^4.19.0",
"gatsby-plugin-sitemap": "^5.19.0",
"gatsby-plugin-styled-components": "^5.19.0",
"gatsby-remark-images": "^6.19.0",
"gatsby-remark-lazy-load": "^1.0.2",
"gatsby-remark-prismjs": "^6.19.0",
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-remark": "^5.19.0",
"gatsby-transformer-sharp": "^4.19.0",
"lazysizes": "^5.2.2",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.0.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"plop": "^3.1.1",
"prettier": "2.7.1"
},
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"clean:build": "yarn clean && yarn build",
"clean:start": "yarn clean && yarn start",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"plop": "plop"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}