project setup
Some checks failed
Build and Push to Scaleway Registry / build (push) Failing after 23s
Runner Test / test-connection (push) Successful in 3s

This commit is contained in:
2026-02-07 19:20:20 +01:00
parent efb5e8b3e4
commit 79fb5ec55b
8 changed files with 1083 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "nodejs-meetup-vienna-2026-02-12",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://gitea.stefan-georg-rath.exo.gkube.eu/sg6/nodejs-meetup-vienna-2026-02-12.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/express": "^5.0.6",
"@types/node": "^25.2.1",
"typescript": "^5.9.3"
}
}