diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-06-11 15:39:47 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-06-11 15:39:47 -0400 |
| commit | 420774e164759dd52732a6f35c92f54aec6335e4 (patch) | |
| tree | 6c022811ff357bfd80f1c4daf5c18c379e55ac49 /backend/package.json | |
| parent | 748dc8f8acb3cdc94a4f98704504d221b085ccab (diff) | |
should I record?
Diffstat (limited to 'backend/package.json')
| -rw-r--r-- | backend/package.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/backend/package.json b/backend/package.json index f345173..1ddb5a9 100644 --- a/backend/package.json +++ b/backend/package.json @@ -2,9 +2,11 @@ "name": "my-own", "scripts": { "start": "nodemon -e js,graphql -x node src/index.js", - "dev": "nodemon -e js,graphql -x node --inspect src/index.js", + "debug": "nodemon -e js,graphql -x node --inspect src/index.js", "test": "jest", - "deploy": "prisma deploy --env-file variables.env" + "playground": "graphql playground", + "deploy": "prisma deploy --env-file variables.env", + "dev": "npm-run-all --parallel debug playground" }, "dependencies": { "bcryptjs": "2.4.3", @@ -13,6 +15,7 @@ "graphql-yoga": "1.14.2", "jsonwebtoken": "8.2.1", "nodemailer": "^4.6.5", + "npm-run-all": "^4.1.3", "prisma-binding": "2.0.1", "stripe": "^6.0.0" }, |
