initial merge of both repos

This commit is contained in:
2021-02-25 23:11:23 +01:00
commit e1ec6b2db9
138 changed files with 4282 additions and 0 deletions

30
UNO-Backend/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "uno-backend",
"version": "0.0.0",
"description": "UNO-Backend",
"main": "server.js",
"author": {
"name": ""
},
"type": "module",
"scripts": {
"build": "tsc --build ",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/node": "^8.10.59",
"@types/ws": "^7.2.3",
"typescript": "^3.9.9"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"nvm": "0.0.4",
"ts-node": "^9.1.1",
"tsc": "^1.20150623.0",
"tslib": "^2.1.0",
"ws": "^7.2.3"
}
}