-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "stellar-checkout",
"private": true,
"version": "0.1.0",
"description": "Non-custodial stablecoin checkout + payment links on Stellar, with a swappable off-ramp seam.",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:scripts": "vitest run",
"typecheck": "turbo run typecheck",
"db:push": "pnpm --filter @checkout/api db:push",
"db:backup": "tsx scripts/db-backup.ts",
"db:restore": "tsx scripts/db-restore.ts",
"docs:status-diagram": "node scripts/gen-status-diagram.mjs",
"docs:check-status-diagram": "node scripts/gen-status-diagram.mjs --check",
"docs:check-domain-boundary": "node scripts/check-domain-boundary.mjs",
"sweep": "node scripts/uptime-check.mjs",
"demo:seed": "tsx scripts/demo-seed.ts",
"demo:reset": "tsx scripts/demo-reset.ts"
},
"dependencies": {
"@libsql/client": "0.17.4"
},
"devDependencies": {
"turbo": "2.10.8",
"typescript": "7.0.2",
"tsx": "4.23.9",
"vitest": "4.1.10",
"@types/node": "26.1.2"
},
"pnpm": {
"overrides": {
"axios": ">=1.18.0",
"postcss": ">=8.5.18",
"sharp": ">=0.35.0"
}
}
}