diff options
Diffstat (limited to 'backend/package.json')
| -rw-r--r-- | backend/package.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/backend/package.json b/backend/package.json index ca26206..86ad2b6 100644 --- a/backend/package.json +++ b/backend/package.json @@ -2,9 +2,11 @@ "name": "my-own", "scripts": { "start": "nodemon -e js,graphql -x node -r dotenv/config src/index.js", - "debug": "nodemon -e js,graphql -x node --inspect -r dotenv/config src/index.js", + "debug": + "nodemon -e js,graphql -x node --inspect -r dotenv/config src/index.js", "playground": "graphql playground", - "dev": "npm-run-all --parallel start playground" + "dev": "npm-run-all --parallel start playground", + "test": "jest" }, "dependencies": { "bcryptjs": "2.4.3", @@ -15,6 +17,8 @@ "devDependencies": { "dotenv": "4.0.0", "graphql-cli": "2.13.0", + "graphql-request": "^1.4.1", + "jest-cli": "^22.1.4", "nodemon": "1.14.11", "npm-run-all": "4.1.2", "prisma": "1.0.11" |
