Files
webdj-back/package.json
2021-12-10 15:15:38 -06:00

36 lines
756 B
JSON

{
"name": "webdj.backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node .",
"watch": "npm-watch"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts",
"legacyWatch": true
},
"start": {
"patterns": [
"dist"
],
"extensions": "js",
"legacyWatch": true,
"runOnChangeOnly": true
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.12",
"npm-watch": "^0.11.0",
"typescript": "^4.5.3"
}
}