Files
webdj-back/package.json
2021-12-14 15:05:46 -06:00

41 lines
867 B
JSON

{
"name": "webdj.backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node .",
"watch": "npm-watch",
"dev": "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",
"@types/ws": "^8.2.2",
"npm-watch": "^0.11.0",
"typescript": "^4.5.3"
},
"dependencies": {
"ws": "^8.3.0"
}
}