-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "cdktf-integration-serverless-example",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"deploy:dev": "cdktf deploy '*-dev' && yarn deploy:frontend",
"deploy:prod": "cdktf deploy '*-prod' && yarn deploy:frontend",
"deploy:frontend": "yarn workspace frontend run deploy",
"destroy:dev": "yarn destroy:frontend && cdktf destroy '*-dev'",
"destroy:prod": "yarn destroy:frontend && cdktf destroy '*-prod'",
"destroy:frontend": "yarn workspace frontend run destroy"
},
"engines": {
"node": ">= 18.12.0"
},
"dependencies": {
"@cdktf/provider-aws": "^19.0.0",
"@cdktf/provider-local": "^10.0.0",
"cdktf": "0.20.10",
"constructs": "^10.4.2",
"cron-time-generator": "^2.0.3",
"esbuild": "^0.23.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18",
"cdktf-cli": "0.20.10",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"workspaces": {
"packages": [
".",
"posts/api/lambda",
"frontend/code"
]
}
}