-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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-event-driven-app",
"version": "0.1.0",
"bin": {
"cdk-event-driven-app": "bin/cdk-event-driven-app.js"
},
"scripts": {
"build": "tsc",
"deploy": "cdk deploy --all --require-approval never",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.137",
"@types/jest": "^29.5.12",
"@types/node": "20.11.19",
"aws-cdk": "2.133.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"esbuild": "^0.20.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.1.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3",
"prettier": "3.2.5",
"typescript-eslint": "^7.7.0"
},
"dependencies": {
"aws-cdk-lib": "2.133.0",
"constructs": "^10.0.0"
}
}