forked from bluepeter/gatsby-material-ui-business-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "gatsby-material-ui-business-starter",
"version": "1.0.1",
"author": "Peter Bray <[email protected]>",
"description": "Beautiful Gatsby Material Design Business Starter",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"lint": "eslint src/ && prettier --check 'src/**/*.js'",
"fix": "eslint --fix src/ && prettier --write 'src/**/*.js'",
"start": "npm run develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"@material-ui/core": "4.9.11",
"@material-ui/styles": "4.9.10",
"gatsby": "2.20.25",
"gatsby-plugin-react-helmet": "3.2.4",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-stylus": "2.2.3",
"gatsby-source-contentful": "^2.3.3",
"gatsby-source-filesystem": "2.2.4",
"gatsby-transformer-remark": "2.7.3",
"gh-pages": "2.2.0",
"jss": "10.1.1",
"mdi-material-ui": "6.13.2",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.0.0",
"react-jss": "10.1.1",
"react-swipeable-views": "0.13.9",
"react-swipeable-views-utils": "0.13.9"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"prettier": "2.0.4"
}
}