package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "event-back",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "type": "module",
  7. "imports": {
  8. "#*": "./src/*",
  9. "#api": "./src/api/current-api.ts",
  10. "#db": "./src/db/db.ts",
  11. "#db-schema": "./src/db/db-schema.ts",
  12. "#exceptions": "./src/exceptions/",
  13. "#logger": "./src/plugins/logger.ts",
  14. "#dayjs": "./src/plugins/dayjs.ts",
  15. "#config": "./src/config/config.ts"
  16. },
  17. "husky": {
  18. "hooks": {
  19. "pre-commit": "npm run lint"
  20. }
  21. },
  22. "scripts": {
  23. "dev": "npx nodemon",
  24. "dev:debug": "npx nodemon --config nodemon.debug.json",
  25. "build": "rimraf ./build && npx tsc",
  26. "lint": "npx eslint ./src"
  27. },
  28. "keywords": [],
  29. "author": "",
  30. "license": "ISC",
  31. "dependencies": {
  32. "axios": "^1.9.0",
  33. "bcrypt": "^5.1.1",
  34. "cookie-parser": "^ 1.4.7 ",
  35. "cors": "^2.8.5",
  36. "dayjs": "^1.11.13",
  37. "dotenv": "^16.4.7",
  38. "express": "^4.21.2",
  39. "ipaddr.js": "^2.2.0",
  40. "jsonwebtoken": "^9.0.2",
  41. "log4js": "^6.9.1",
  42. "multer": "^1.4.5-lts.1",
  43. "music-metadata": "^11.2.3",
  44. "node-cron": "^4.1.1",
  45. "nodemailer": "^6.10.0",
  46. "pg": "^8.13.3",
  47. "slonik": "^37.6.0",
  48. "uuid": "^10.0.0",
  49. "validator": "^13.15.0",
  50. "winston": "^3.17.0",
  51. "zod": "^3.24.2"
  52. },
  53. "devDependencies": {
  54. "@types/bcrypt": "^5.0.2",
  55. "@types/cookie-parser": "^1.4.8",
  56. "@types/cors": "^2.8.17",
  57. "@types/express": "^4.17.21",
  58. "@types/jsonwebtoken": "^9.0.9",
  59. "@types/multer": "^1.4.12",
  60. "@types/node": "^20.17.23",
  61. "@types/nodemailer": "^6.4.17",
  62. "@types/pg": "^8.11.11",
  63. "@types/uuid": "^10.0.0",
  64. "@types/validator": "^13.15.1",
  65. "@typescript-eslint/eslint-plugin": "^6.21.0",
  66. "@typescript-eslint/parser": "^6.21.0",
  67. "cross-env": "^7.0.3",
  68. "eslint": "^8.57.1",
  69. "husky": "^8.0.3",
  70. "nodemon": "^3.1.9",
  71. "prettier": "^3.5.3",
  72. "rimraf": "^5.0.10",
  73. "tsx": "^4.19.3",
  74. "typescript": "^5.3.3"
  75. }
  76. }