-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
67 lines (67 loc) · 1.84 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": "gatsby-source-google-docs",
"version": "2.4.3",
"description": "Gatsby plugin to use Google Docs as a data source",
"repository": "https://github.com/cedricdelpoux/gatsby-source-google-docs",
"author": "Cédric Delpoux <cedric.delpoux@gmail.com>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source",
"gatsby-source-plugin",
"google",
"google-docs",
"docs",
"drive"
],
"main": "index.js",
"files": [
"index.d.ts",
"gatsby-browser.js",
"gatsby-node.js",
"gatsby-ssr.js",
"utils"
],
"dependencies": {
"gatsby-source-filesystem": "5.8.0",
"google-oauth2-env-vars": "^1.4.0",
"googleapis": "114.0.0",
"json2md": "^2.0.0",
"lodash": "^4.17.21",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^21.0.0"
},
"bin": {
"gatsby-source-google-docs-token": "./utils/generate-token.js"
},
"scripts": {
"cz": "git-cz",
"lint": "eslint *.js utils examples/**/src",
"test": "jest --coverage",
"prepublishOnly": "yarn lint && yarn test",
"semantic-release": "semantic-release",
"prepare": "husky install"
}
}