1
0
mirror of https://github.com/balkian/hookio-sparql-demo.git synced 2024-11-21 19:02:28 +00:00

Socket.io dependencies

This commit is contained in:
J.Fernando Sánchez 2012-03-17 16:17:30 +01:00
parent e2821d4641
commit bc5c698144
4 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules node_modules
*.log

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: node web/app.js

View File

@ -4,11 +4,10 @@
"dependencies":{ "dependencies":{
"socket.io":"*", "socket.io":"*",
"hook.io":"*", "hook.io":"*",
"Hook.io-mailer":"git+https://github.com/balkian/Hookio-Mailer.git" "Hook.io-mailer":"git+https://github.com/balkian/Hookio-Mailer.git",
"express": "2.5.5", "express": "2.5.5",
"jade": "0.16.4", "jade": "0.16.4",
"stylus": "0.19.0", "stylus": "0.19.0",
"nib": "0.2.0" "nib": "0.2.0"
} }
} }

View File

@ -5,7 +5,7 @@
var express = require('express') var express = require('express')
, stylus = require('stylus') , stylus = require('stylus')
, nib = require('nib') , nib = require('nib')
, sio = require('../../lib/socket.io'); , sio = require('socket.io');
/** /**
* App. * App.