-
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.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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": "integ_test_sample",
"version": "0.1.0",
"bin": {
"integ_test_sample": "bin/integ_test_sample.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/integ-runner": "^2.113.0-alpha.0",
"@aws-cdk/integ-tests-alpha": "^2.113.0-alpha.0",
"@types/aws-lambda": "^8.10.130",
"@types/jest": "^29.5.8",
"@types/node": "20.9.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"aws-cdk": "2.113.0",
"cdk-nag": "^2.27.207",
"esbuild": "^0.19.8",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.113.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}