package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "ts-config",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "build": "tsc --build",
  9. "start": "node ./dist/index.js",
  10. "start:dev": "nodemon ./src/index.ts",
  11. "lint": "eslint .",
  12. "lint:fix": "eslint . --fix"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "class-transformer": "0.5.1",
  19. "class-validator": "0.15.1",
  20. "cors": "2.8.6",
  21. "dotenv": "17.4.2",
  22. "express": "5.2.1",
  23. "ioredis": "5.10.1",
  24. "jsonwebtoken": "9.0.3",
  25. "mongoose": "9.5.0",
  26. "reflect-metadata": "0.2.2"
  27. },
  28. "devDependencies": {
  29. "@eslint/js": "10.0.1",
  30. "@types/bcrypt": "6.0.0",
  31. "@types/cors": "2.8.19",
  32. "@types/express": "4.17.21",
  33. "@types/jsonwebtoken": "9.0.10",
  34. "@typescript-eslint/eslint-plugin": "5.0.0",
  35. "@typescript-eslint/parser": "5.0.0",
  36. "eslint": "8.0.1",
  37. "nodemon": "3.1.14",
  38. "ts-node": "10.9.2",
  39. "typescript": "5.5.4"
  40. }
  41. }