forked from aws-samples/friend-microservices
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 742 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 742 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
{
"name": "friend-microservices",
"version": "0.1.0",
"bin": {
"friend-microservices": "bin/friend-microservices.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"cdklocal": "cdklocal",
"integ-test": "./run-integ-tests.sh"
},
"devDependencies": {
"@aws-cdk/integ-runner": "latest",
"@aws-cdk/integ-tests-alpha": "latest",
"@types/aws-lambda": "^8.10.145",
"@types/node": "^22.0.0",
"aws-cdk": "latest",
"aws-cdk-local": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5.0"
},
"dependencies": {
"aigle": "^1.14.1",
"aws-cdk-lib": "latest",
"aws-sdk": "^2.1174.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}