-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.96 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
{
"name": "gatsby-contentful-starter",
"description": "Starter Contentful Gatsby Blog",
"version": "1.0.0",
"author": "Stefan Judis <[email protected]>",
"bugs": {
"url": "https://github.com/contentful-userland/gatsby-contentful-starter/issues"
},
"dependencies": {
"@fancyapps/fancybox": "^3.5.7",
"bootstrap": "^4.4.1",
"fb": "^2.0.0",
"firebase": "^7.14.3",
"flickity": "^2.2.1",
"gatsby-image": "^2.4.3",
"gatsby-plugin-firebase": "^0.1.8",
"gatsby-plugin-manifest": "^2.4.2",
"gatsby-plugin-postcss": "^2.3.1",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sass": "^2.3.1",
"gatsby-plugin-sharp": "^2.6.2",
"gatsby-remark-instagram-embed": "^1.0.0",
"gatsby-remark-responsive-iframe": "^2.4.2",
"gatsby-source-contentful": "^2.3.3",
"gatsby-transformer-remark": "^2.8.7",
"gatsby-transformer-sharp": "^2.5.2",
"jquery": "3.3.1",
"jquery-mousewheel": "^3.1.13",
"lg-thumbnail": "^1.2.0",
"lg-video": "^1.3.0",
"lightgallery.js": "^1.1.3",
"lodash": "^4.17.11",
"node-sass": "^4.14.1",
"photoswipe": "^4.1.3",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"sharp": "^0.22.0",
"swiper": "^5.3.8",
"vanilla-lazyload": "^12.5.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chalk": "^2.4.2",
"contentful-import": "^7.7.14",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.19.0",
"firebase-tools": "^7.16.2",
"gatsby": "^2.21.19",
"gh-pages": "^2.2.0",
"inquirer": "^6.2.2",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"yargs-parser": "^13.1.2"
},
"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": {
"dev": "npm run develop",
"develop": "gatsby develop",
"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": "gatsby build",
"postbuild": "firebase deploy",
"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",
"postinstall": "node ./bin/hello.js",
"setup": "node ./bin/setup.js",
"start": "npm run develop",
"heroku-postbuild": "gatsby build",
"cleanup-repository": "rimraf bin contentful && yarn remove contentful-import chalk inquirer rimraf "
}
}