forked from adamsoffer/next-apollo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "next-apollo",
"version": "3.0.3",
"description": "React higher-order component for using the Apollo GraphQL client inside Next.js",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"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/ads1018/next-apollo.git"
},
"keywords": [
"nextjs",
"graphql",
"apollo",
"reactjs"
],
"author": "Adam Soffer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ads1018/next-apollo/issues"
},
"homepage": "https://github.com/ads1018/next-apollo#readme",
"files": [
"dist"
],
"peerDependencies": {
"graphql": "^14.3.1",
"next": "^8.1.0",
"react-dom": "16.8.6",
"react": "16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.1",
"apollo-cache-inmemory": "^1.6.0",
"graphql": "^14.3.1",
"husky": "0.14.3",
"lint-staged": "4.3.0",
"next": "^8.1.0",
"prettier": "1.15.3",
"react": "16.8.6",
"react-dom": "16.8.6"
},
"dependencies": {
"@apollo/react-common": "0.1.0-beta.9",
"@apollo/react-ssr": "0.1.0-beta.1",
"apollo-client": "^2.6.0",
"isomorphic-fetch": "2.2.1",
"lodash.isfunction": "3.0.9",
"prop-types": "15.7.2",
"prop-types-exact": "1.2.0",
"url": "0.11.0"
}
}