-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "twitter-socket.io-adapter",
"version": "1.0.0",
"description": "A microservice which translates Twitter's new WebHook-based Account Activity API into a Socket.IO-based one.",
"engines": {
"node": "8.11.2"
},
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"static": "tslint -c tslint.json 'src/**/*.ts'",
"pretest": "npm run static",
"test": "echo \"No tests yet.\"",
"prebuild": "npm run test",
"build": "trash dist && tsc -p tsconfig.json"
},
"dependencies": {
"body-parser": "^1.16.1",
"convict": "^4.2.0",
"express": "4.13.3",
"raven": "^2.6.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"socket.io": "2.0.4",
"socketio-auth": "^0.1.1",
"tslib": "^1.9.1",
"winston": "^2.4.2",
"winston-daily-rotate-file": "^3.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gamesdonequick/twitter-websocket-adapter"
},
"keywords": [
"node",
"heroku",
"express",
"webhook",
"twitter",
"websocket"
],
"license": "MIT",
"devDependencies": {
"@types/convict": "^4.2.0",
"@types/express": "^4.11.1",
"@types/nconf": "0.0.37",
"@types/node": "^10.1.2",
"@types/raven": "^2.5.1",
"@types/request-promise": "^4.1.41",
"@types/socket.io": "^1.4.33",
"@types/winston": "^2.3.9",
"trash-cli": "^1.4.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-xo": "^0.8.0",
"typescript": "^2.8.3"
}
}