-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "node-video-collab",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "concurrently \"nodemon ./bin/www\" \"npx peerjs --port 9001\"",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha tests/**/*.test.js --timeout 10000",
"test-watch": "nodemon --exec 'npm test'"
},
"dependencies": {
"concurrently": "^4.1.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-handlebars": "^3.0.2",
"express-session": "^1.15.1",
"express-validator": "^3.1.2",
"hbs": "~4.0.1",
"http-errors": "~1.6.2",
"mongoose": "^4.8.6",
"morgan": "~1.9.0",
"nodemailer": "^3.1.5",
"ot": "git+https://github.com/Operational-Transformation/ot.js.git",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"peer": "^0.2.10",
"socket.io": "^1.7.3"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"nodemon": "^1.18.9",
"supertest": "^2.0.0"
}
}