forked from jjohare/nostr-BBS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.94 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.94 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
{
"name": "Nostr-BBS-nostr",
"version": "0.1.0",
"private": true,
"type": "module",
"overrides": {
"@noble/hashes": "1.8.0",
"@noble/curves": "1.8.1"
},
"resolutions": {
"@noble/hashes": "1.8.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:integration": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"validate": "npm run lint && npm run typecheck && npm run test && npm run validate:docs",
"validate:docs": "./docs/scripts/validate-all.sh docs",
"validate:docs:links": "./docs/scripts/validate-links.sh docs",
"validate:docs:frontmatter": "./docs/scripts/validate-frontmatter.sh docs",
"validate:docs:mermaid": "./docs/scripts/validate-mermaid.sh docs",
"validate:docs:spelling": "./docs/scripts/validate-spelling.sh docs"
},
"dependencies": {
"@nostr-dev-kit/ndk": "^2.8.2",
"@nostr-dev-kit/ndk-cache-dexie": "^2.2.11",
"@nostr-dev-kit/ndk-svelte": "^2.2.15",
"@scure/bip32": "^1.4.0",
"@scure/bip39": "^1.6.0",
"@vitest/coverage-v8": "^2.1.9",
"bip39": "^3.1.0",
"dexie": "^4.0.8",
"dompurify": "^3.0.9",
"hnswlib-wasm": "^0.8.2",
"lucide-svelte": "^0.561.0",
"nostr-tools": "^2.19.3",
"puppeteer": "^24.34.0",
"websocket-polyfill": "^1.0.0"
},
"devDependencies": {
"@noble/curves": "1.8.1",
"@noble/hashes": "1.8.0",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.19.3",
"@types/ws": "^8.18.1",
"@vitest/ui": "^2.1.9",
"agentdb": "^1.6.1",
"autoprefixer": "^10.4.20",
"claude-flow": "^3.0.0-alpha.24",
"daisyui": "^4.12.10",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^4.2.20",
"svelte-check": "^4.3.5",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.21",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.9",
"ws": "^8.18.3",
"yaml": "^2.8.2"
}
}