-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 975 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
35
36
37
38
39
40
41
42
43
{
"name": "series-api",
"version": "0.1.0",
"description": "A simple IMDB crawler feeding a Series API",
"main": "index.js",
"scripts": {
"start": "serverless offline start",
"deploy": "serverless deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luanpotter/series-api.git"
},
"keywords": [
"series",
"api",
"imdb",
"crawler",
"rest",
"json"
],
"author": "Luan Nico",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/luanpotter/series-api/issues"
},
"homepage": "https://github.com/luanpotter/series-api#readme",
"dependencies": {
"aws-sdk": "^2.518.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"moment": "^2.24.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"serverless-http": "^2.3.0"
},
"devDependencies": {
"serverless": "^1.51.0",
"serverless-offline": "^5.10.1"
}
}