forked from kadhirash/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "gatsby-source-contentful",
"description": "Gatsby source plugin for building websites using the Contentful CMS as a data source",
"version": "3.0.1",
"author": "Marcus Ericsson <[email protected]> (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@contentful/rich-text-types": "^14.1.1",
"@hapi/joi": "^15.1.1",
"axios": "^1.6.0",
"base64-img": "^1.0.4",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"contentful": "^10.4.0",
"fs-extra": "^9.0.1",
"gatsby-core-utils": "^1.3.23",
"gatsby-plugin-utils": "^0.2.37",
"gatsby-source-filesystem": "^2.3.35",
"is-online": "^8.5.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"progress": "^2.0.3",
"qs": "^6.9.4"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"babel-preset-gatsby-package": "^0.5.3",
"cross-env": "^7.0.2"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"license": "MIT",
"peerDependencies": {
"gatsby": "^2.12.1",
"gatsby-plugin-sharp": "^2.6.14"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-source-contentful"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__ --ignore **/__fixtures__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__ --ignore **/__fixtures__"
},
"engines": {
"node": ">=10.13.0"
}
}