printer-monitor/package.json

31 lines
693 B
JSON
Raw Normal View History

2023-05-11 16:14:02 +00:00
{
"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",
"local": "ts-node-esm ./src/index.ts",
"dev": "nodemon src -e ts,json --exec 'npm run local'"
},
"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"
}
}