package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "org.crazydoctor.expressts",
  3. "version": "1.1.5",
  4. "devDependencies": {
  5. "@types/express-session": "^1.17.7",
  6. "@types/node": "^20.4.9",
  7. "@typescript-eslint/eslint-plugin": "^6.2.1",
  8. "@typescript-eslint/parser": "^6.2.1",
  9. "eslint": "^8.46.0",
  10. "ncp": "^2.0.0"
  11. },
  12. "dependencies": {
  13. "@types/express": "^4.17.17",
  14. "@types/pino": "^7.0.5",
  15. "@types/swagger-jsdoc": "^6.0.4",
  16. "@types/swagger-ui-express": "^4.1.6",
  17. "@types/ws": "^8.5.10",
  18. "express": "^4.18.2",
  19. "express-session": "^1.17.3",
  20. "nodemon": "^3.0.1",
  21. "pino": "^8.14.2",
  22. "pino-http": "^8.3.3",
  23. "pino-pretty": "^10.2.0",
  24. "swagger-jsdoc": "^6.2.8",
  25. "swagger-ui-express": "^5.0.1",
  26. "ts-node": "^10.9.1",
  27. "typescript": "^5.1.6",
  28. "ws": "^8.16.0"
  29. },
  30. "main": "dist/index.js",
  31. "types": "dist/index.d.ts",
  32. "files": [
  33. "dist"
  34. ],
  35. "scripts": {
  36. "lint": "eslint .",
  37. "fixLint": "eslint . --fix",
  38. "build": "npm run lint && tsc && ncp lib/resources/ dist/resources/"
  39. }
  40. }