-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.27 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.27 KB
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
{
"scripts": {
"db": "supabase start",
"db:test": "PGOPTIONS='--client-min-messages=warning' supabase test db ",
"db:changed": "./scripts/db_changed.sh",
"db:push": "./scripts/db_deploy_prod.sh",
"//": "https://docs.stripe.com/stripe-cli#install",
"stripe": "stripe listen --forward-to http://localhost:5173/api/webhooks/stripe",
"stripe:trigger": "stripe trigger",
"init:env": "tsx scripts/init-secrets.ts",
"init:env:prod": "tsx scripts/init-secrets.ts --plugin cloudflare-prod",
"terraform:plan": "tsx scripts/deploy_terraform.ts --plan-only",
"terraform:deploy": "tsx scripts/deploy_terraform.ts",
"terraform:deploy:auto": "tsx scripts/deploy_terraform.ts --auto-approve",
"terraform:destroy": "tsx scripts/deploy_terraform.ts --destroy"
},
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.830.0",
"@iarna/toml": "^2.2.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.19.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"glob": "^11.0.3",
"inquirer": "^8.2.6",
"jsonc-parser": "^3.3.1",
"supabase": "^2.26.9",
"tsx": "^4.0.0",
"typescript": "^5.3.3",
"wrangler": "^4.20.0",
"yargs": "^18.0.0"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20250619.0"
}
}