-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "graphql-playground",
"version": "0.0.1",
"description": "A place where I can play around with GraphQL in node",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start",
"server": "node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brentmclark/node-graphql-playground.git"
},
"keywords": [
"graphql",
"node"
],
"author": "Brent M Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/brentmclark/node-graphql-playground/issues"
},
"homepage": "https://github.com/brentmclark/node-graphql-playground#readme",
"dependencies": {
"apollo-boost": "^0.1.23",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"apollo-link-rest": "^0.7.3",
"apollo-server-express": "^2.3.1",
"express": "^4.16.4",
"fetch-headers": "^2.0.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"react": "^16.7.0",
"react-apollo": "^2.3.3",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3"
}
}