This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "contentful-starter-gatsby-blog",
"description": "Contentful Gatsby Starter Blog",
"private": true,
"version": "0.0.1",
"author": "Contentful <[email protected]>",
"bugs": {
"url": "https://github.com/contentful/starter-gatsby-blog/issues"
},
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^15.12.1",
"@mdx-js/mdx": "^2.1.5",
"@mdx-js/react": "^2.1.5",
"gatsby": "^5.2.0",
"gatsby-plugin-image": "^3.2.0",
"gatsby-plugin-mdx": "^5.2.0",
"gatsby-plugin-react-helmet": "^6.2.0",
"gatsby-plugin-sharp": "^5.2.0",
"gatsby-remark-images-contentful": "^6.2.0",
"gatsby-remark-prismjs": "^7.2.0",
"gatsby-source-contentful": "^8.2.0",
"gatsby-transformer-remark": "^6.2.0",
"gatsby-transformer-sharp": "^5.2.0",
"gh-pages": "^3.2.3",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.3",
"reading-time": "^2.0.0-1",
"remark-emoji": "^3.0.2",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"contentful-import": "^8.0.0",
"gatsby-provision-contentful": "0.0.3",
"netlify-cli": "^10.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/contentful/starter-gatsby-blog#readme",
"keywords": [
"gatsby",
"contentful",
"starter"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/starter-gatsby-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"heroku-postbuild": "gatsby build",
"serve": "gatsby serve",
"postinstall": "node ./bin/hello.js",
"setup": "node ./bin/setup.js",
"netlify:login": "netlify login",
"netlify:deploy": "netlify deploy -d public -p",
"gatsby-provision": "gatsby-provision-contentful --contentful-data-path='./contentful/export.json' --space-id=$CONTENTFUL_SPACE_ID --management-token=$CONTENTFUL_MANAGEMENT_TOKEN",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}