forked from fikaproductions/fika-gatsby-source-cockpit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "occamy-gatsby-source-cockpit",
"version": "1.2.9",
"description": "This is a Gatsby version 5.x.x source plugin that feeds the GraphQL tree with Cockpit Headless CMS collections and singletons data. Actually, it supports querying raw texts (and any trivial field types), Markdown, images, galleries, assets, sets, repeaters, layout(-grid)s (currently only without nested images/assets), objects, linked collections and internationalization.",
"main": "gatsby-node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"cockpit",
"cockpit-cms",
"headless-cms",
"fika",
"productions",
"occamy"
],
"author": "Fika Productions <[email protected]>, Occamy s.r.o. <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/JunekCZ/occamy-gatsby-source-cockpit.git"
},
"bugs": {
"url": "https://github.com/JunekCZ/occamy-gatsby-source-cockpit/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/JunekCZ/occamy-gatsby-source-cockpit",
"dependencies": {
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^5.10.0",
"html-to-react": "^1.3.4",
"mime": "^2.3.1",
"react-styling": "^1.6.4",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sanitize-html": "^1.20.0",
"slugify": "^1.3.4",
"string-hash": "^1.1.3"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "1.16.0"
},
"peerDependencies": {
"gatsby": "5.x",
"gatsby-source-filesystem": "5.x",
"react": ">16"
}
}