Add a client

This commit is contained in:
Joshua Seigler 2020-01-29 01:22:04 -05:00
parent dcb2421890
commit f8e7e2d9e3
2 changed files with 19 additions and 4 deletions

15
client/package.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "graphql-playground-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seigler/graphql-playground.git"
},
"author": "Joshua Seigler",
"license": "MIT"
}

View file

@ -1,5 +1,5 @@
{ {
"name": "graphql-playground", "name": "graphql-playground-server",
"version": "1.0.0", "version": "1.0.0",
"description": "Playing with GraphQL to learn it", "description": "Playing with GraphQL to learn it",
"main": "index.js", "main": "index.js",
@ -9,14 +9,14 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/seigler/graphql.git" "url": "git+https://github.com/seigler/graphql-playground.git"
}, },
"author": "Joshua Seigler", "author": "Joshua Seigler",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/seigler/graphql/issues" "url": "https://github.com/seigler/graphql-playground/issues"
}, },
"homepage": "https://github.com/seigler/graphql#readme", "homepage": "https://github.com/seigler/graphql-playground#readme",
"dependencies": { "dependencies": {
"dotenv-safe": "^8.2.0", "dotenv-safe": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",