This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
forked from gatsbyjs/gatsby-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 2.21 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
58
59
60
61
{
"name": "gatsby-amp-starter-blog",
"description": "Starter AMP Gatsby Blog",
"version": "1.0.0",
"author": "Chiedo <[email protected]>",
"bugs": {
"url": "https://github.com/chiedo/gatsby-amp-starter-blog/issues"
},
"dependencies": {
"ampifyjs": "^0.0.3",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^4.0.0",
"gatsby": "^1.0.0",
"gatsby-link": "^1.0.0",
"gatsby-plugin-google-analytics": "^1.0.0",
"gatsby-plugin-manifest": "^1.0.0",
"gatsby-plugin-offline": "^1.0.0",
"gatsby-plugin-preact": "^1.0.0",
"gatsby-plugin-react-helmet": "^1.0.0",
"gatsby-plugin-sharp": "^1.0.0",
"gatsby-remark-copy-linked-files": "^1.0.0",
"gatsby-remark-images": "^1.0.0",
"gatsby-remark-prismjs": "^1.0.0",
"gatsby-remark-responsive-iframe": "^1.0.0",
"gatsby-remark-smartypants": "^1.0.0",
"gatsby-source-filesystem": "^1.0.0",
"gatsby-transformer-remark": "^1.0.0",
"gatsby-transformer-sharp": "^1.0.0",
"lodash": "^4.15.0",
"node-sass": "^4.5.3",
"react-responsive-grid": "^0.3.3",
"react-typography": "^0.15.0",
"recursive-readdir": "^2.2.1",
"typeface-merriweather": "^0.0.25",
"typeface-montserrat": "^0.0.24",
"typography": "^0.15.8",
"typography-theme-wordpress-2016": "^0.15.1"
},
"devDependencies": {
"gh-pages": "^0.12.0"
},
"homepage": "https://github.com/chiedo/gatsby-amp-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-amp-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 && mkdir -p public/amp && cp public/index.html public/amp/index.html && cp -r public/blog public/amp/blog && node ampify.js",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}