-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "api-gateway-dynamo-python",
"version": "0.1.0",
"bin": {
"api-gateway-dynamo-python": "bin/api-gateway-dynamo-python.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint-cdk": "eslint -c ./.eslintrc.yml --ext=.ts './**'",
"lint-cdk-fix": "eslint -c ./.eslintrc.yml --ext=.ts --fix './**",
"upgrade:cdk": "npx npm-check-updates -u && npm install"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-plugin-cdk": "^1.6.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
},
"dependencies": {
"@aws-cdk/assert": "^2.8.0",
"@aws-cdk/aws-apigatewayv2-alpha": "^2.8.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.8.0-alpha.0",
"@aws-cdk/aws-lambda-python-alpha": "^2.8.0-alpha.0",
"aws-cdk": "^2.8.0",
"aws-cdk-lib": "^2.8.0",
"constructs": "^10.0.34"
}
}