forked from cedricdelpoux/gatsby-source-google-photos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
{
"name": "gatsby-source-google-photos",
"version": "2.4.0",
"description": "Gatsby plugin to use Google Photos as a data source",
"repository": "https://github.com/cedricdelpoux/gatsby-source-google-photos",
"author": {
"name": "Cédric Delpoux",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source",
"gatsby-source-plugin",
"google",
"google-photos",
"photos"
],
"main": "index.js",
"files": [
"gatsby-node.js",
"utils"
],
"dependencies": {
"gatsby-source-filesystem": "^2.3.31",
"google-oauth2-env-vars": "^1.1.0",
"googlephotos": "^0.3.3"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"scripts": {
"lint": "eslint gatsby-node.js utils example",
"prepublishOnly": "yarn lint"
},
"bin": {
"gatsby-source-google-photos-token": "./utils/generate-token.js"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,js,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}