forked from vikasgarghb/file-stream-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 912 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
{
"name": "copy-file-via-stream",
"version": "0.0.1",
"description": "Lambda function to upload the file to S3 from a give url",
"scripts": {
"build": "npm run clean && webpack",
"watch": "tsc -w",
"lint": "eslint --ext .ts .",
"clean": "rimraf dist"
},
"author": "Vikas Garg",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^13.7.7",
"@types/webpack": "^4.41.7",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"aws-sdk": "^2.659.0",
"axios": "^0.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"minimist": "^1.2.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}