-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.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.123.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.131",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"aws-cdk": "^2.123.0",
"aws-lambda": "^1.0.7",
"esbuild": "^0.19.12",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}