-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 Bytes
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
{
"name": "aws-testing-cdk",
"version": "0.1.0",
"bin": {
"aws-testing-cdk": "bin/aws-testing-cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint --fix '**/*.ts'",
"clean": "tsc --build --clean && rm -rf cdk.out"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"aws-cdk": "2.100.0",
"eslint": "^8.9.0",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.177.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}