-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
78
79
{
"name": "gatsby-source-contentstack",
"version": "5.3.4",
"description": "Gatsby source plugin for building websites using Contentstack as a data source",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir .",
"watch": "babel -w src --out-dir .",
"test": "jest —-colors",
"test:watch": "jest —-colors --watch"
},
"engines": {
"node": ">=18.0.0"
},
"main": "gatsby-node.js",
"repository": {
"type": "git",
"url": "https://github.com/contentstack/gatsby-source-contentstack"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"author": {
"name": "Contentstack",
"url": "https://www.contentstack.com"
},
"license": "MIT",
"dependencies": {
"@contentstack/utils": "^1.1.3",
"contentstack": "^3.19.0",
"gatsby-core-utils": "^3.23.0",
"gatsby-source-filesystem": "^5.7.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isempty": "^4.4.0",
"node-fetch": "^2.6.9",
"progress": "^2.0.3",
"query-string": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^11.0.0",
"@types/jest": "^29.5.7",
"babel-eslint": "10.0.3",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"prettier": "^1.5.3",
"semantic-release": "^24.2.0"
},
"peerDependencies": {
"gatsby": "^5.14.0",
"gatsby-plugin-image": "^3.0.0-next"
},
"husky": {
"hooks": {
"commit-msg": "npx --no-install commitlint --edit ${1}"
}
},
"resolutions": {
"@semantic-release/commit-analyzer/semantic-release": "^17.0.0"
}
}