Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion advanced/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"scripts": {
"start": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"dev": "npm-run-all --parallel start playground",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect src/index.ts",
"debug": "dotenv -- nodemon -e ts,graphql -x node -r ts-node/register --inspect src/index.ts",
"playground": "graphql playground",
"build": "rimraf dist && tsc"
},
Expand Down
1 change: 1 addition & 0 deletions basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "graphql-boilerplate",
"scripts": {
"start": "ts-node src/index.ts",
"debug": "node -r ts-node/register --inspect src/index.ts",
"dev": "npm-run-all --parallel start playground",
"playground": "graphql playground"
},
Expand Down
1 change: 1 addition & 0 deletions minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"debug": "node -r ts-node/register --inspect src/index.ts",
"dev": "npm-run-all --parallel start playground",
"playground": "graphql playground"
},
Expand Down