-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 KB
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
{
"name": "next-ssr-apollo-connector",
"description": "This package conveniently integrates Next.js, Apollo Client, and server-side rendering.",
"license": "MIT",
"version": "1.1.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engineStrict": true,
"engines": {
"node": "^20.12",
"npm": "^10.5"
},
"scripts": {
"build": "tsc",
"pretty": "prettier --write . --log-level warn",
"lint": "eslint . --fix",
"husky": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier",
"eslint --fix"
]
},
"dependencies": {
"@apollo/client": "^3.9.11",
"graphql": "^16.8.1"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.6.1",
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awekrx/next-ssr-apollo-connector"
},
"keywords": [
"graphql",
"apollo",
"nextjs",
"graphql-ssr",
"apollo-ssr",
"nextjs-ssr"
],
"bugs": {
"url": "https://github.com/awekrx/next-ssr-apollo-connector/issues"
},
"homepage": "https://github.com/awekrx/next-ssr-apollo-connector/#readme",
"files": [
"lib/**/*"
]
}