-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "saas-presentation",
"version": "0.1.0",
"bin": {
"saas-presentation": "bin/saas-presentation.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"pullenv": "ts-node ./scripts/extract-accounts.ts",
"central-deploy": "cdk deploy CentralSaaSStack --require-approval never",
"buildProduct": "cd src/product/website && npm run build --prefix ./src/product/website",
"deployProduct": "cd src/product/website && cdk deploy ProductSaaSStack --require-approval never"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "18.14.6",
"@types/uuid": "^9.0.1",
"aws-cdk": "^2.73.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.357.0",
"@aws-sdk/client-s3": "^3.357.0",
"@aws-sdk/client-service-catalog": "^3.357.0",
"@aws-sdk/client-sfn": "^3.357.0",
"@aws-sdk/lib-dynamodb": "^3.357.0",
"@types/aws-lambda": "^8.10.115",
"aws-cdk-lib": "2.73.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.0.0",
"moment": "^2.29.4",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
}
}