This repository was archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
84 lines (84 loc) · 2.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@aws/workbench-core-accounts",
"version": "1.0.3",
"description": "Access and management of resources helping in connecting to AWS hosting accounts.",
"homepage": "https://github.com/aws-solutions/research-service-workbench-on-aws",
"repository": {
"type": "git",
"url": "https://github.com/aws-solutions/research-service-workbench-on-aws.git"
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"add-license-header": "license-check-and-add add -f license-add-config.json",
"build": "heft build --clean && rushx pkg-json-lint",
"build:test": "heft test --clean && rushx pkg-json-lint",
"check-license-header": "license-check-and-add check -f license-add-config.json",
"depcheck": "depcheck",
"jest": "jest",
"license-checker": "license-checker --onlyAllow 'MIT; Apache-2.0; ISC; BSD'",
"lint:fix": "eslint . --fix",
"pkg-json-lint": "npmPkgJsonLint -c ../../.npmpackagejsonlintrc.json .",
"sort-package-json": "sort-package-json package.json",
"test": "heft test --clean --no-build",
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": ".test.ts",
"transform": {
"\\.(ts)$": "ts-jest"
}
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.212.0",
"@aws-sdk/client-dynamodb": "^3.212.0",
"@aws-sdk/client-ec2": "^3.212.0",
"@aws-sdk/client-eventbridge": "^3.212.0",
"@aws-sdk/client-kms": "^3.212.0",
"@aws-sdk/client-s3": "^3.212.0",
"@aws-sdk/client-service-catalog": "^3.212.0",
"@aws-sdk/client-ssm": "^3.212.0",
"@aws-sdk/types": "^3.212.0",
"@aws-sdk/util-dynamodb": "^3.212.0",
"@aws/workbench-core-authorization": "workspace:*",
"@aws/workbench-core-base": "workspace:*",
"@aws/workbench-core-datasets": "workspace:*",
"@hapi/boom": "^10.0.0",
"lodash": "^4.17.21",
"zod": "^3.19.1"
},
"devDependencies": {
"@aws/eslint-config-workbench-core-eslint-custom": "workspace:*",
"@rushstack/eslint-config": "^3.0.0",
"@rushstack/heft": "^0.50.5",
"@rushstack/heft-jest-plugin": "^0.5.11",
"@rushstack/heft-node-rig": "^1.12.11",
"@types/heft-jest": "1.0.2",
"@types/lodash": "^4.14.181",
"@types/node": "^18.15.11",
"aws-cdk-lib": "^2.149.0",
"aws-sdk-client-mock": "^0.6.2",
"constructs": "^10.0.0",
"depcheck": "^1.4.3",
"eslint": "^8.7.0",
"jest": "^29.5.0",
"license-check-and-add": "^4.0.5",
"license-checker": "^25.0.1",
"npm-package-json-lint": "^6.3.0",
"npm-package-json-lint-config-default": "^5.0.0",
"sort-package-json": "^1.57.0",
"ts-jest": "^29.1.0",
"typescript": "^4.5.2"
}
}