-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
{
"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": {
"axios": "^0.15.3",
"gatsby": "^1.0.0-alpha10",
"glamor": "^2.20.20",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"qs": "^6.3.0",
"react-document-title": "^2.0.2",
"react-headroom": "^2.1.3",
"react-helmet": "^3.3.0",
"react-icons": "^2.2.3",
"react-overlays": "^0.6.10",
"react-responsive-grid": "^0.3.3",
"react-typography": "^0.12.0",
"safe-access": "^0.1.0",
"typography": "^0.13.3",
"typography-theme-wordpress-2016": "^0.13.0",
"underscore.string": "^3.2.3"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"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",
"prod": "gatsby build; gatsby serve-build",
"serve-build": "gatsby serve-build",
"deploy": "gatsby build --prefix-links && gh-pages -d public"
}
}