-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.7 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
{
"name": "gatsby-contentful-starter",
"description": "Starter Contentful Gatsby Blog",
"version": "1.0.0",
"author": "Stefan Judis <stefanjudis@gmail.com>",
"bugs": {
"url": "https://github.com/contentful-userland/gatsby-contentful-starter/issues"
},
"dependencies": {
"@contentful/gatsby-transformer-contentful-richtext": "^13.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"bootstrap": "^4.5.2",
"core-js": "^3.8.3",
"gatsby-image": "^2.3.4",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-react-helmet": "^3.2.4",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.5.6",
"gatsby-source-contentful": "^4.5.1",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-remark": "^2.7.3",
"gatsby-transformer-sharp": "^2.4.6",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-masonry-css": "^1.0.14",
"sharp": "^0.25.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chalk": "^4.0.0",
"contentful-import": "^7.7.8",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"gatsby": "^2.31.1",
"gh-pages": "^2.2.0",
"inquirer": "^7.1.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"yargs-parser": "^18.1.3"
},
"engines": {
"node": ">=10.13.0"
},
"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",
"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": "yarn remove contentful-import chalk inquirer && node ./bin/cleanup.js && rimraf bin contentful"
}
}