package.json 420 B

1234567891011121314151617181920
  1. {
  2. "name": "websockets-playlist",
  3. "version": "1.0.0",
  4. "description": "A chat app using WebSockets",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1"
  8. },
  9. "license": "ISC",
  10. "bugs": {
  11. "url": "https://github.com/iamshaunjp/websockets-playlist/issues"
  12. },
  13. "dependencies": {
  14. "express": "^4.15.2",
  15. "socket.io": "^1.7.3"
  16. },
  17. "devDependencies": {
  18. "nodemon": "^1.11.0"
  19. }
  20. }