-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "gatsby-source-behance-images",
"version": "1.3.2",
"description": "Gatsby source plugin for loading information from Behance and downloading images",
"main": "gatsby-node.js",
"scripts": {
"prepare": "tsc",
"watch": "tsc -w",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js}\"",
"lint:fix": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js}\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/glweems/gatsby-source-behance-images"
},
"bugs": {
"url": "https://github.com/glweems/gatsby-source-behance-images/issues"
},
"homepage": "https://github.com/glweems/gatsby-source-behance-images",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"behance"
],
"author": "Garrett Weems <gwgraphicdesign@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.4",
"gatsby": "^2.6.0-alpha.1",
"gatsby-source-filesystem": "^2.1.6",
"image-downloader": "^3.4.2"
},
"peerDependencies": {
"gatsby": ">=2"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/node": "^12.6.8",
"@types/request": "^2.48.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"typescript": "^3.5.3"
}
}