-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 2.18 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"@babel/core": "^7.1.2",
"gatsby": "^2.0.19",
"gatsby-image": "^2.0.15",
"gatsby-plugin-catch-links": "^2.0.5",
"gatsby-plugin-google-analytics": "^2.0.7",
"gatsby-plugin-guess-js": "1.0.0",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.7",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-prismjs": "^3.0.2",
"gatsby-remark-relative-images": "^0.2.0",
"gatsby-source-filesystem": "^2.0.5",
"gatsby-transformer-remark": "^2.1.9",
"gatsby-transformer-sharp": "^2.1.4",
"hamburgers": "^1.1.3",
"prism-themes": "^1.0.1",
"prismjs": "^1.15.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0",
"react-sidebar": "^3.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"deploy": "npm run build && gh-pages --dist public --branch master",
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build:doc": "rm -rf content/api && npm run build:doc:webpack && npm run build:doc:ga && npm run build:doc:parser && node infra/generate-api-headers.js",
"build:doc:webpack": "typedoc --readme none --ignoreCompilerErrors --out content/api/webpack --theme markdown ../guess/packages/guess-webpack/src/**/*.ts",
"build:doc:ga": "typedoc --readme none --ignoreCompilerErrors --out content/api/ga --theme markdown ../guess/packages/guess-ga/**/*.ts",
"build:doc:parser": "typedoc --readme none --ignoreCompilerErrors --out content/api/parser --theme markdown ../guess/packages/guess-parser/src/**/*.ts"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"prettier": "^1.14.2",
"typedoc": "^0.13.0",
"typedoc-plugin-markdown": "^1.1.18",
"typescript": "^3.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}