-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "gatsby-tutorial-starter",
"author": "Justin Formentin",
"title": "Gatsby V2 Tutorial Starter",
"description": "My Blog",
"homepage": "https://gatsby-tutorial-starter.netlify.com",
"license": "MIT",
"version": "0.0.7",
"repository": {
"type": "git",
"url": "https://github.com/justinformentin/gatsby-v2-tutorial-starter"
},
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "rm -rf public && rm -rf .cache",
"format-output": "prettier src/**/*.{js,jsx}",
"format": "prettier --write src/**/*.{js,jsx}",
"lint-errors": "eslint src/**/*.{js,jsx} --quiet",
"lint": "eslint src/**/*.{js,jsx}",
"start": "npm run develop"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"babel-plugin-emotion": "^10.0.17",
"emotion-theming": "^10.0.17",
"gatsby": "^2.15.9",
"gatsby-image": "^2.2.17",
"gatsby-plugin-catch-links": "^2.1.8",
"gatsby-plugin-emotion": "^4.1.5",
"gatsby-plugin-google-analytics": "^2.1.14",
"gatsby-plugin-manifest": "^2.2.14",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.6",
"gatsby-plugin-sharp": "^2.2.20",
"gatsby-plugin-sitemap": "^2.2.10",
"gatsby-plugin-typography": "^2.3.6",
"gatsby-remark-images": "^3.1.20",
"gatsby-remark-prismjs": "^3.3.12",
"gatsby-source-filesystem": "^2.1.21",
"gatsby-transformer-remark": "^2.6.21",
"gatsby-transformer-sharp": "^2.2.13",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-headroom": "^2.2.8",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"typeface-candal": "0.0.54",
"typeface-open-sans": "0.0.54",
"typography": "^0.16.19"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"lighthouse": "^3.2.1",
"prettier": "^1.18.2"
},
"keywords": [
"justin formentin",
"personal blog",
"tutorial",
"gatsby",
"emotion"
]
}