-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "gatsby-demo-contentful",
"version": "1.0.0",
"description": "Gatsby + Contentful demo",
"main": "index.js",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby serve",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatsby-inc/gatsby-demo-contentful.git"
},
"keywords": [
"gatsby",
"gatsbyjs",
"contentful"
],
"author": "Paul Scanlon <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gatsby-inc/gatsby-demo-contentful/issues"
},
"homepage": "https://github.com/gatsby-inc/gatsby-demo-contentful#readme",
"dependencies": {
"@contentful/rich-text-types": "^15.6.2",
"autoprefixer": "^10.4.0",
"gatsby": "^4.1.4",
"gatsby-plugin-image": "^2.1.2",
"gatsby-plugin-postcss": "^5.1.0",
"gatsby-plugin-react-helmet": "^5.1.0",
"gatsby-plugin-sharp": "^4.1.3",
"gatsby-source-contentful": "^6.1.3",
"gatsby-source-filesystem": "^4.1.2",
"gatsby-transformer-sharp": "^4.1.0",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"husky": "^7.0.4",
"prettier": "^2.4.1",
"prop-types": "^15.7.2"
}
}