farmcontrol-server/package.json

32 lines
922 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": {
"start": "node build/index.js",
"dev": "nodemon src/index.js",
"build": "rimraf build && mkdir build && cp -r src/* build/ && cp package.json config.json build/",
"clean": "rimraf build"
},
"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"
}
}