-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "next-apollo",
"version": "5.0.8",
"description": "React higher-order component for using the Apollo GraphQL client inside Next.js",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"scripts": {
"build": "rollup -c rollup.config.ts",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --no-semi --single-quote --jsx-bracket-same-line",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamsoffer/next-apollo.git"
},
"keywords": [
"nextjs",
"graphql",
"apollo",
"reactjs"
],
"author": "Adam Soffer",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamsoffer/next-apollo/issues"
},
"homepage": "https://github.com/adamsoffer/next-apollo#readme",
"files": [
"dist"
],
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^14.0.0 || ^15.0.0",
"next": "^9.3.6 || ^10.0.0 || ^11.0.0",
"react": "^16.8.0 || ^17.0.1"
},
"devDependencies": {
"@apollo/client": "^3.2.2",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"graphql": "^15.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"next": "^9.5.4 || ^10.0.0 || ^11.0.0",
"prettier": "^2.1.2",
"rollup": "^2.29.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3"
},
"dependencies": {}
}