Initial commit - express server, where citysys-terminal app is uploaded

This commit is contained in:
rasta5man 2024-04-15 19:46:51 +02:00
commit c4065c3f9c
9 changed files with 1623 additions and 0 deletions

26
package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bitwise": "^2.1.0",
"cors": "^2.8.5",
"easy-crc": "0.0.2",
"express": "^4.17.1",
"http-status": "^1.5.0",
"nodemon": "^2.0.3",
"serialport": "^9.0.6",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.2",
"ws": "^7.4.5"
},
"devDependencies": {}
}