-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.36 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.36 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
{
"name": "plugin-engineering-workspace",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"extensions/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @membership/extension-sdk && npm run build --workspace @membership/web && npm run build --workspace @membership/main-extension",
"build:sdk": "npm run build --workspace @membership/extension-sdk",
"build:web": "npm run build --workspace @membership/web",
"build:extension": "npm run build --workspace @membership/main-extension",
"site:smoke": "node scripts/site_smoke.mjs",
"security:scan": "node scripts/secret_scan.mjs . > secret_scan_output.json",
"catalog:validate": "node scripts/catalog_validate.mjs",
"deploy:pay-site:static": "powershell -ExecutionPolicy Bypass -File scripts/deploy-pay-site-static-marketplace.ps1",
"dev:web": "npm run dev --workspace @membership/web",
"dev:extension": "npm run dev --workspace @membership/main-extension",
"typecheck": "npm run typecheck --workspace @membership/extension-sdk && npm run typecheck --workspace @membership/web && npm run typecheck --workspace @membership/main-extension",
"supabase:start": "npx supabase@latest start",
"supabase:db:reset": "npx supabase@latest db reset",
"supabase:functions:serve": "npx supabase@latest functions serve --env-file .env.local"
}
}