-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "gatsby-plugin-apollo-shopify",
"version": "1.1.0",
"description": "Gatsby plugin which injects a Shopify Apollo Client into the browser.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:gil--/gatsby-plugin-apollo-client.git"
},
"keywords": [
"graphql",
"apollo",
"gatsby-plugin",
"gatsbyjs",
"gatsby",
"shopify",
"shopify-storefront"
],
"author": "Gil Greenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/gil--/gatsby-plugin-apollo-client/issues"
},
"homepage": "https://github.com/gil--/gatsby-plugin-apollo-client#readme",
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.8",
"apollo-client": "^2.4.0",
"apollo-link-context": "^1.0.8",
"apollo-link-http": "^1.5.4",
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"react-apollo": "^2.1.11"
}
}