-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"private": true,
"name": "imdb-api",
"version": "1.0.0",
"description": "Serverless IMDB API powered by Cloudflare Worker",
"main": "src/index.js",
"scripts": {
"dev": "miniflare --watch --debug --kv CACHE --kv-persist --port 3000",
"publish": "wrangler publish",
"test": "jest"
},
"author": "tuhinpal <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@cloudflare/wrangler": "^1.19.12",
"axios": "^0.27.2",
"jest": "^28.1.0",
"miniflare": "^2.8.2"
},
"dependencies": {
"dom-parser": "^0.1.6",
"dotenv": "^16.0.3",
"googleapis": "^109.0.1",
"hono": "^1.4.1",
"html-entities": "^2.3.3",
"jszip": "^3.10.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.8.0",
"puppeteer": "^19.4.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuhinpal/imdb-api.git"
},
"keywords": [
"imdb",
"imdb-api",
"movie-list",
"cloudflare-worker",
"cloudflare-workers"
],
"bugs": {
"url": "https://github.com/tuhinpal/imdb-api/issues"
},
"homepage": "https://github.com/tuhinpal/imdb-api#readme"
}