-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "uploader",
"version": "1.2.2",
"description": "Serverless web application for uploading files to S3",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"build": "rollup --config && zip -r uploader.zip bundle.js public",
"package": "aws cloudformation package --template-file template.yml --output-template-file packaged-template.yml --s3-bucket $CODE_BUCKET",
"deploy": "aws cloudformation deploy --template-file packaged-template.yml --capabilities CAPABILITY_IAM --stack-name dev-uploader-$USER --parameter-overrides destBucket=$DEST_BUCKET"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanchiu/serverless-galleria.git"
},
"keywords": [
"Serverless",
"Image",
"Upload",
"Uploader",
"S3"
],
"author": "Evan Chiu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanchiu/serverless-galleria/issues"
},
"homepage": "https://github.com/evanchiu/serverless-galleria#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.52.0",
"rollup": "^4.1.4"
},
"dependencies": {
"mime-types": "^2.1.17",
"serverless-galleria-util": "1.2.0"
}
}