-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "node-vscode-debug",
"version": "1.0.0",
"description": "Code to demonstrate how to debug node and client side with vscode",
"main": "src/server/app.js",
"scripts": {
"build": "npm run clean && npm run webpack",
"clean": "rm -rf ./build",
"test": "make test",
"webpack": "webpack",
"lint": "./node_modules/.bin/eslint \"./src/**/*.js\" \"./test/**/*.js\"",
"start": "node ./src/server/app.js",
"debug": "webpack --watch & node --debug-brk=5858 ./src/server/app.js ; rm npm-debug.log*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fsilberstein/node-vscode-debug.git"
},
"keywords": [
"node",
"webpack",
"vscode",
"debug"
],
"author": "Fabien Silberstein <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fsilberstein/node-vscode-debug/issues"
},
"homepage": "https://github.com/fsilberstein/node-vscode-debug#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.2",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"node-sass": "^4.5.2",
"pug-loader": "^2.3.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^3.1.0"
},
"dependencies": {
"express": "^4.15.2",
"pug": "^2.0.0-beta.12"
}
}