-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "routstr-chat",
"version": "0.3.2",
"private": true,
"workspaces": [],
"scripts": {
"dev": "next dev -p 3001",
"dev:clean": "npm run clean:sw && next dev",
"clean:sw": "node -e \"if (typeof window !== 'undefined') { navigator.serviceWorker.getRegistrations().then(regs => regs.forEach(reg => reg.unregister())) }\" || echo 'SW cleanup completed'",
"build": "next build",
"start": "npx --yes serve -s out -l 3000",
"lint": "next lint",
"format": "prettier --write .",
"static": "next build && npx serve out",
"docker:build": "docker build -f docker/Dockerfile -t routstr-chat .",
"docker:run": "docker run -d -p 3000:80 --name routstr-chat routstr-chat",
"docker:stop": "docker stop routstr-chat && docker rm routstr-chat",
"test:invoices": "node test/invoice-persistence.test.js",
"test:invoices:integration": "node test/invoice-integration.test.js",
"test:setup": "./test/setup-regtest-mint.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:onboarding": "playwright test tests/e2e/onboarding.spec.ts",
"test:e2e:features": "playwright test tests/e2e/basic-features.spec.ts",
"test:e2e:headed": "playwright test --headed --workers=1",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@cashu/cashu-ts": "^3.6.2",
"@cashu/crypto": "^0.3.4",
"@contextvm/sdk": "^0.6.2",
"@ducanh2912/next-pwa": "^10.2.9",
"@getalby/bitcoin-connect-react": "^3.10.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.11",
"@routstr/sdk": "0.3.6",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.80.6",
"applesauce-accounts": "^5.1.0",
"applesauce-common": "^5.1.0",
"applesauce-core": "^5.1.0",
"applesauce-loaders": "^5.1.0",
"applesauce-react": "^5.1.0",
"applesauce-relay": "^5.1.0",
"applesauce-signers": "^5.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cobe": "^0.6.3",
"idb": "^8.0.3",
"katex": "^0.16.22",
"lucide-react": "^0.503.0",
"motion": "^12.7.5",
"next": "15.5.9",
"next-themes": "^0.4.6",
"nostr-idb": "^2.4.0",
"nostr-tools": "^2.13.0",
"pdfjs-dist": "^4.10.38",
"qrcode.react": "^4.2.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-katex": "^3.1.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.15",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"rxjs": "^7.8.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.2.8",
"vaul": "^1.1.2",
"workbox-window": "^7.1.0",
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.2.0",
"zod": "^4.4.3",
"zustand": "^5.0.5"
},
"optionalDependencies": {
"better-sqlite3": "^11.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4",
"@types/minimatch": "^5.1.2",
"@types/node": "^20",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"baseline-browser-mapping": "^2.9.12",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"eslint-config-prettier": "^10.1.8",
"msw": "^2.11.3",
"null-loader": "^4.0.1",
"playwright": "^1.56.1",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^2.1.8"
},
"msw": {
"workerDirectory": [
"public"
]
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}