forked from martzmakes/blog-cdk-cloudfront-edge-auth0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1011 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
{
"name": "blog-cdk-cloudfront-edge-auth0",
"version": "0.1.0",
"bin": {
"blog-cdk-cloudfront-edge-auth0": "bin/blog-cdk-cloudfront-edge-auth0.js"
},
"scripts": {
"build": "tsc",
"deploy": "npm run esbuild && npm run cdk deploy -- -v",
"esbuild": "esbuild ./lib/auth.ts --outfile=./lib/auth-lambda/index.js --bundle --platform=node --target=node16 --external:aws-sdk",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.107",
"@types/jest": "^27.5.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "10.17.27",
"@types/prettier": "2.6.0",
"aws-cdk": "2.45.0",
"esbuild": "^0.15.10",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.186.0",
"aws-cdk-lib": "2.45.0",
"constructs": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"source-map-support": "^0.5.21"
}
}