1
0

package.json 866 B

123456789101112131415161718192021222324252627282930313233343536
  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. "bcrypt": "6.0.0",
  19. "cors": "2.8.6",
  20. "dotenv": "17.4.2",
  21. "express": "5.2.1",
  22. "ioredis": "5.10.1",
  23. "jsonwebtoken": "9.0.3",
  24. "mongoose": "9.5.0"
  25. },
  26. "devDependencies": {
  27. "@eslint/js": "10.0.1",
  28. "@types/express": "^4.17.21",
  29. "nodemon": "3.1.14",
  30. "ts-node": "^10.9.2",
  31. "typescript": "^5.5.4",
  32. "@typescript-eslint/eslint-plugin": "5.0.0",
  33. "@typescript-eslint/parser": "5.0.0",
  34. "eslint": "8.0.1"
  35. }
  36. }