package.json 1008 B

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