-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 916 Bytes
/
package.json
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
32
33
34
35
{
"name": "app",
"version": "1.0.0",
"description": "Let's debug Node inside VS Code using Docker containers",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node ./dist/server.js",
"debug": "npm run build && node --inspect-brk=0.0.0.0:9229 ./dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneturkmen/nodejs-debugging.git"
},
"keywords": [
"docker",
"vscode",
"nodejs"
],
"author": "oneturkmen",
"license": "MIT",
"bugs": {
"url": "https://github.com/oneturkmen/nodejs-debugging/issues"
},
"homepage": "https://github.com/oneturkmen/nodejs-debugging#readme",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.5.6",
"typescript": "^3.0.1"
},
"dependencies": {
"express": "^4.16.3"
}
}