-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 829 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 829 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
{
"name": "user-provisioning-script",
"version": "0.1.0",
"bin": {
"user-provisioning-script": "bin/user-provisioning-script.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.14.9",
"aws-cdk": "2.148.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.3"
},
"dependencies": {
"@aws-cdk/aws-events": "^1.204.0",
"@aws-cdk/aws-events-targets": "^1.204.0",
"@aws-cdk/aws-iam": "^1.204.0",
"@aws-cdk/aws-lambda": "^1.204.0",
"@aws-cdk/aws-sns": "^1.204.0",
"@aws-cdk/aws-sns-subscriptions": "^1.204.0",
"aws-cdk-lib": "2.148.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}