-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.9 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
{
"name": "hpm-lightning",
"version": "1.2a587df",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"prebuild": "echo 'Skipping static data generation during build'",
"build": "next build",
"build:lightning": "cp .env.lightning .env.local && npm run build",
"build:basic": "cp .env.basic .env.local && npm run build",
"build:both": "./scripts/build-versions.sh",
"dev:lightning": "cp .env.lightning .env.local && npm run dev",
"dev:basic": "cp .env.basic .env.local && npm run dev",
"postbuild": "echo '✅ Build complete with auto-versioned PWA'",
"start": "next start",
"lint": "next lint",
"dev-setup": "node scripts/dev-setup.js",
"seed-db": "node scripts/seed-database.js",
"test-feeds": "node scripts/test-rss-feeds.js",
"test-removed": "node scripts/test-removed-feeds.js",
"update-version": "node scripts/auto-version-update.js",
"deploy": "npm run update-version && ./scripts/deploy.sh",
"auto-deploy": "npm run update-version && ./scripts/auto-deploy.sh",
"auto-add-publishers": "node scripts/auto-add-publisher-feeds.js",
"parse-and-add-publishers": "node scripts/parse-and-add-publishers.js",
"ensure-publisher-feeds": "node scripts/ensure-complete-publisher-feeds.js",
"post-parse-cleanup": "node scripts/post-parse-cleanup.js",
"fix-images": "node scripts/fix-corrupted-images.js",
"clear-sw-cache": "node scripts/clear-sw-cache.js",
"fix-all": "node scripts/fix-all-issues.js"
},
"dependencies": {
"@getalby/bitcoin-connect": "^3.10.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/instrumentation": "^0.203.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vercel/postgres": "^0.10.0",
"@webbtc/webln-types": "^3.0.0",
"@xmldom/xmldom": "^0.9.8",
"assert": "^2.1.0",
"autoprefixer": "^10.0.1",
"axios": "^1.11.0",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"canvas-confetti": "^1.9.3",
"crypto-browserify": "^3.12.1",
"date-fns": "^2.30.0",
"dotenv": "^17.2.0",
"fast-xml-parser": "^5.2.5",
"hls.js": "^1.6.7",
"lucide-react": "^0.294.0",
"next": "15.4.8",
"next-pwa": "^5.6.0",
"node-fetch": "^2.7.0",
"nostr-tools": "^2.16.2",
"postcss": "^8",
"process": "^0.11.10",
"react": "^18",
"react-dom": "^18",
"rss-parser": "^3.13.0",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"url": "^0.11.4",
"util": "^0.12.5",
"xml2js": "^0.6.2",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@capacitor/android": "^7.4.2",
"@capacitor/cli": "^7.4.2",
"@capacitor/core": "^7.4.2",
"@types/canvas-confetti": "^1.9.0",
"eslint": "^8",
"eslint-config-next": "^14.0.4",
"sharp": "^0.34.3",
"task-master-ai": "^0.22.0"
},
"buildTime": "2025-07-30T00:17:52.716Z"
}