-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1008 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
34
35
36
37
{
"name": "auth-token-vendor",
"version": "0.1.0",
"author": "NoSQLKnowHow",
"description": "A microservice for dishing out Momento auth tokens to browser apps using the js web-sdk.",
"license": "Apache 2.0",
"bin": {
"auth-token-vendor": "bin/auth-token-vendor.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.1",
"@types/node": "^20.3.2",
"aws-cdk": "2.85.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@aws-cdk/aws-lambda-nodejs": "^1.204.0",
"@aws-cdk/aws-secretsmanager": "^1.204.0",
"@aws-sdk/client-lambda": "^3.352.0",
"@aws-sdk/client-secrets-manager": "^3.352.0",
"@gomomento/sdk": "^1.25.1",
"aws-cdk-lib": "^2.85.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}