forked from FreeFeed/freefeed-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"author": "epicmonkey <mail@epicmonkey.org>",
"name": "freefeed-server",
"description": "FreeFeed is an open source FriendFeed clone (yes, it is free and open!) based on Pepyatka open-source FriendFeed clone (yes, that one is also free and open). Basically, this is a social real-time feed aggregator that allows you to share cute kittens, coordinate upcoming events, discuss any other cool stuff on the Internet or setup a private Pepyatka instance in your company.",
"homepage": "https://freefeed.net",
"version": "1.15.2",
"private": true,
"scripts": {
"start": "babel-node profiled.js",
"travis": "run-s -c test lint",
"test": "run-s reset-test-db mocha",
"lint": "eslint app config test",
"reset-test-db": "./bin/clean_test_db && knex --env test migrate:latest",
"mocha": "NODE_ENV=test mocha --opts test/mocha.opts test/unit test/functional",
"console": "babel-node bin/console",
"coverage": "NODE_ENV=test istanbul cover _mocha -- -R spec",
"data_transfer": "babel-node bin/data_transfer",
"reindex_hashtags": "babel-node bin/reindex_hashtags",
"count_stats": "babel-node bin/count_stats",
"count-daily-stats": "babel-node bin/count-daily-stats"
},
"repository": {
"type": "git",
"url": "git://github.com/FreeFeed/freefeed-server.git"
},
"dependencies": {
"await-lock": "1.1.2",
"aws-sdk": "2.7.21",
"babel-cli": "6.18.0",
"babel-preset-es2015-node6": "0.4.0",
"babel-preset-stage-1": "6.16.0",
"bcrypt": "1.0.2",
"bluebird": "3.4.7",
"cache-manager": "2.3.0",
"cache-manager-redis": "0.4.0",
"console-stamp": "0.2.5",
"ejs": "2.5.5",
"gm": "1.23.0",
"grapheme-breaker": "0.3.2",
"hiredis": "0.5.0",
"jsonwebtoken": "5.7.0",
"knex": "0.12.6",
"knex-cleaner": "1.1.3",
"koa": "2.0.0-alpha.7",
"koa-body": "2.0.0",
"koa-methodoverride": "2.0.0",
"koa-morgan": "1.0.1",
"koa-passport": "3.0.0-rc.3",
"koa-response-time": "2.0.0",
"koa-router": "7.1.0",
"koa-static": "3.0.0",
"lodash": "4.17.4",
"mmmagic": "0.4.5",
"moment": "2.17.1",
"monitor-dog": "1.5.0",
"musicmetadata": "2.0.5",
"mv": "2.1.1",
"newrelic": "1.36.1",
"node-cache": "4.1.1",
"node-fetch": "1.6.3",
"nodemailer": "1.11.0",
"nodemailer-smtp-transport": "1.1.0",
"nodemailer-stub-transport": "1.0.0",
"passport-local": "1.0.0",
"pg": "6.1.2",
"pg-format": "^1.0.2",
"promise-streams": "^1.0.1",
"redis": "2.4.2",
"socket.io": "1.3.7",
"socket.io-redis": "git+https://github.com/devoidfury/socket.io-redis.git#e1b1ed671d6074bae1040792d0a08649a10c994c",
"twitter-text": "1.14.3",
"underscore.string": "3.3.4",
"url": "0.11.0",
"uuid": "3.0.1",
"validator": "3.40.1",
"winston": "1.1.2"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-register": "6.18.0",
"chai": "3.5.0",
"chai-fs": "~1.0.0",
"eslint": "3.12.2",
"eslint-plugin-babel": "4.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-lodash": "2.2.5",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "5.0.4",
"istanbul": "0.4.5",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"npm-run-all": "4.0.0",
"scarlet": "2.0.20",
"socket.io-client": "1.3.7",
"superagent": "1.8.3",
"unexpected": "^10.19.0"
}
}