-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
24 lines (24 loc) · 919 Bytes
/
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
{
"name": "trivia-game-static-site-infrastructure",
"version": "0.1.0",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"synth-infra": "cdk synth -o build --app 'node infrastructure.js'",
"bootstrap-infra": "cdk bootstrap --app 'node infrastructure.js'",
"deploy-infra-test": "cdk deploy --app 'node infrastructure.js' --require-approval never TriviaGameStaticSiteInfraTest",
"deploy-infra-prod": "cdk deploy --app 'node infrastructure.js' --require-approval never TriviaGameStaticSiteInfraProd",
"deploy-infra-root-domain": "cdk deploy --app 'node infrastructure.js' --require-approval never TriviaGameRootDomainRedirectProd"
},
"devDependencies": {
"@types/node": "^22.10.3",
"aws-cdk": "^2.173.4",
"typescript": "^5.7.2"
},
"dependencies": {
"aws-cdk-lib": "^2.173.4",
"constructs": "^10.4.2"
}
}