{ "name": "server-generator", "version": "1.0.0", "description": "", "main": "dist/server.js", "scripts": { "generate": "tsc && node --inspect ./dist/app.js", "debug": "tsc && node --inspect=9229 ./dist/server.js", "start": "npm run build && npm run watch", "build": "npm run build-ts && npm run tslint", "watch-node": "nodemon --inspect ./dist/server.js", "watch-ts": "tsc -w", "watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"", "build-ts": "tsc", "tslint": "tslint -c tslint.json -p tsconfig.json" }, "keywords": [ "express" ], "author": "Peter Zilz", "license": "ISC", "dependencies": { "body-parser": "^1.19.0", "express": "^4.17.1", "swagger-ui-express": "^4.1.4" }, "devDependencies": { "@types/body-parser": "^1.19.0", "@types/express": "^4.17.6", "@types/swagger-ui-express": "^4.1.2", "openapi-types": "^7.0.1" } }