-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 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
{
"name": "images-download-upload",
"version": "0.1.0",
"description": "Actor for downloading and uploading images",
"main": "src/main.js",
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "ts-node-esm -T src/main.ts",
"build": "tsc"
},
"keywords": [
"images",
"upload",
"download",
"s3"
],
"author": "Lukas Krivka",
"license": "ISC",
"type": "module",
"dependencies": {
"apify": "^3.1.1",
"archiver": "^5.3.1",
"aws-sdk": "^2.1309.0",
"crawlee": "^3.1.2",
"file-type": "^18.2.0",
"hpagent": "^1.2.0",
"image-size": "^0.6.3",
"jimp": "^0.21.0",
"md5": "^2.2.1",
"mime": "^4.0.4",
"needle": "^3.2.0",
"object-path": "^0.11.8",
"request-fixed-tunnel-agent": "^2.88.3",
"webp-converter": "kilohaty/webp-converter"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
"@types/archiver": "^5.3.1",
"@types/crypto-js": "^4.1.1",
"@types/image-size": "0.0.29",
"@types/jimp": "^0.2.28",
"@types/needle": "^3.2.0",
"@types/object-path": "^0.11.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}