-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "fantm-documentation",
"version": "1.0.0",
"private": true,
"description": "FANTM Documentation",
"author": "Ezra Boley",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby build && gatsby serve",
"develop": "gatsby develop -H 0.0.0.0",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public",
"pretty": "prettier --write src && prettier --write gatsby-config.js && prettier --write gatsby-node.js && prettier --write gatsby-browser.js && prettier --write gatsby-ssr.js"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"core-js": "^3.16.2",
"gatsby": "^3.12.0",
"gatsby-plugin-image": "^1.0.1",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-mdx": "^2.0.1",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-plugin-sitemap": "^3.0.0",
"gatsby-remark-images": "^4.2.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-remark-responsive-iframe": "^4.9.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-yaml": "^3.0.0",
"prism-react-renderer": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"prettier": "^2.2.1"
}
}