forked from awsdocs/aws-doc-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 933 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
34
35
36
37
38
39
{
"name": "root",
"private": true,
"scripts": {
"test": "./scripts/test.sh",
"lint": "lint-staged",
"ci-lint": "eslint"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"workspaces": [
"example_code/cloudwatch",
"example_code/cloudwatch-logs",
"example_code/cognito",
"example_code/cloudwatch-events",
"example_code/iam",
"example_code/lambda",
"example_code/libs",
"example_code/sts",
"example_code/support",
"example_code/ec2",
"example_code/s3"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/coverage-c8": "^0.29.8",
"eslint": "^8.37.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"lerna": "^6.3.0",
"lint-staged": "^13.2.0",
"typescript": "^4.9.5",
"vitest": "^0.29.8"
}
}