diff --git a/client/package.json b/client/package.json new file mode 100644 index 0000000..66f07c2 --- /dev/null +++ b/client/package.json @@ -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" +} diff --git a/server/package.json b/server/package.json index a9af230..92051af 100644 --- a/server/package.json +++ b/server/package.json @@ -1,5 +1,5 @@ { - "name": "graphql-playground", + "name": "graphql-playground-server", "version": "1.0.0", "description": "Playing with GraphQL to learn it", "main": "index.js", @@ -9,14 +9,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/seigler/graphql.git" + "url": "git+https://github.com/seigler/graphql-playground.git" }, "author": "Joshua Seigler", "license": "MIT", "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": { "dotenv-safe": "^8.2.0", "express": "^4.17.1",