-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
34 lines (34 loc) · 972 Bytes
/
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
{
"name": "getnews.tech",
"version": "1.0.0",
"description": "A web server that fetches data from the News API and formats it for display in the terminal.",
"main": "server.js",
"repository": "[email protected]:omgimanerd/getnews.tech",
"author": "Alvin Lin <[email protected]> (http://omgimanerd.tech)",
"license": "Apache-2.0",
"dependencies": {
"async-mutex": "^0.2.2",
"bluebird": "^3.5.0",
"bluebird-retry": "^0.11.0",
"cli-table3": "^0.5.1",
"colors": "^1.1.2",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-winston": "^2.6.0",
"moment": "^2.18.1",
"moment-timezone": "^0.5.23",
"nanoid": "^2.0.1",
"newsapi": "^2.4.0",
"node-iplocate": "^1.0.1",
"redis": "^3.0.2",
"winston": "^2.4.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"mocha": "^7.2.0",
"nock": "^9.6.1"
}
}