-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.28 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "radiatus",
"version": "0.1.10",
"description": "Node web server for freedom.js apps",
"bin": {
"radiatus": "index.js"
},
"main": "src/app.js",
"scripts": {
"start": "node index.js node_modules/freedom/demo/counter/manifest.json -d",
"debug": "supervisor -- index.js node_modules/freedom/demo/tictak/manifest.json -d",
"counter": "supervisor -- index.js node_modules/freedom/demo/counter/manifest.json -d",
"tictak": "supervisor -- index.js node_modules/freedom/demo/tictak/manifest.json -d",
"chat": "supervisor -- index.js node_modules/freedom/demo/chat/manifest.json -d",
"test": "gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/freedomjs/radiatus.git"
},
"contributors": [
"Raymond Cheng <[email protected]> (http://raymondcheng.net)",
"Will Scott <[email protected]> (https://wills.co.tt/)"
],
"license": "Apache2",
"bugs": {
"url": "https://github.com/freedomjs/radiatus/issues"
},
"homepage": "https://github.com/freedomjs/radiatus",
"dependencies": {
"bcrypt": "~0.8.1",
"body-parser": "~1.12.0",
"config": "^1.12.0",
"connect": "~3.3.4",
"connect-flash": "~0.1.1",
"connect-mongo": "~0.7.0",
"cookie-parser": "~1.3.4",
"cookies": "^0.5.0",
"csurf": "~1.7.0",
"ejs": "~2.3.1",
"ejs-locals": "~1.0.2",
"es5-shim": "^4.1.0",
"es6-promise": "^2.0.1",
"express": "^4.12.2",
"express-session": "~1.10.3",
"freedom": "~0.6.21",
"freedom-for-node": "~0.2.13",
"keygrip": "^1.0.1",
"method-override": "~2.3.1",
"mime": "^1.3.4",
"mongodb": "~1.4.34",
"mongoose": "~3.8.24",
"morgan": "^1.5.1",
"nomnom": "^1.8.1",
"passport": "~0.2.1",
"passport-local": "~1.0.0",
"q": "^1.2.0",
"socket.io": "~1.3.5",
"through": "^2.3.6",
"winston": "~0.9.0",
"ws": "^0.7.1"
},
"devDependencies": {
"browserify": "^9.0.3",
"expect.js": "^0.3.1",
"fs-extra": "^0.16.5",
"gulp": "^3.8.11",
"gulp-jsdoc": "^0.1.4",
"gulp-jshint": "^1.9.2",
"gulp-mocha": "^2.0.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.1.0",
"sinon": "^1.13.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"freedom": "~0.6.21"
}
}