-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "storify",
"private": true,
"version": "1.0.0",
"type": "module",
"author": {
"name": "Johanna Fagerås",
"email": "[email protected]",
"url": "https://mystorify.se"
},
"repository": {
"type": "git",
"url": "git://github.com/johannaefageras/storify.git"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"build:cron": "node scripts/build-cron.mjs"
},
"devDependencies": {
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/web-push": "^3.6.4",
"esbuild": "^0.25.12",
"jsdom": "^28.0.0",
"svelte": "^5.45.6",
"svelte-check": "^4.3.4",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.3",
"@sveltejs/adapter-node": "^5.2.0",
"@tiptap/core": "^3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/extension-text-align": "^3.19.0",
"@tiptap/extension-underline": "^3.20.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"@types/html2canvas": "^0.5.35",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"html2canvas": "^1.4.1",
"jspdf": "^4.0.0",
"marked": "^17.0.1",
"resend": "^6.8.0",
"web-push": "^3.6.7"
}
}