printer-monitor/package.json
2023-05-15 12:40:44 -04:00

31 lines
697 B
JSON

{
"name": "ifms-printer-notify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"start": "node src",
"dev": "nodemon --ext js,ts,mts,mjs,json ./src/index.ts --exec ts-node-esm"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.1.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"net-snmp": "^3.9.3"
}
}