-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
{
"name": "gatsby-starter-blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@mdx-js/mdx": "^1.6.18",
"@mdx-js/react": "^1.6.18",
"babel-plugin-styled-components": "^1.10.7",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs-title": "^1.0.0",
"prismjs": "^1.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"styled-components": "^5.1.0",
"typography": "^0.16.19"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^5.1.0",
"@types/typography": "^0.16.3",
"gastby": "^1.0.1",
"gatsby": "^4.13.1",
"gatsby-plugin-feed": "^4.13.0",
"gatsby-plugin-google-analytics": "^4.13.0",
"gatsby-plugin-image": "^2.13.0",
"gatsby-plugin-manifest": "^4.13.0",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-react-helmet": "^5.13.0",
"gatsby-plugin-sharp": "^4.13.0",
"gatsby-plugin-styled-components": "^5.13.0",
"gatsby-plugin-typescript": "^4.13.0",
"gatsby-plugin-typography": "^4.13.0",
"gatsby-remark-autolink-headers": "^5.13.0",
"gatsby-remark-copy-linked-files": "^5.13.0",
"gatsby-remark-images": "^6.13.0",
"gatsby-remark-prismjs": "^6.13.0",
"gatsby-remark-responsive-iframe": "^5.13.0",
"gatsby-remark-smartypants": "^5.13.0",
"gatsby-source-filesystem": "^4.13.0",
"gatsby-transformer-sharp": "^4.13.0",
"prettier": "2.0.5",
"typescript": "^3.8.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
}
}