-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "cdk-gd-tester",
"version": "2.0.0",
"bin": {
"cdk-gd-tester": "bin/cdk-gd-tester.js"
},
"scripts": {
"lint": "eslint lib test --ext .ts --fix",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assets": "^1.204.0",
"@aws-cdk/region-info": "^2.134.0",
"@types/jest": "^29.5.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"aws-cdk": "2.134.0",
"aws-cdk-lib": "2.134.0",
"constructs": "^10.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"eslintConfig": {
"overrides": [
{
"files": [
"*.ts"
],
"extends": ".eslintrc.js",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
}
}
]
}
}