-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "aws-rfdk",
"version": "1.5.0",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-rfdk.git",
"directory": ""
},
"private": true,
"scripts": {
"build": "./build.sh",
"pack": "./pack.sh",
"clean": "./scripts/clean-stale-files.sh && lerna run clean && bash ./clean.sh",
"package": "lerna run package",
"release": "standard-version"
},
"standard-version": {
"scripts": {
"prebump": "echo $(node -pe \"require('./lerna.json').version\")",
"precommit": "git add ."
}
},
"devDependencies": {
"@aws-sdk/client-acm": "^3.699.0",
"@aws-sdk/client-ssm": "^3.716.0",
"@aws-sdk/client-cloudformation": "^3.716.0",
"@aws-sdk/client-cloudwatch-logs": "^3.693.0",
"@aws-sdk/client-dynamodb": "^3.679.0",
"@aws-sdk/client-ecs": "^3.703.0",
"@aws-sdk/client-secrets-manager": "^3.675.0",
"@aws-sdk/util-dynamodb": "^3.675.0",
"@types/jest": "^29.5.13",
"@types/node": "18.11.19",
"aws-cdk-lib": "2.163.0",
"constructs": "^10.0.0",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lerna": "^8.1.9",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "~5.4.5"
},
"workspaces": {
"packages": [
"examples/**",
"lambda-layers/",
"packages/*",
"packages/aws-rfdk/*",
"tools/*",
"integ"
]
}
}