-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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.2.2",
"babel-plugin-emotion": "^10.0.6",
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"emotion-theming": "^10.0.6",
"gatsby": "^2.0.91",
"gatsby-image": "^2.0.26",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-emotion": "^4.0.1",
"gatsby-plugin-google-analytics": "^2.0.9",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-offline": "^2.0.21",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-sharp": "^2.0.17",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-plugin-typography": "^2.2.5",
"gatsby-remark-images": "^3.0.1",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-source-filesystem": "^2.0.13",
"gatsby-transformer-remark": "^2.2.0",
"gatsby-transformer-sharp": "^2.1.10",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-headroom": "^2.2.4",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.18",
"typeface-candal": "0.0.54",
"typeface-open-sans": "0.0.54",
"typography": "^0.16.18"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"lighthouse": "^3.2.1",
"prettier": "^1.15.3"
},
"keywords": [
"justin formentin",
"personal blog",
"tutorial",
"gatsby",
"emotion"
]
}