forked from chiedo/gatsby-amp-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "gatsby-starter-blog",
"description": "Starter Gatsby Blog",
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
},
"dependencies": {
"cheerio": "^0.22.0",
"gatsby": "^0.12.6",
"image-size": "^0.5.0",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"node-sass": "^3.11.1",
"react-helmet": "^3.1.0",
"react-responsive-grid": "^0.3.3",
"react-typography": "^0.14.0",
"recursive-readdir": "^2.1.0",
"rimraf": "^2.5.4",
"safe-access": "^0.1.0",
"sync-request": "^3.0.1",
"typography": "^0.14.0",
"typography-theme-wordpress-2016": "^0.14.0",
"underscore.string": "^3.2.3"
},
"devDependencies": {
"gh-pages": "^0.11.0"
},
"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": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build": "gatsby build && node ampify.js",
"deploy": "gatsby build --prefix-links && gh-pages -d public"
}
}