forked from bobbyhadz/aws-cdk-sqs-sns-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"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-lib": "^2.20.0",
"constructs": "^10.0.112",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"aws-cdk": "^2.20.0",
"aws-lambda": "^1.0.7",
"esbuild": "^0.14.36",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}