forked from sendgrid/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·89 lines (89 loc) · 2.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sendgrid-docs",
"description": "SendGrid Docs",
"version": "1.1.0",
"author": "Justin W. Hall <justin.hall@sendgrid.com>",
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-lodash": "^3.3.2",
"babel-polyfill": "^6.26.0",
"gatsby": "^1.9.256",
"gatsby-link": "^1.6.36",
"gatsby-plugin-catch-links": "^1.0.15",
"gatsby-plugin-feed": "^1.3.16",
"gatsby-plugin-google-analytics": "^1.0.17",
"gatsby-plugin-google-tagmanager": "^1.0.19",
"gatsby-plugin-manifest": "^1.0.13",
"gatsby-plugin-nprogress": "^1.0.11",
"gatsby-plugin-offline": "^1.0.13",
"gatsby-plugin-react-helmet": "^2.0.4",
"gatsby-plugin-robots-txt": "^1.1.0",
"gatsby-plugin-sass": "^1.0.25",
"gatsby-plugin-segment-js": "^3.0.1",
"gatsby-plugin-sharp": "^1.6.27",
"gatsby-plugin-sitemap": "^1.2.11",
"gatsby-plugin-twitter": "^1.0.16",
"gatsby-remark-autolink-headers": "^1.4.11",
"gatsby-remark-copy-linked-files": "^1.5.25",
"gatsby-remark-images": "^1.5.41",
"gatsby-remark-prismjs": "^2.0.2",
"gatsby-remark-responsive-iframe": "^1.4.16",
"gatsby-source-filesystem": "^1.5.16",
"gatsby-transformer-remark": "^1.7.30",
"github-slugger": "^1.2.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"marked": "^0.3.19",
"mdast-util-to-string": "^1.0.4",
"prismjs": "^1.14.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-share": "^2.0.0",
"rehype-react": "^3.0.2",
"s3-deploy": "^1.1.1",
"stylelint-selector-bem-pattern": "^2.0.0",
"unist-util-visit": "^1.3.1"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"gh-pages": "^1.1.0",
"prettier": "^1.10.2",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"stylefmt": "^6.0.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"write-good": "^0.11.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/docs/",
"write-good": "write-good $(glob 'content/docs/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}