{ "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": { "start": "node dist/index.js", "dev": "nodemon src/index.js", "build": "rimraf dist && mkdir dist && cp -r src/* dist/ && cp package.json config.json dist/", "clean": "rimraf dist" }, "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": { "jest": "^29.7.0", "nodemon": "^3.1.9", "rimraf": "^5.0.5", "supertest": "^6.3.4" } }