forked from felipefialho/felipefialho.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.44 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "felipefialho.com",
"private": true,
"description": "My personal website and blog",
"version": "3.0.0",
"author": "Felipe Fialho <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint ./src/",
"lint:fix:js": "eslint ./src/ --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@raae/gatsby-remark-oembed": "^0.1.1",
"@svgr/webpack": "^4.3.2",
"algoliasearch": "^3.33.0",
"dotenv": "^8.1.0",
"gatsby": "^2.14.0",
"gatsby-cli": "^2.8.14",
"gatsby-image": "^2.2.14",
"gatsby-plugin-algolia-search": "^0.5.4",
"gatsby-plugin-catch-links": "^2.1.5",
"gatsby-plugin-feed": "^2.3.9",
"gatsby-plugin-google-analytics": "^2.1.11",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.9",
"gatsby-plugin-netlify": "^2.1.10",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-netlify-cms": "^4.1.11",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.5",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.2.18",
"gatsby-plugin-sitemap": "^2.2.9",
"gatsby-plugin-styled-components": "^3.1.3",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-transition-link": "^1.12.4",
"gatsby-plugin-typography": "^2.3.5",
"gatsby-remark-copy-linked-files": "^2.1.13",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.1.19",
"gatsby-remark-lazy-load": "^1.0.1",
"gatsby-remark-prismjs": "^3.3.9",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-remark-responsive-iframe": "^2.2.10",
"gatsby-remark-smartypants": "^2.1.5",
"gatsby-source-filesystem": "^2.1.18",
"gatsby-transformer-json": "^2.2.6",
"gatsby-transformer-remark": "^2.6.19",
"gatsby-transformer-sharp": "^2.2.12",
"gsap": "^2.1.3",
"lazysizes": "^5.1.1",
"netlify-cms-app": "^2.9.7",
"prismjs": "^1.17.1",
"react": "^16.9.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.1",
"react-instantsearch-dom": "^5.7.0",
"react-responsive": "^7.0.0",
"react-typography": "^0.16.19",
"styled-components": "^4.3.2",
"styled-icons": "^8.3.0",
"styled-media-query": "^2.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.2.2",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^3.0.4",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.0.1",
"stylelint-processor-styled-components": "^1.8.0"
},
"homepage": "https://github.com/felipefialho/felipefialho.github.io#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/felipefialho/felipefialho.github.io.git"
}
}