-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.98 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.98 KB
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
{
"name": "loop-gatsby",
"description": "Loop Architectural Website",
"version": "1.0.0",
"author": "Jeff Adkins <jeff@readypress.com>",
"bugs": {
"url": "https://github.com/contentful-userland/gatsby-contentful-starter/issues"
},
"dependencies": {
"bulma": "^0.9.2",
"contentful": "^8.1.7",
"contentful-import": "^7.6.0",
"contentful-management": "^7.8.0",
"cross-env": "^7.0.3",
"gatsby-image": "^2.2.21",
"gatsby-plugin-canonical-urls": "^2.1.8",
"gatsby-plugin-feed": "^2.3.19",
"gatsby-plugin-glamor": "^2.1.8",
"gatsby-plugin-google-tagmanager": "^2.1.10",
"gatsby-plugin-image": "^1.0.0",
"gatsby-plugin-lunr": "^1.5.2",
"gatsby-plugin-manifest": "^2.2.18",
"gatsby-plugin-netlify": "^2.1.15",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-offline": "^3.0.9",
"gatsby-plugin-react-helmet": "^3.1.8",
"gatsby-plugin-sass": "^3.2.0",
"gatsby-plugin-sharp": "^2.2.25",
"gatsby-plugin-sitemap": "^2.2.14",
"gatsby-remark-images-contentful": "^2.1.14",
"gatsby-source-contentful": "^4.6.3",
"gatsby-source-filesystem": "^2.1.26",
"gatsby-transformer-remark": "^2.6.24",
"gatsby-transformer-sharp": "^2.2.17",
"glamor": "^2.20.40",
"graphql": "^15.0.0",
"lodash": "^4.17.11",
"node-sass": "^5.0.0",
"react": "^16.6.3",
"react-dom": "^16.8.6",
"react-google-recaptcha": "^2.0.1",
"react-helmet": "^6.0.0",
"react-infinite-scroll-component": "^6.0.0",
"react-router-dom": "^5.0.1",
"system-font-css": "^2.0.2",
"voca": "^1.4.0",
"yargs-parser": "^20.2.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.13.0",
"gatsby": "^2.8.5",
"gh-pages": "^3.1.0",
"prettier": "^2.0.5"
},
"homepage": "https://github.com/contentful-userland/gatsby-contentful-starter#readme",
"keywords": [
"gatsby",
"contentful"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful-userland/gatsby-contentful-starter.git"
},
"scripts": {
"start": "npm run dev",
"dev": "gatsby develop -o",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md' 'bin/*.js'",
"build": "cross-env GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"serve": "export NODE_ENV=production && gatsby serve -H 0.0.0.0",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix *.js bin/*.js",
"heroku-postbuild": "gatsby build"
},
"resolutions": {
"yargs-parser": "20.2.1"
},
"peerDependencies": {
"gatsby": ">=2"
}
}