-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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": "@matteopolak/recipe-explorer",
"version": "1.0.0",
"author": "Matthew Polak <[email protected]>",
"description": "YouTube-like recipe explorer with semantic recommendations and powerful search.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"fmt": "eslint --fix ."
},
"devDependencies": {
"@iconify-json/emojione": "^1.1.10",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/logos": "^1.1.42",
"@iconify-json/noto": "^1.1.18",
"@lucia-auth/adapter-postgresql": "^2.0.2",
"@lucia-auth/oauth": "^3.5.0",
"@sentry/node": "^7.91.0",
"@sveltejs/adapter-node": "^2.0.2",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tailwindcss/typography": "^0.5.10",
"@trpc/server": "^10.45.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/sanitize-html": "^2.9.5",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"autoprefixer": "^10.4.16",
"axios": "^1.6.3",
"daisyui": "^4.4.24",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.9",
"drizzle-orm": "^0.29.2",
"eslint": "^8.56.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"lucia": "^2.7.6",
"pg": "^8.11.3",
"pgvector": "^0.1.7",
"postcss": "^8.4.32",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tailwindcss": "^3.4.0",
"trpc-openapi": "^1.2.0",
"trpc-sveltekit": "^3.5.22",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unplugin-icons": "^0.18.1",
"vite": "^5.0.10",
"zod": "^3.22.4"
},
"dependencies": {
"@tanstack/svelte-query": "^5.15.5",
"@trpc/client": "^10.45.0",
"jsdom": "^23.0.1",
"mammoth": "^1.8.0",
"openai": "^4.53.2",
"redoc-svelte": "^0.2.3",
"sanitize-html": "^2.11.0",
"sharp": "^0.33.1",
"showdown": "^2.1.0",
"svelte-french-toast": "^1.2.0",
"svelte-reveal": "^0.7.0",
"svelte-typewriter": "^3.2.2",
"sveltekit-i18n": "^2.4.2"
}
}