-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.29 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.29 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
91
92
93
94
95
96
{
"name": "finalchat",
"private": true,
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@10.17.1",
"scripts": {
"dev": "dotenvx run -f .env.local -- concurrently -n convex,app -c blue,green \"pnpm dev:convex\" \"pnpm dev:vite\"",
"dev:vite": "vite dev --host",
"dev:convex": "convex dev",
"build": "vite build",
"build:local": "dotenvx run -f .env.local -- pnpm build",
"preview": "vite preview",
"vercel:deploy": "CONVEX_VERBOSE=1 convex deploy --cmd-url-env-var-name PUBLIC_CONVEX_URL --cmd='sed -i.bak \"s|{{CONVEX_URL_FROM_CLI}}|${PUBLIC_CONVEX_URL}|\" src/lib/env.server.ts && rm -f src/lib/env.server.ts.bak && pnpm build'",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run"
},
"devDependencies": {
"@convex-dev/migrations": "^0.3.1",
"@convex-dev/persistent-text-streaming": "^0.3.0",
"@convex-dev/r2": "latest",
"@convex-dev/rate-limiter": "^0.3.2",
"@dotenvx/dotenvx": "^1.52.0",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@ethercorps/sveltekit-og": "^4.2.1",
"@fontsource-variable/atkinson-hyperlegible-mono": "^5.2.5",
"@fontsource-variable/atkinson-hyperlegible-next": "^5.2.6",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@internationalized/date": "^3.10.1",
"@jsrepo/transform-prettier": "^1.0.1",
"@openrouter/ai-sdk-provider": "^2.1.1",
"@sveltejs/adapter-vercel": "^6.3.1",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@t3-oss/env-core": "^0.13.10",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/table-core": "^8.21.3",
"@types/node": "^25.1.0",
"@types/node-rsa": "^1.1.4",
"@workos-inc/node": "^8.0.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"ai": "^6.0.64",
"animated-svelte": "^0.0.0",
"bits-ui": "^2.15.5",
"browser-image-compression": "^2.0.2",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"convex": "^1.31.7",
"convex-helpers": "^0.1.111",
"convex-svelte": "^0.0.12",
"deepmerge": "^4.3.1",
"eslint": "^9.39.2",
"eslint-plugin-svelte": "^3.14.0",
"fuzzysort": "^3.1.0",
"globals": "^17.2.0",
"jsrepo": "^3.1.1",
"jwt-decode": "^4.0.0",
"mode-watcher": "^1.1.0",
"nanoid": "^5.1.6",
"nevereverthrow": "^0.3.0",
"node-rsa": "^1.1.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"remixicon-svelte": "^0.0.5",
"remove-markdown": "^0.6.3",
"runed": "^0.37.1",
"svelte": "^5.49.1",
"svelte-check": "^4.3.6",
"svelte-meta-tags": "^4.5.0",
"svelte-sonner": "^1.0.7",
"svelte-streamdown": "^3.0.1",
"svelte-toolbelt": "^0.10.6",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"tw-easing-gradients": "^1.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vaul-svelte": "1.0.0-next.7",
"vite": "^7.3.1",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-transform-remixicon-imports": "^0.0.3",
"vitest": "^4.0.18",
"zod": "^4.3.6"
}
}