-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "docs-site",
"description": "Gatsby example site",
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"chroma-js": "^0.7.2",
"color-pairs-picker": "^1.3.5",
"gatsby": "^0.12.6",
"lodash": "^4.15.0",
"node-static": "^0.7.8",
"react-document-title": "^2.0.1",
"react-motion": "^0.1.0",
"react-responsive-grid": "^0.3.3",
"react-typography": "^0.12.0",
"typography": "^0.13.0",
"typography-plugin-code": "^0.13.0",
"underscore.string": "^3.2.2"
},
"devDependencies": {
"front-matter": "^2.1.0",
"gh-pages": "^0.11.0",
"highlight.js": "^9.7.0",
"markdown-it": "^8.0.0",
"markdown-it-replace-link": "^1.0.0",
"object-assign": "^4.1.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"deployLocalHelp": "export PREFIXLINKS='0' && gatsby build && node deployLocalHelp.js",
"deployWebHelp": "export PREFIXLINKS='1' && gatsby build --prefix-links && node deployWebHelp.js",
"build": "gatsby build",
"deploy": "export PREFIXLINKS='0' && gatsby build && node deployLocalHelp.js && export PREFIXLINKS='1' && gatsby build --prefix-links && node deployWebHelp.js"
}
}