-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "mongodb-activity-feed",
"version": "0.2.3",
"description": "Activity Feeds, Timeline, Notification Feed, News Feed with MongoDB, Mongo",
"main": "dist/index.js",
"homepage": "https://github.com/GetStream/mongodb-activity-feed-example",
"repository": "https://github.com/GetStream/mongodb-activity-feed-example",
"bugs": "https://github.com/GetStream/mongodb-activity-feed-example/issues",
"author": "Thierry Schellenbach",
"keywords": [
"activity feed",
"mongodb",
"news feed",
"notification feed",
"fanout",
"social",
"event",
"twitter",
"timeline"
],
"license": "BSD",
"private": false,
"scripts": {
"precommit": "npx pretty-quick --staged",
"build": "npx babel src --out-dir dist --ignore node_modules",
"test": "NODE_ENV=test node_modules/mocha/bin/_mocha --timeout 15000 --require test-entry.js \"test/**/*.js\"",
"lint": "npx eslint \"**/*.js\"",
"prettier": "npx prettier \"**/*.js\" --write"
},
"dependencies": {
"bull": "^3.4.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"getstream": "^3.20.0",
"ioredis": "^4.0.0",
"mongodb": "^3.1.3",
"mongoose": "^5.2.8",
"mongoose-autopopulate": "^0.8.0",
"mongoose-timestamp": "^0.6.0",
"redlock": "^3.1.2",
"socket.io": "^2.1.1",
"socket.io-redis": "^5.2.0",
"stats-lite": "^2.1.1",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-shebang": "^0.0.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"clarify": "^2.1.0",
"codecov": "^3.0.3",
"eslint": "^5.2.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.11.0",
"flatted": "^0.2.3",
"get-port": "^4.0.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nock": "^9.6.1",
"prettier": "1.14.2",
"prettierrc": "^0.0.0-5",
"pretty-quick": "^1.6.0",
"sinon": "^6.1.2",
"trace": "^3.1.0"
}
}