-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "comet-server",
"description": "Universidad CAECE Final Project server app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "scripts/start.sh development",
"start-production": "scripts/start.sh production",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha test/unit/*.test.js",
"test-integration": "mocha test/integration/*.test.js"
},
"dependencies": {
"async": "^1.5.2",
"avatar-generator": "1.0.6",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"easyimage": "2.1.0",
"ejs": "^2.3.3",
"email-templates": "2.0.1",
"email-validator": "1.0.3",
"express": "~4.13.1",
"express-force-ssl": "^0.3.0",
"express-jwt": "^3.0.1",
"grunt": "^0.4.5",
"grunt-run": "^0.5.2",
"helmet": "^1.3.0",
"jade": "~1.11.0",
"jsonwebtoken": "^5.0.4",
"morgan": "~1.6.1",
"multer": "1.0.5",
"newrelic": "^1.27.2",
"nodemailer": "1.4.0",
"nodemon": "^1.4.1",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"pg": "^4.4.1",
"pg-hstore": "^2.3.2",
"q": "^1.4.1",
"request": "2.67.0",
"sequelize": "3.18.0",
"sequelize-cli": "^1.7.4",
"sequelize-fixtures": "0.4.7",
"serve-favicon": "~2.3.0",
"socket.io": "1.3.7",
"socket.io-emitter": "0.2.0",
"socket.io-redis": "0.1.4",
"socketio-jwt": "4.3.2",
"validator": "4.5.1",
"winston": "^2.1.1",
"xregexp": "2.0.0"
},
"devDependencies": {
"bluebird": "^2.9.33",
"expect.js": "^0.3.1",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}