forked from bobbyhadz/aws-cdk-lambda-function-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"name": "cdk-starter",
"version": "0.1.0",
"bin": {
"cdk-starter": "bin/cdk-starter.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint . --ext js,jsx,ts,tsx --fix"
},
"dependencies": {
"@aws-cdk/assert": "1.101.0",
"@aws-cdk/aws-iam": "1.101.0",
"@aws-cdk/aws-lambda": "1.101.0",
"@aws-cdk/core": "1.101.0",
"aws-cdk": "1.101.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"esbuild": "^0.11.12",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}