apply everything to ts; add temp layout

This commit is contained in:
2022-11-11 01:01:07 +01:00
parent c6c5eeed3f
commit 60a5faa952
17 changed files with 938 additions and 198 deletions

View File

@ -5,20 +5,32 @@
"author": "Tobias Hopp <tobi@gaminggeneration.de>",
"license": "UNLICENSED",
"scripts": {
"start": "node ./bin/www",
"compile": "tsc && webpack"
"start": "node ./dist/main.js",
"compile": "tsc && webpack",
"compileStart": "yarn run compile; yarn start",
"watchTS": "tsc --watch",
"watchWP": "webpack --watch"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/express-ws": "^3.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"express": "~4.16.1",
"express-ws": "^5.0.2",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"morgan": "^1.10.0",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"