-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 907 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
{
"name": "s3-image-scaler",
"version": "1.0.0",
"description": "Microservice for scaling S3-stored images on the fly.",
"main": "index.js",
"engines": {
"node": "20"
},
"scripts": {
"serve": "node server/index.js",
"test": "jest test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/grrr-amsterdam/s3-image-scaler.git"
},
"keywords": [],
"author": "Harmen Janssen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grrr-amsterdam/s3-image-scaler/issues"
},
"homepage": "https://github.com/grrr-amsterdam/s3-image-scaler#readme",
"dependencies": {
"sharp": "^0.33.5"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.312.0",
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"jest": "^29.5.0",
"prettier": "^2.5.1",
"serverless": "^3.*"
}
}