-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
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
{
"name": "image-compress-lambda",
"version": "0.0.1",
"description": "AWS lambda handler for compressing and resizing images on the fly",
"main": "index.js",
"scripts": {
"compile": "spack .",
"build": "ts-node scripts/build.ts",
"sync": "ts-node scripts/sync.ts",
"lint": "eslint --ext .ts . --color",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gi Wah Dávalos <giwirodavalos@gmail.com> (https://github.com/giwiro)",
"license": "GNU",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.197",
"@types/archiver": "^5.3.1",
"@types/aws-lambda": "^8.10.99",
"@types/node": "^17.0.41",
"@types/sharp": "^0.30.4",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.107.0",
"sharp": "^0.30.6"
}
}