Skip to content

Instantly share code, notes, and snippets.

@barisbll
Last active September 4, 2022 12:14
Show Gist options
  • Save barisbll/07444cbabef7eaccbb04ccb5f1a0f3d8 to your computer and use it in GitHub Desktop.
Save barisbll/07444cbabef7eaccbb04ccb5f1a0f3d8 to your computer and use it in GitHub Desktop.
ts-debug/package.json
{
"name": "ts-debugging",
"version": "1.0.0",
"description": "A tutorial repository, created to have a debug example for the medium article",
"main": "index.js",
"scripts": {
"start:dev" : "nodemon ./src/index.ts",
"start:debug" : "nodemon --inspect src/entry.ts"
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barisbll/ts-debug.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/barisbll/ts-debug/issues"
},
"homepage": "https://github.com/barisbll/ts-debug#readme",
"dependencies": {
"express": "^4.18.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment