-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.49 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": "frank-pigeon-blog",
"version": "1.0.0",
"description": "Frank Pigeon Blog",
"keywords": [
"blog",
"gatsby",
"gatsby-plugin",
"gatsby-theme",
"starter"
],
"homepage": "https://frankpigeon.com",
"bugs": {
"url": "https://github.com/maxpou/gatsby-starter-morning-dew/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:fpigeonjr/frank-pigeon-blog.git"
},
"license": "MIT",
"author": "Frank Pigeon <[email protected]>",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js' 'data/siteConfig.js' 'gatsby-*.js'",
"generatePostPreviewImages": "node ./scripts/generatePostPreviewImages.js",
"lh": "lighthousebot",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"semantic-release": "semantic-release",
"start": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"dependencies": {
"@mdx-js/mdx": "^1.0.23",
"@mdx-js/react": "^1.0.23",
"babel-plugin-styled-components": "^1.10.6",
"disqus-react": "^1.0.6",
"gatsby": "^2.13.7",
"gatsby-image": "^2.2.4",
"gatsby-plugin-compile-es6-packages": "^1.1.0",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-mdx": "^1.0.8",
"gatsby-plugin-offline": "^2.2.1",
"gatsby-plugin-page-creator": "^2.1.2",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^2.2.3",
"gatsby-plugin-styled-components": "^3.1.0",
"gatsby-remark-autolink-headers": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.1.0",
"gatsby-remark-images": "^3.1.3",
"gatsby-remark-prismjs": "^3.3.1",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.1.0",
"gatsby-source-filesystem": "^2.1.2",
"gatsby-transformer-remark": "^2.6.1",
"gatsby-transformer-sharp": "^2.2.1",
"lodash": "^4.17.5",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.14.2",
"lighthousebot": "https://github.com/GoogleChromeLabs/lighthousebot",
"prettier": "^1.18.2",
"puppeteer": "^1.17.0",
"semantic-release": "^15.13.18",
"yaml": "^1.6.0"
},
"peerDependencies": {
"gatsby": "^2.13.7",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}