-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.16 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
{
"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": {
"gatsby-image": "^2.0.38",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.34",
"gatsby-source-contentful": "^2.0.48",
"gatsby-transformer-remark": "^2.3.8",
"gatsby-transformer-sharp": "^2.1.18",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"sharp": "^0.22.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chalk": "^2.4.2",
"contentful-import": "^7.4.3",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"gatsby": "^2.3.22",
"gh-pages": "^2.0.1",
"inquirer": "^6.2.2",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"yargs-parser": "^13.0.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": "rimraf bin contentful && yarn remove contentful-import chalk inquirer rimraf "
}
}