forked from qq99/echoplexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
61
62
63
64
65
{
"name": "echoplexus",
"version": "0.2.0",
"description": "A modular, anonymous, real-time chatting system.",
"scripts": {
"dev": "supervisor -n error -w public/echoplexus.min.js server/main.js",
"production": "supervisor -w public/echoplexus.min.js -p 45000 server/main.js",
"start": "supervisor server/main.js",
"build": "grunt",
"build-dev": "grunt dev",
"bower": "bower install"
},
"repository": {
"type": "git",
"url": "https://github.com/qq99/echoplexus.git"
},
"author": {
"name": "Anthony Cameron",
"email": "ar.cameron@gmail.com",
"url": "http://anthonycameron.com"
},
"homepage": "https://echoplex.us",
"keywords": [
"socket.io",
"chat",
"anonymous",
"collaborative",
"REPL",
"whiteboard"
],
"licenses": [
{
"type": "LICENSE",
"url": "http://github.com/qq99/echoplexus/LICENSE"
}
],
"readmeFilename": "README.md",
"gitHead": "37e712794c0fcc718bb478859cd8d6ebb144d4d1",
"bugs": {
"url": "https://github.com/qq99/echoplexus/issues"
},
"dependencies": {
"node-uuid": "~1.4.0",
"express": "~3.2.5",
"socket.io": "~0.9.14",
"underscore": "~1.4.4",
"crypto": "~0.0.3",
"redis": "~0.8.3",
"backbone": "~1.0.0",
"async": "~0.2.9"
},
"devDependencies": {
"bower": "~0.9.2",
"grunt": "~0.4.1",
"grunt-strip": "~0.2.1",
"grunt-sass": "~0.6.0",
"grunt-css": "~0.5.4",
"grunt-contrib-clean": "~0.4.1",
"supervisor": "~0.5.2",
"grunt-contrib-requirejs": "~0.4.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-usemin": "~0.1.12",
"grunt-contrib-htmlmin": "~0.1.3"
}
}