-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.17 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
{
"name": "vscode-nodemon-bug",
"version": "1.0.0",
"description": "VSCode automatically saves file while debugging using nodemon",
"scripts": {
"build": "babel src --out-dir dist --source-maps=\"inline\"",
"build:static": "rimraf dist && npm run build",
"watch:static": "nodemon --exec npm run build:static --config \"nodemon_src.json\"",
"dev": "nodemon --exec npm run restart",
"start": "node dist/index.js",
"restart": "rimraf dist && npm run build && npm start"
},
"author": "fedoseiev",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^11.0.0-beta.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-register": "^6.26.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2"
}
}