-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "gatsby-plugin-next",
"version": "1.0.0",
"description": "Gatsby plugin for incremental migration to Next.js APIs",
"scripts": {
"test": "tsc --noEmit && xo",
"dev": "tsc --watch",
"prepare": "tsc"
},
"files": [
"dist",
"gatsby-browser.js",
"gatsby-node.js",
"gatsby-ssr.js"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"next",
"gatsby-to-next"
],
"author": "Hightouch",
"repository": "hightouchio/gatsby-plugin-next",
"license": "MIT",
"dependencies": {
"esm": "^3.2.25",
"mem": "^8.1.1",
"p-map": "^4.0.0",
"pkg-dir": "^5.0.0",
"query-string": "^7.1.1",
"react-helmet-async": "^1.3.0",
"url": "^0.11.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/esm": "^3.2.0",
"@types/react": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"gatsby": "^4.12.1",
"prettier": "^2.6.2",
"react": "^18.0.0",
"typescript": "^4.6.3",
"xo": "^0.48.0"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"import/extensions": "off",
"node/file-extension-in-import": "off",
"unicorn/prefer-node-protocol": "off"
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 80,
"singleQuote": false,
"trailingComma": "all",
"useTabs": false
}
}