forked from me4502/gatsby-plugin-react-helmet-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "gatsby-plugin-react-helmet-async",
"version": "1.2.1",
"description": "Use react-helmet-async with Gatsby",
"keywords": [
"gatsby",
"gatsby-plugin",
"react",
"react-helmet",
"react-helmet-async"
],
"homepage": "https://github.com/Collabsalot/gatsby-plugin-react-helmet-async#readme",
"bugs": {
"url": "https://github.com/Collabsalot/gatsby-plugin-react-helmet-async/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Collabsalot/gatsby-plugin-react-helmet-async.git"
},
"license": "Apache-2.0",
"author": "Martin Rosenberg <[email protected]> (https://martinbrosenberg.com)",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"clean": "rm gatsby-browser.d.ts gatsby-browser.js gatsby-ssr.d.ts gatsby-ssr.js",
"lint": "eslint src --ext ts,tsx --fix",
"test": "echo \"Error: no tests specified\" && exit 1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"gatsby": "^3.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet-async": "^1.0.9",
"typescript": "^4.3.4"
},
"peerDependencies": {
"gatsby": ">=2",
"react": "^18.x",
"react-dom": "^18.x",
"react-helmet-async": "1.x"
}
}