-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 813 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 813 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
{
"name": "serverless-terraform-graphql-federation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev --parallel",
"deploy:infrastructure": "cd infrastructure/dev && terraform apply --auto-approve -var-file='auto.tfvars'",
"deploy:turbo": "pnpm run deploy:infrastructure && turbo run deploy",
"destroy:infrastructure": "cd infrastructure/dev && terraform destroy --auto-approve -var-file='auto.tfvars'",
"destroy:turbo": "turbo run destroy && pnpm run destroy:infrastructure"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"prettier": "^2.7.1",
"turbo": "^1.3.1",
"typescript": "^4.7.4"
}
}