-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
40
41
42
43
44
45
46
47
48
{
"name": "serverless-webhook",
"version": "1.0.0",
"bin": {
"pipeline": "dist/bin/pipeline.js"
},
"scripts": {
"clean": "rm -r ./dist",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc-cdk.yml './lib/*.ts' './bin/*.ts' --ext .ts",
"lint:fix": "eslint -c .eslintrc-cdk.tml --fix './lib/*.ts' './bin/*.ts' --ext .ts",
"test": "jest",
"cdk": "cdk"
},
"license": "MIT-0",
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.2",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"aws-cdk": "2.94.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "2.94.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-authorizers-alpha": "2.94.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "2.94.0-alpha.0",
"@aws-lambda-powertools/logger": "^1.9.0",
"aws-cdk-lib": "2.94.0",
"aws-lambda": "^1.0.7",
"cdk-nag": "^2.27.122",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}