package.json 659 B

1234567891011121314151617181920212223242526
  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. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/iamshaunjp/websockets-playlist.git"
  12. },
  13. "author": "The Net Ninja",
  14. "license": "ISC",
  15. "bugs": {
  16. "url": "https://github.com/iamshaunjp/websockets-playlist/issues"
  17. },
  18. "homepage": "https://github.com/iamshaunjp/websockets-playlist#readme",
  19. "dependencies": {
  20. "express": "^4.15.2",
  21. "socket.io": "^1.7.3"
  22. },
  23. "devDependencies": {
  24. "nodemon": "^1.11.0"
  25. }
  26. }