-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
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
{
"name": "nicks-blog",
"description": "Nick's programming blog",
"version": "1.0.0",
"author": "Nick drane <nick@nickdrane.com>",
"dependencies": {
"gatsby": "^2.13.77",
"gatsby-image": "^2.2.14",
"gatsby-plugin-canonical-urls": "^2.0.7",
"gatsby-plugin-feed": "^2.0.11",
"gatsby-plugin-google-analytics": "^2.0.7",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sass": "^2.0.4",
"gatsby-plugin-sharp": "^2.0.12",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-copy-linked-files": "^2.0.6",
"gatsby-remark-images": "^3.1.16",
"gatsby-remark-mermaid": "^1.2.0",
"gatsby-remark-prismjs": "^3.0.2",
"gatsby-source-filesystem": "^2.0.5",
"gatsby-transformer-remark": "^2.1.13",
"gatsby-transformer-sharp": "^2.2.12",
"gh-pages": "^2.0.1",
"node-html-parser": "^1.1.16",
"node-sass": "^4.10.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.15.0",
"qs": "^6.5.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"typescript": "^3.6.3",
"typography": "^0.16.17",
"typography-theme-github": "^0.16.19",
"url-join": "^4.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production gatsby build",
"dev": "NODE_ENV=development gatsby develop",
"prod": "NODE_ENV=production gatsby build && gatsby serve",
"format": "prettier --write '**/*.js'",
"deploy": "gatsby build && touch public/CNAME && echo nickdrane.com > public/CNAME && gh-pages -d public"
},
"devDependencies": {
"prettier": "^1.14.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}