This repository was archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "@base-cms/base4-nextjs-apollo",
"version": "0.1.0",
"description": "Apollo GraphQL Client & HOC for Base4+NextJS apps",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/base-cms/base4-nextjs-apollo.git"
},
"author": "Jacob Bare <jacob@limit0.io>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"lint": "node_modules/.bin/eslint src --ext .js --ext .jsx"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"graphql": "^14.0.2",
"next": "^7.0.2",
"react": "^16.5.2",
"react-apollo": "^2.2.4",
"react-dom": "^16.5.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"@base-cms/base4-graphql-stitching": "https://github.com/base-cms/base4-graphql-stitching.git",
"apollo-cache-inmemory": "^1.3.5",
"apollo-client": "^2.4.2",
"apollo-link": "^1.2.3",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"isomorphic-unfetch": "^3.0.0"
},
"peerDependencies": {
"graphql": "^14.0.0",
"next": "^7.0.0",
"react": "^16.0.0",
"react-apollo": "^2.2.0",
"react-dom": "^16.0.0"
}
}