-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 3.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "svelte-starter-docs",
"type": "module",
"version": "0.9.0",
"private": true,
"author": "vtempest <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "vite dev",
"serve": "vite build; bunx wrangler deploy; bunx wrangler tail",
"make": "vite build",
"preview": "bunx wrangler dev --live-reload",
"docs": "typedoc; cmd.exe /c start \"\" ./docs/index.html; open docs/index.html",
"test": "vitest",
"db:migrate": "drizzle-kit generate",
"db:push:dev": "wrangler d1 migrations apply serverless-docs-db --local",
"db:push:prod": "wrangler d1 migrations apply serverless-docs-db --remote",
"db:studio": "ENV=dev drizzle-kit studio",
"db:backup": "wrangler d1 export serverless-docs-db --output backup-prod.sql --remote"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@jsprismarine/typedoc-material-theme": "^1.0.4",
"@mxssfd/typedoc-theme": "^1.1.7",
"@sveltejs/adapter-cloudflare": "^4.8.0",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@types/eslint": "9.6.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.29.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "2.46.1",
"pino-pretty": "^13.0.0",
"postcss": "^8.4.49",
"postcss-load-config": "^6.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^5.8.1",
"svelte-check": "^4.1.1",
"sveltekit-flash-message": "^2.4.4",
"sveltekit-rate-limiter": "^0.6.1",
"sveltekit-view-transition": "^0.5.3",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typedoc": "^0.27.3",
"typedoc-material-theme": "^1.2.0",
"typedoc-plugin-ga": "^1.0.4",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-kit-routes": "^0.7.0",
"vite-plugin-top-level-await": "^1.4.4",
"vitest": "^2.1.8",
"wrangler": "^3.93.0"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@lucia-auth/adapter-sqlite": "^3.0.2",
"@noble/hashes": "^1.6.1",
"@sveltejs/adapter-cloudflare-workers": "^2.6.0",
"arctic": "^2.3.0",
"bits-ui": "^1.0.0-next.67",
"check-password-strength": "^2.0.10",
"chrono-node": "^2.7.7",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"drizzle-orm": "^0.37.0",
"formsnap": "^2.0.0-next.1",
"linkedom": "^0.18.5",
"lucia": "^3.2.2",
"lucide-svelte": "^0.468.0",
"mode-watcher": "^0.5.0",
"pino": "^9.5.0",
"resend": "4.0.1",
"sortablejs": "^1.15.6",
"svelte-lightbox": "^1.1.6",
"svelte-routing": "^2.13.0",
"svelte-sonner": "^0.3.28",
"svelte-spa-router": "^4.0.1",
"svelte-splitpanes": "^8.0.9",
"sveltekit-superforms": "^2.21.1",
"swagger-ui-dist": "^5.18.2",
"swagger-ui-themes": "^3.0.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.3.0",
"zod": "^3.23.8"
},
"module": "index.ts"
}