-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 3.62 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "diezmossv",
"version": "1.0.0",
"description": "Cloudflare Worker and admin panel for automated CDE issuance from Wompi donations.",
"scripts": {
"build": "vite build && tsc -p tsconfig.worker.json --noEmit",
"build:private": "node scripts/run-private-build.mjs",
"dev": "vite --host 127.0.0.1",
"dev:worker": "node scripts/run-worker-dev.mjs",
"dev:stripe-api-proxy": "node scripts/stripe-local-api-proxy.mjs",
"security:check-private-boundary": "node scripts/check-private-boundary.mjs",
"migrations:check-immutability": "node scripts/check-migration-immutability.mjs",
"cf:branding:check": "node scripts/assert-runtime-branding-logo.mjs",
"cf:branding:migrate": "node scripts/migrate-runtime-branding-logo.mjs",
"cf:whoami": "node scripts/run-private-wrangler.mjs whoami",
"cf:migrate:staging": "node scripts/assert-release-provenance.mjs --env staging && node scripts/d1-migration-preflight.mjs --binding DB --env staging && node scripts/d1-schema-compatibility.mjs migrate --binding DB --env staging",
"cf:deploy:staging": "node scripts/assert-release-provenance.mjs --env staging && node scripts/assert-runtime-branding-logo.mjs --env staging && npm run build:private -- --env staging && node scripts/run-private-wrangler.mjs deploy --env staging --keep-vars",
"cf:cutover:staging": "node scripts/assert-fiscal-cutover.mjs && node scripts/assert-release-provenance.mjs --env staging && node scripts/assert-runtime-branding-logo.mjs --env staging && npm run cf:migrate:staging && npm run cf:deploy:staging",
"cf:tail:staging": "node scripts/assert-release-provenance.mjs --env staging && node scripts/run-private-wrangler.mjs tail --env staging",
"cf:migrate:prod": "node scripts/assert-fiscal-cutover.mjs && node scripts/assert-release-provenance.mjs --env production && node scripts/d1-migration-preflight.mjs --binding DB --env production && node scripts/d1-schema-compatibility.mjs migrate --binding DB --env production",
"cf:deploy:prod": "node scripts/assert-fiscal-cutover.mjs && node scripts/assert-release-provenance.mjs --env production && node scripts/assert-runtime-branding-logo.mjs --env production && npm run build:private -- --env production && node scripts/run-private-wrangler.mjs deploy --env production --keep-vars",
"cf:tail:prod": "node scripts/assert-release-provenance.mjs --env production && node scripts/run-private-wrangler.mjs tail --env production",
"smoke:staging": "node scripts/staging-smoke.mjs",
"test": "vitest run",
"test:watch": "vitest",
"types:generate": "wrangler types --env-interface CloudflareBindings --strict-vars false",
"types:check": "wrangler types --check --env-interface CloudflareBindings --strict-vars false",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.worker.json --noEmit"
},
"keywords": [
"cloudflare-workers",
"dte",
"wompi",
"el-salvador"
],
"author": "",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22.16.0"
},
"dependencies": {
"@stripe/react-stripe-js": "6.8.1",
"@stripe/stripe-js": "9.13.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"lucide-react": "^1.33.0",
"pdf-lib": "^1.17.1",
"qrcode": "^1.5.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"stripe": "22.5.0"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.1.0",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"wrangler": "^4.124.0"
}
}