-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.77 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
{
"name": "patchhub.web",
"version": "0.10.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "npm run build && npm run preview:worker",
"preview:worker": "wrangler dev --port 4173",
"check:worker": "npm run build && wrangler deploy --dry-run",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:svelte": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"check:types": "svelte-kit sync && tsc --noEmit --project ./tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"validate": "npm run check && npm run check:types && npm run lint && npm run test:unit -- --run"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-cloudflare": "^7.2.9",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@types/eslint": "^9.6.1",
"@types/node": "^26.2.0",
"convex-test": "^0.0.55",
"daisyui": "^5.7.17",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.11.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"svelte": "^5.56.9",
"svelte-check": "^4.7.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"dependencies": {
"@convex-dev/rate-limiter": "^0.3.2",
"@floating-ui/dom": "^1.8.0",
"@node-rs/argon2": "^2.1.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@rowanmanning/feed-parser": "^2.1.4",
"@tiptap/core": "^3.30.1",
"@tiptap/extension-drag-handle": "^3.30.1",
"@tiptap/extension-image": "^3.30.1",
"@tiptap/extension-link": "^3.30.1",
"@tiptap/extension-placeholder": "^3.30.1",
"@tiptap/extension-text-align": "^3.30.1",
"@tiptap/extension-underline": "^3.30.1",
"@tiptap/pm": "^3.30.1",
"@tiptap/starter-kit": "^3.30.1",
"@tiptap/suggestion": "^3.30.1",
"@workos-inc/node": "^10.10.0",
"@workos/authkit-sveltekit": "^0.3.0",
"convex": "^1.44.0",
"convex-svelte": "^0.14.0",
"dompurify": "^3.4.13",
"motion-sv": "^0.1.13",
"posthog-js": "^1.417.1",
"posthog-node": "^5.49.1",
"runed": "^0.37.1",
"svelte-inview": "^4.0.4",
"valibot": "^1.4.2"
},
"engines": {
"node": ">=22.12"
}
}