-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "codehub-trending",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/main",
"dev-start": "ts-node ./bin/main",
"build": "tsc",
"build:docker": "docker build -t thedillonb/github-trending:latest ."
},
"dependencies": {
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"http-errors": "^1.6.3",
"lodash": "^4.17.13",
"morgan": "^1.9.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"winston": "^2.4.1",
"write-file-atomic": "^2.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/cheerio": "^0.22.7",
"@types/cors": "^2.8.3",
"@types/express": "^4.11.1",
"@types/http-errors": "^1.6.1",
"@types/lodash": "^4.14.106",
"@types/morgan": "^1.7.35",
"@types/request": "^2.47.0",
"@types/request-promise-native": "^1.0.15",
"@types/winston": "^2.3.9",
"@types/write-file-atomic": "^2.1.1",
"prettier": "^1.11.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.8.1"
}
}