farmcontrol-server/package.json
2025-04-13 18:31:40 +00:00

28 lines
756 B
JSON

{
"name": "farmcontrol-server",
"version": "1.0.0",
"description": "Connects to moonraker and also manages the socket connection to the printer.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"author": "Tom Butcher",
"license": "ISC",
"dependencies": {
"axios": "^1.8.4",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"keycloak-connect": "^26.1.1",
"log4js": "^6.9.1",
"mongoose": "^8.13.2",
"socket.io": "^4.8.1",
"ws": "^8.18.1"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}