forked from nostrocket/humble.horse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 KB
/
package.json
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
{
"name": "web",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"dependencies": {
"@macfja/svelte-persistent-store": "^2.4.1",
"@nostr-dev-kit/ndk": "^2.7.1",
"@nostr-dev-kit/ndk-cache-dexie": "^2.3.1",
"@nostr-dev-kit/ndk-svelte": "^2.2.12",
"@nostr-dev-kit/ndk-svelte-components": "^2.2.13",
"@snort/system": "^1.2.12",
"@stdlib/nlp-porter-stemmer": "^0.2.1",
"@types/markdown-it": "^13.0.7",
"bits-ui": "^0.18.1",
"bloomfilter": "^0.0.18",
"clsx": "^2.1.0",
"cmdk-sv": "^0.0.13",
"dompurify": "^3.1.0",
"markdown-it": "^14.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-wikicustom": "^0.0.6",
"markdown-it-wikilinks": "^1.4.0",
"mode-watcher": "^0.2.1",
"nostr-tools": "^2.2.1",
"quill": "2.0.0-rc.5",
"quill-cursors": "^4.0.2",
"quilljs-markdown": "^1.2.0",
"radix-icons-svelte": "^1.2.1",
"svelte-inview": "^4.0.2",
"svelte-loading-spinners": "^0.3.6",
"svelte-radix": "^1.0.1",
"tailwind-merge": "^2.2.1",
"tailwind-variants": "^0.2.0",
"yjs": "^13.6.12"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@sveltejs/adapter-auto": "^3.1.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@types/bloomfilter": "^0.0.2",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.11.17",
"@types/quill": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"autoprefixer": "^10.4.15",
"daisyui": "^4.7.2",
"eslint": "^8.56.0",
"postcss": "^8.4.29",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "5.0.0-next.138",
"svelte-awesome-icons": "^1.2.0",
"svelte-check": "^3.6.2",
"svelte-quill": "^1.2.0",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.2"
}
}