This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 967
/
package.json
91 lines (91 loc) · 2.8 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
90
91
{
"name": "sendgrid-docs",
"description": "SendGrid Docs",
"version": "1.1.0",
"author": "Justin W. Hall <[email protected]>",
"dependencies": {
"axios": "^0.21.1",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"gatsby": "^2.32.13",
"gatsby-cli": "^2.19.3",
"gatsby-link": "^2.10.0",
"gatsby-plugin-catch-links": "^2.9.0",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-google-analytics": "^2.10.0",
"gatsby-plugin-google-tagmanager": "^2.10.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-nprogress": "^2.9.0",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.9.0",
"gatsby-plugin-robots-txt": "^1.6.2",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-segment-js": "^3.6.1",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.11.0",
"gatsby-plugin-twitter": "^2.9.0",
"gatsby-remark-autolink-headers": "^2.10.0",
"gatsby-remark-copy-linked-files": "^2.9.0",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.12.0",
"gatsby-remark-responsive-iframe": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"github-slugger": "^1.3.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"marked": "^2.0.7",
"mdast-util-to-string": "^1.1.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"prismjs": "^1.23.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-share": "^4.4.0",
"rehype-react": "^5.0.1",
"s3-deploy": "^1.4.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"unist-util-visit": "^2.0.3",
"yarn": "^1.22.10"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^2.2.0",
"prettier": "^2.3.0",
"remark-cli": "^8.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"stylefmt": "^6.0.3",
"stylelint": "^13.13.0",
"stylelint-config-standard": "^20.0.0"
},
"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/",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}