-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.67 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
50
51
52
53
54
{
"name": "aws-lambda-image-processor",
"version": "0.0.1",
"description": "Boilerplate to process images uploaded to AWS S3 using the lib sharp from node",
"main": "dist/index.js",
"scripts": {
"deploy": "npm run install-sharp-for-linux && npm run ts && npm run serverless-deploy",
"lint": "./node_modules/.bin/eslint src/*.ts",
"serve": "tsc --watch",
"serverless-deploy": "./node_modules/.bin/serverless deploy -v",
"ts": "./node_modules/.bin/tsc",
"precommit": "npm run lint",
"install-sharp-for-linux": "rm -rf node_modules/sharp && npm install --arch=x64 --platform=linux sharp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfloriani/aws-lambda-image-processor.git"
},
"keywords": [
"node",
"typescript",
"es6",
"AWS",
"AWS S3",
"AWS Lambda",
"Serverless",
"Sharp"
],
"author": "Lucas Alexander Floriani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasfloriani/aws-lambda-image-processor/issues"
},
"homepage": "https://github.com/lucasfloriani/aws-lambda-image-processor#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/node": "^13.13.4",
"@types/sharp": "^0.25.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"serverless": "^1.69.0",
"serverless-dotenv-plugin": "^2.4.2",
"typescript": "^3.8.3"
},
"dependencies": {
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.669.0",
"sharp": "^0.25.2"
}
}