You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
950 B

3 months ago
2 months ago
3 months ago
2 months ago
3 months ago
2 months ago
3 months ago
  1. {
  2. "name": "realtime-voicecall-backend",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "scripts": {
  6. "build": "babel src --out-dir dist --extensions \".ts,.js\"",
  7. "type-check": "tsc --noEmit",
  8. "start": "node dist/index.js",
  9. "dev": "nodemon --watch src --exec ts-node src/index.ts",
  10. "test": "jest"
  11. },
  12. "keywords": [],
  13. "author": "",
  14. "license": "ISC",
  15. "description": "",
  16. "dependencies": {
  17. "cors": "^2.8.5",
  18. "express": "^4.21.1",
  19. "socket.io": "^4.8.0"
  20. },
  21. "devDependencies": {
  22. "@babel/cli": "^7.25.9",
  23. "@babel/core": "^7.26.0",
  24. "@babel/node": "^7.26.0",
  25. "@babel/plugin-transform-runtime": "^7.25.9",
  26. "@babel/preset-env": "^7.26.0",
  27. "@babel/preset-typescript": "^7.26.0",
  28. "@babel/runtime": "^7.26.0",
  29. "@types/express": "^5.0.0",
  30. "@types/node": "^22.7.5",
  31. "@types/socket.io": "^3.0.2",
  32. "nodemon": "^3.1.7",
  33. "ts-node": "^10.9.2",
  34. "typescript": "^5.6.3"
  35. }
  36. }