-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 894 Bytes
/
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
{
"name": "gatsby-source-flickr",
"description": "A Gatsby source plugin to load resources from the Flickr photo search API.",
"author": "Chris Searle <[email protected]>",
"repository": "https://github.com/chrissearle/gatsby-source-flickr.git",
"keywords": [
"gatsby",
"gatsby-plugin",
"flickr",
"photos"
],
"license": "MIT",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"format": "prettier --write \"src/**/*.js\""
},
"dependencies": {
"core-js": "^3.21.0",
"node-fetch": "^2.6.7",
"query-string": "^6.14.1",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"cross-env": "7.0.3",
"prettier": "^2.5.1"
},
"version": "0.0.5"
}