-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.32 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
{
"name": "gatsby-source-google-photos",
"version": "3.1.1",
"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": "^4.15.0",
"google-oauth2-env-vars": "^1.3.0",
"googlephotos": "^0.3.5",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^4.3.0",
"lint-staged": "^11.2.6",
"prettier": "2.6.2"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"scripts": {
"lint": "eslint gatsby-node.js utils example/src",
"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"
}
}
}