Files
fsae41.de/package.json
BolkeDerBaer ec33458521 feat: initial commit with Express server and Socket.IO integration
- Added package.json for project metadata and dependencies
- Created public/index.html for the front-end interface
- Implemented server.js to set up an Express server with Socket.IO for real-time communication
2026-02-21 23:38:02 +01:00

23 lines
502 B
JSON

{
"name": "git_test",
"version": "1.0.0",
"description": "First commit — initial repository setup.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "http://192.168.1.182:3000/BolkeDerBaer/fsae41.de.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"express": "^5.2.1",
"socket.io": "^4.8.3"
}
}