-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "vscode-ts-inversify-debug-docker",
"version": "0.1.0",
"description": "Debugging uncompiled Typescript code running on Docker container using VS Code",
"main": "index.ts",
"scripts": {
"debug": "node -r ts-node/register --inspect=0.0.0.0:9229 src/index.ts",
"dev": "nodemon --inspect=0.0.0.0:9229 src/index.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "node --require ts-node/register/transpile-only"
}
},
"dependencies": {
"express": "^4.17.1",
"inversify": "^5.1.1",
"inversify-express-utils": "^6.3.2",
"inversify-inject-decorators": "^3.1.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/inversify": "^2.0.33",
"@types/inversify-express-utils": "^2.0.0",
"@types/inversify-inject-decorators": "^2.0.0",
"nodemon": "^2.0.7",
"ts-node": "^8.9.1",
"typescript": "^4.2.4"
}
}