-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 2.29 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
{
"name": "aws-sso-extensions-for-enterprise",
"version": "3.1.9",
"bin": {
"aws-sso-extensions-for-enterprise": "bin/aws-sso-extensions-for-enterprise.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"prettier:check": "prettier --check .",
"prettier": "prettier -w .",
"lint:check": "eslint . --ignore-path .gitignore --max-warnings 0",
"lint": "eslint . --fix --ignore-path .gitignore --max-warnings 0",
"cdk-synth-env": "cdk synth env-aws-sso-extensions-for-enterprise -c config=env",
"cdk-deploy-env": "cdk deploy env-aws-sso-extensions-for-enterprise -c config=env",
"cdk-destroy-env": "cdk destroy env-aws-sso-extensions-for-enterprise -c config=env",
"synth-region-switch-discover": "cdk synth aws-sso-extensions-region-switch-discover -c config=region-switch-discover",
"deploy-region-switch-discover": "cdk deploy aws-sso-extensions-region-switch-discover -c config=region-switch-discover",
"destroy-region-switch-discover": "cdk destroy aws-sso-extensions-region-switch-discover -c config=region-switch-discover",
"synth-region-switch-deploy": "cdk synth aws-sso-extensions-region-switch-deploy -c config=region-switch-deploy",
"deploy-region-switch": "cdk deploy aws-sso-extensions-region-switch-deploy -c config=region-switch-deploy",
"destroy-region-switch-deploy": "cdk destroy aws-sso-extensions-region-switch-deploy -c config=region-switch-deploy",
"postinstall": "yarn install --cwd ./lib/lambda-functions --frozen-lockfile"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.142",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"aws-cdk": "^2.160.0",
"esbuild": "^0.23.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"uuid": "^10.0.0"
},
"dependencies": {
"aws-cdk-lib": "^2.160.0",
"constructs": "^10.3.0",
"js-yaml": "^4.1.0",
"source-map-support": "^0.5.21"
}
}