forked from v4iv/gatsby-starter-business
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.21 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
{
"name": "gatsby-starter-business",
"description": "Gatsby Business Website Starter",
"author": "Vaibhav Sharma",
"version": "2.1.1",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "eslint --ext js,jsx --ignore-path .gitignore .",
"lint:fix": "eslint --ext js,jsx --ignore-path .gitignore . --fix",
"clean": "rm -rf public/ .cache/"
},
"dependencies": {
"@gatsby-contrib/gatsby-plugin-elasticlunr-search": "^2.2.1",
"bulma": "^0.7.2",
"gatsby": "^2.14.0",
"gatsby-paginate": "^1.0.17",
"gatsby-plugin-feed": "^2.3.6",
"gatsby-plugin-google-tagmanager": "^2.0.8",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-netlify": "^2.0.7",
"gatsby-plugin-netlify-cms": "^4.1.11",
"gatsby-plugin-nprogress": "^2.0.7",
"gatsby-plugin-offline": "^2.0.21",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-sass": "^2.0.7",
"gatsby-plugin-sharp": "^2.0.18",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-remark-images": "^3.0.1",
"gatsby-remark-relative-images": "^0.2.1",
"gatsby-source-filesystem": "^2.0.17",
"gatsby-transformer-remark": "^2.2.0",
"gatsby-transformer-sharp": "^2.1.12",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"netlify-cms": "^2.3.3",
"node-sass": "^4.11.0",
"prop-types": "^15.6.2",
"react": "^16.9.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.0",
"react-router-dom": "^5.0.1",
"react-share": "^3.0.1",
"uglifyjs-webpack-plugin": "^2.1.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-config-standard-react": "^9.0.0",
"eslint-config-standard-trailing-commas": "^6.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^4.0.1",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.2"
}
}