{ "name": "server", "version": "1.0.0", "description": "Gardening server", "main": "index.js", "license": "MIT", "scripts": { "build": "rm -rf build && tsc --p tsconfig.json", "start": "node ./dist/index.js", "start:dev": "nodemon -e ts -w ./src -x ts-node ./src/index.ts" }, "devDependencies": { "@types/better-sqlite3": "^7.6.4", "@types/node": "^20.2.1", "@types/node-cron": "^3.0.7", "nodemon": "^2.0.22", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, "dependencies": { "axios": "^1.4.0", "better-sqlite3": "^8.4.0", "dotenv": "^16.3.1", "eventemitter2": "^6.4.9", "node-cron": "^3.0.2", "queue": "^6.0.2", "socket.io": "^4.6.1", "winston": "^3.9.0" } }