-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "aws-github",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": "20.12.2"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"reset": "rm -rf **/node_modules **/dist **/*.tfplan **/*.lock.hcl **/.terraform",
"format": "terraform -chdir=terraform fmt -recursive",
"formatfail": "terraform -chdir=terraform fmt -recursive -check .",
"init": "terraform -chdir=terraform init",
"select": "terraform -chdir=terraform workspace select",
"show": "terraform -chdir=terraform workspace show",
"plan": "pnpm run show && terraform -chdir=terraform plan -out .plan.tfplan",
"apply": "terraform -chdir=terraform apply .plan.tfplan",
"prepr": "pnpm i --merge-git-branch-lockfiles",
"commitlint": "commitlint --edit",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"husky": "9.1.6",
"typescript": "5.6.3"
}
}