-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.7 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
{
"name": "robertoachar.dev",
"version": "1.0.0",
"description": "Roberto Achar's personal website.",
"author": {
"name": "Roberto Achar",
"email": "[email protected]",
"url": "https://robertoachar.dev"
},
"license": "CC-BY-NC-SA-4.0",
"private": true,
"scripts": {
"build": "yarn clean && gatsby build",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint src/**/*.{jsx,js}",
"start": "yarn clean && gatsby develop",
"start:remote": "yarn clean && gatsby develop -H 0.0.0.0",
"start:playground": "yarn clean && GATSBY_GRAPHQL_IDE=playground gatsby develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.27",
"@fortawesome/free-brands-svg-icons": "5.12.1",
"@fortawesome/free-regular-svg-icons": "5.12.1",
"@fortawesome/free-solid-svg-icons": "5.12.1",
"@fortawesome/react-fontawesome": "0.1.8",
"@mdx-js/mdx": "1.5.6",
"@mdx-js/react": "1.5.6",
"babel-plugin-styled-components": "1.10.7",
"gatsby": "2.19.19",
"gatsby-image": "2.2.41",
"gatsby-plugin-google-analytics": "2.1.35",
"gatsby-plugin-manifest": "2.2.41",
"gatsby-plugin-mdx": "1.0.73",
"gatsby-plugin-offline": "3.0.35",
"gatsby-plugin-react-helmet": "3.1.22",
"gatsby-plugin-resolve-src": "2.0.0",
"gatsby-plugin-sharp": "2.4.5",
"gatsby-plugin-styled-components": "3.1.19",
"gatsby-plugin-twitter": "2.1.19",
"gatsby-remark-copy-linked-files": "2.1.37",
"gatsby-remark-embedder": "1.11.2",
"gatsby-remark-images": "3.1.44",
"gatsby-remark-lazy-load": "1.0.2",
"gatsby-remark-prismjs": "3.3.31",
"gatsby-remark-relative-images": "0.2.3",
"gatsby-source-filesystem": "2.1.48",
"gatsby-transformer-sharp": "2.3.14",
"lazysizes": "5.2.0",
"normalize.css": "8.0.1",
"prism-react-renderer": "1.0.2",
"prismjs": "1.19.0",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"styled-components": "5.0.1"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.4.0",
"prettier": "1.19.1"
},
"homepage": "https://robertoachar.dev",
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/robertoachar.dev"
},
"bugs": {
"url": "https://github.com/robertoachar/robertoachar.dev/issues"
}
}