-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 753 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 753 Bytes
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
{
"name": "FilterTweetsKeywords",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel twitter rabbitmq api",
"twitter": "node worker/twitter/twitter.js",
"rabbitmq": "node worker/rabbitmq/receive.js",
"api": "node api/graphql/index.js"
},
"keywords": [],
"author": "Jose Luis Chavez <josephsiul15@gmai.com>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.6",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"graphql-tools": "^6.0.12",
"redis": "^3.0.2",
"twitter": "^1.7.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}