-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
68
69
70
71
72
73
74
75
76
{
"name": "gatsby-transformer-inline-svg",
"version": "1.2.0",
"description": "Inline SVGs from any GraphQL source",
"main": "index.js",
"engines": {
"node": ">8.0.0"
},
"scripts": {
"format": "prettier --write \"*.{js,json}\"",
"lint": "eslint index.js",
"test": "jest gatsby-node.test.js",
"prepare": "husky install"
},
"files": [
"index.js",
"gatsby-node.js"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"svg",
"inline",
"contentful"
],
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/axe312ger/gatsby-transformer-inline-svg/issues"
},
"homepage": "https://github.com/axe312ger/gatsby-transformer-inline-svg/",
"repository": {
"type": "git",
"url": "https://github.com/axe312ger/gatsby-transformer-inline-svg.git"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc",
"eslint --fix"
],
"*.json": [
"prettier --write --config .prettierrc"
]
},
"dependencies": {
"debug": "^4.1.1",
"fs-extra": "^11.0.0",
"gatsby-core-utils": "^3.9.1",
"mini-svg-data-uri": "^1.4.4",
"p-queue": "^6.2.1",
"svgo": "^2.0.0"
},
"devDependencies": {
"@types/jest": "29.5.6",
"@types/svgo": "2.6.4",
"eslint": "8.52.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.4.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"gatsby": "4.25.7",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"nock": "13.3.6",
"prettier": "2.8.8"
},
"peerDependencies": {
"gatsby": ">=4.9.0",
"gatsby-source-contentful": ">=5.0.0",
"gatsby-source-filesystem": ">=4.0.0"
}
}