Files
pulse/package.json
T
courtmanr@gmail.com 7e780e1792 v1.0.5
2025-02-28 20:39:40 +00:00

44 lines
1.3 KiB
JSON

{
"name": "pulse_basic",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"test:startup": "ts-node src/scripts/startup-check.ts",
"test:api": "ts-node src/scripts/proxmox-api-test.ts",
"kill:backend": "npx kill-port 3000",
"kill:frontend": "npx kill-port 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200",
"kill:all": "npm run kill:backend && npm run kill:frontend",
"dev:frontend": "cd frontend && npm run dev",
"pulse": "./start-pulse.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.13.5",
"@types/socket.io": "^3.0.1",
"axios": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-fetch": "^2.7.0",
"socket.io": "^4.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"ts-node-dev": "^2.0.0"
}
}