Moving to TS, add user lists commands

This commit is contained in:
Andrew 2023-03-03 01:50:23 +07:00
parent 481d119d3b
commit 7585f6a40b
6 changed files with 1034 additions and 106 deletions

View file

@ -4,14 +4,22 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js"
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.14.4",
"typescript": "^4.9.5"
}
}