-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.83 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "gatsby-starter-default",
"private": true,
"description": "My blog",
"version": "0.1.0",
"author": "Raphael Barreto <[email protected]>",
"dependencies": {
"algoliasearch": "^4.2.0",
"dotenv": "^8.2.0",
"gatsby": "^2.20.35",
"gatsby-cli": "^2.12.21",
"gatsby-image": "^2.3.5",
"gatsby-plugin-algolia-search": "0.5.0",
"gatsby-plugin-manifest": "^2.4.11",
"gatsby-plugin-netlify-cms": "^4.3.5",
"gatsby-plugin-offline": "^3.1.5",
"gatsby-plugin-react-helmet": "^3.2.5",
"gatsby-plugin-sharp": "^2.5.7",
"gatsby-plugin-sitemap": "^2.4.5",
"gatsby-plugin-styled-components": "^3.3.0",
"gatsby-plugin-transition-link": "^1.18.0",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-lazy-load": "^1.0.2",
"gatsby-remark-prismjs": "^3.5.2",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-source-filesystem": "^2.2.5",
"gatsby-transformer-remark": "^2.8.8",
"gatsby-transformer-sharp": "^2.4.7",
"gsap": "^3.3.1",
"lazysizes": "^5.2.1",
"netlify-cms-app": "^2.12.14",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.12.0",
"react-ga": "^3.0.0",
"react-helmet": "^6.0.0",
"react-instantsearch-dom": "^6.5.0",
"styled-components": "^5.1.0",
"styled-icons": "^10.2.1",
"styled-media-query": "^2.1.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@hot-loader/react-dom": "^16.13.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.0.4",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"develop:playground": "cross-env GATSBY_GRAPHQL_IDE=playground gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}