-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.57 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "arxmint",
"version": "0.1.0",
"description": "Accept Bitcoin payments. Zero fees. No middleman. Self-hosted payment infrastructure — the open-source Stripe alternative.",
"private": false,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"test": "node --experimental-strip-types --test \"tests/*.test.ts\"",
"lint": "next lint",
"lint:silent-catch": "node scripts/run-bash.cjs scripts/quality/no-silent-catch.sh",
"lint:server-logging": "node scripts/run-bash.cjs scripts/quality/no-console-server.sh",
"setup:githooks": "node scripts/setup-githooks.cjs",
"security:guardrails": "node scripts/security/run-guardrails.cjs --scope staged --mode observe",
"security:guardrails:enforce": "node scripts/security/run-guardrails.cjs --scope staged --mode enforce",
"setup:cashu": "docker compose -f docker/docker-compose.cashu.yml up -d",
"setup:full": "docker compose up -d",
"setup:cdk": "docker compose -f docker-compose.yml -f docker/docker-compose.cdk.yml up -d",
"setup:agents": "bash scripts/deploy-agent-tools.sh",
"setup:regtest": "docker compose -f docker-compose.yml -f docker/docker-compose.regtest.yml up -d && bash scripts/wait-for-stack.sh && bash scripts/fund-regtest.sh",
"backup:postgres": "node scripts/run-bash.cjs scripts/backup_postgres.sh",
"backup:pitr:base": "node scripts/run-bash.cjs scripts/backup_postgres_pitr_base.sh",
"backup:pitr:wal-prune": "node scripts/run-bash.cjs scripts/prune_postgres_wal_archive.sh",
"restore:pitr": "node scripts/run-bash.cjs scripts/restore_postgres_pitr.sh",
"test:e2e": "node --experimental-strip-types --test \"tests/e2e/**/*.test.ts\"",
"test:e2e:required": "node scripts/run-bash.cjs scripts/test-e2e-required.sh",
"test:e2e:optional": "node scripts/run-bash.cjs scripts/test-e2e-optional.sh",
"test:load:smoke": "artillery run tests/load/smoke.yml",
"test:load:full": "artillery run tests/load/checkout-flow.yml",
"test:load:webhooks": "artillery run tests/load/webhook-delivery.yml",
"test:smoke:checkout": "bash scripts/smoke-checkout.sh"
},
"dependencies": {
"@cashu/cashu-ts": "^3.5.0",
"@fedimint/core": "^0.1.0",
"@fedimint/transport-web": "^0.1.2",
"@getalby/bitcoin-connect": "^3.12.2",
"@gsap/react": "^2.1.2",
"@lightninglabs/lnc-web": "0.3.5-alpha",
"@prisma/client": "~5.22.0",
"@scure/base": "^2.0.0",
"@supabase/supabase-js": "^2.98.0",
"@te-btc/agent-wallet": "^0.1.0",
"@te-btc/cashu-l402": "^0.1.0",
"@types/qrcode": "^1.5.6",
"clsx": "^2.1.0",
"framer-motion": "^12.34.3",
"gsap": "^3.14.2",
"lucide-react": "^0.469.0",
"next": "^15.1.0",
"nostr-tools": "^2.23.2",
"pdf-lib": "^1.17.1",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"stripe": "^17.0.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.4",
"tailwind-merge": "^2.2.0",
"zustand": "^5.0.0"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"artillery": "^2.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.1.0",
"postcss": "^8.4.0",
"prisma": "~5.22.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.7.0"
},
"engines": {
"node": "22.x"
}
}