-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "webauthn-cognito",
"version": "0.1.0",
"bin": {
"webauthn-cognito": "bin/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"frontend:build": "cd frontend && yarn build && cd ..",
"deploy": "yarn frontend:build && npx cdk deploy --all"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"@types/jest": "^29.4.0",
"@types/node": "18.14.2",
"aws-cdk": "2.70.0",
"aws-sdk": "^2.1477.0",
"esbuild": "^0.19.5",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@aws-cdk/aws-cognito": "^1.204.0",
"@aws-cdk/aws-lambda-nodejs": "^1.204.0",
"@aws-sdk/client-cognito-identity-provider": "^3.437.0",
"@aws-sdk/client-ses": "^3.441.0",
"@simplewebauthn/server": "^8.3.2",
"@simplewebauthn/typescript-types": "^8.3.3",
"aws-cdk-lib": "2.67.0",
"base64url": "^3.0.1",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}