forked from sendgrid/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·88 lines (88 loc) · 2.73 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
{
"name": "sendgrid-docs",
"description": "SendGrid Docs",
"version": "1.1.0",
"author": "Justin W. Hall <justin.hall@sendgrid.com>",
"dependencies": {
"axios": "^0.19.0",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"gatsby": "^2.19.34",
"gatsby-link": "^2.2.22",
"gatsby-plugin-catch-links": "^2.1.15",
"gatsby-plugin-feed": "^2.3.18",
"gatsby-plugin-google-analytics": "^2.1.23",
"gatsby-plugin-google-tagmanager": "^2.1.15",
"gatsby-plugin-manifest": "^2.2.23",
"gatsby-plugin-nprogress": "^2.1.12",
"gatsby-plugin-offline": "^3.0.16",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2.1.20",
"gatsby-plugin-segment-js": "^3.0.1",
"gatsby-plugin-sharp": "^2.2.32",
"gatsby-plugin-sitemap": "^2.2.19",
"gatsby-plugin-twitter": "^2.1.12",
"gatsby-remark-autolink-headers": "^2.1.16",
"gatsby-remark-copy-linked-files": "^2.1.28",
"gatsby-remark-images": "^3.1.28",
"gatsby-remark-prismjs": "^3.3.20",
"gatsby-remark-responsive-iframe": "^2.2.25",
"gatsby-source-filesystem": "^2.1.33",
"gatsby-transformer-remark": "^2.6.30",
"github-slugger": "^1.2.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"lodash-webpack-plugin": "^0.11.5",
"marked": "^0.7.0",
"mdast-util-to-string": "^1.0.6",
"node-sass": "^4.12.0",
"prismjs": "^1.17.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-share": "^3.0.1",
"rehype-react": "^4.0.1",
"s3-deploy": "^1.4.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"unist-util-visit": "^2.0.0"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^2.1.1",
"prettier": "^1.18.2",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.3",
"stylefmt": "^6.0.3",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.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"
]
}
}