-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1004 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
{
"name": "cdk-lambda-powertools-demo",
"version": "1.0.0",
"description": "AWS CDK and Lambda Powertools",
"main": "bin/deploy.ts",
"scripts": {
"cdk": "cdk",
"build": "bash bin/build.sh"
},
"author": "Mark Ilott",
"license": "MIT",
"devDependencies": {
"@demo/tools-layer": "file:./lib/layers/powertools/nodejs",
"@types/aws-lambda": "^8.10.111",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"aws-sdk": "^2.1328.0",
"esbuild": "^0.17.11",
"eslint": "^8.35.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@demo/constructs": "file:./lib/constructs",
"aws-cdk-lib": "^2.67.0",
"constructs": "^10.1.267",
"source-map-support": "^0.5.21"
}
}