-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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": "rtmc",
"version": "0.0.2",
"private": true,
"author": "Alistair Hughes <ali.fhughes@gmail.com>",
"description": "My Final year university project. A real-time music collaborator platform",
"contributors": [
{
"name": "Alistair Hughes",
"email": "ali.fhughes@gmail.com"
}
],
"engines": {
"node": "0.10.x"
},
"scripts": {
"start": "node ./bin/www",
"build": "browserify ./public/javascripts/app.js -o ./public/bundle.js",
"watch": "watchify ./public/javascripts/app.js -o ./public/bundle.js -v"
},
"repository": {
"type": "git",
"url": "https://github.com/alifhughes/RTMC"
},
"dependencies": {
"audiobuffer-to-wav": "^1.0.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.15.2",
"clipboard": "^1.6.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.14.0",
"express-session": "^1.15.1",
"jade": "~1.11.0",
"jquery": "^3.1.1",
"jsondiffpatch": "^0.2.4",
"merge-audio-buffers": "^1.0.0",
"mongoose": "^4.8.3",
"morgan": "~1.7.0",
"pako": "^1.0.5",
"passport": "~0.2.0",
"passport-local": "~1.0.0",
"serve-favicon": "~2.3.0",
"socket.io": "^1.7.3",
"underscore": "^1.8.3",
"uuid": "^3.0.1",
"ws": "^2.2.1"
},
"devDependencies": {
"browserify": "^14.1.0",
"flightplan": "^0.6.15",
"fly": "^1.4.1",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
}
}