forked from irschad/serverless-url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 784 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
{
"name": "serverless-url-shortener",
"version": "1.0.0",
"description": "This README would normally document whatever steps are necessary to get your application up and running.",
"main": "index.js",
"scripts": {
"deploy": "npm install && sls deploy --stage=${ENV} --region=${REGION} --acmcertarn ${acmcertarn} --domainname ${domainname} --r53hosedzoneid ${r53hosedzoneid} --creatednsrecord ${creatednsrecord}"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.3.0",
"@types/aws-lambda": "^8.10.71",
"aws-lambda": "^1.0.6",
"serverless-iam-roles-per-function": "^3.1.0",
"serverless-plugin-typescript": "^1.1.9",
"typescript": "^4.1.3"
},
"dependencies": {
"short-unique-id": "^3.2.3"
}
}