-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.71 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
{
"name": "gatsby-clean-blog",
"description": "This gatsby starter aims to be a feature rich blog template with minimal design and sharp attention to typography and typesetting.",
"version": "1.0.0",
"author": "John C. Munson <[email protected]>",
"dependencies": {
"@researchgate/react-intersection-observer": "^0.7.4",
"@sindresorhus/slugify": "^0.4.0",
"babel-plugin-styled-components": "^1.8.0",
"dotenv": "^6.2.0",
"gatsby": "^2.0.0",
"gatsby-image": "^2.0.13",
"gatsby-plugin-catch-links": "^2.0.4",
"gatsby-plugin-lodash": "^3.0.3",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-nprogress": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-styled-components": "^3.0.0",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-autolink-headers": "^2.0.6",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-source-filesystem": "^2.0.3",
"gatsby-transformer-remark": "^2.1.7",
"gatsby-transformer-sharp": "^2.1.3",
"intersection-observer": "^0.5.1",
"googleapis": "^36.0.0",
"lodash": "^4.17.11",
"polished": "^2.2.0",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-ga": "^2.5.6",
"react-github-corner": "^2.3.0",
"react-headroom": "2.2.2",
"react-helmet": "^5.2.0",
"react-scroll": "^1.7.10",
"react-sticky-box": "^0.7.1",
"react-typography": "^0.16.13",
"rehype-react": "^3.1.0",
"styled-components": "^4.0.2",
"typography": "^0.16.17"
},
"keywords": [
"gatsby",
"blog",
"minimal",
"typography"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"format": "prettier --write '{,!(node_modules|.cache|public)/**/}*.{js,json,css,md}'",
"lint": "./node_modules/.bin/eslint '{,!(node_modules|.cache|public)/**/}*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"eyes": "^0.1.8",
"husky": "^1.0.0-rc.14",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{,!(node_modules|.cache|public)/**/}*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/johncmunson/gatsby-clean-blog"
}
}