-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.29 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
{
"name": "websocket-server-api-gw",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "source ./scripts/set-env.sh && serverless deploy",
"deploy-staging": "source ./scripts/set-env.sh && serverless deploy --stage staging",
"logs-ws": "aws logs tail /aws/lambda/aqua-stat-websocket-server-handler-staging-websocketHandler --follow --region=us-west-1",
"logs-http": "aws logs tail /aws/lambda/aqua-stat-websocket-server-handler-staging-httpHandler --follow --region=us-west-1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.102",
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.13",
"prettier": "^2.7.1",
"serverless": "^3.22.0",
"serverless-parameters": "^0.1.0",
"serverless-plugin-typescript": "^2.1.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.159.0",
"@aws-sdk/client-dynamodb": "^3.190.0",
"@aws-sdk/client-s3": "^3.226.0",
"@types/uuid": "^8.3.4",
"aws-lambda": "^1.0.7",
"cookie": "^0.5.0",
"http-status-codes": "^2.2.0",
"joi": "^17.6.4",
"jsonwebtoken": "^8.5.1",
"uuid": "^9.0.0"
}
}