-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.99 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
95
96
97
98
99
100
101
102
103
{
"name": "assistant",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": "^20"
},
"scripts": {
"dev": "vite dev",
"build": "npm run copy-pdfjs && vite build && npm run db:migrate && npm run db:seed",
"copy-pdfjs": "cp node_modules/pdfjs-dist/build/pdf.worker.mjs* static/",
"start": "node ./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": "prettier --check . && eslint .",
"format": "prettier --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx ./src/scripts/migrations.ts",
"db:seed": "tsx ./src/scripts/seed.ts"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tailwindcss/typography": "^0.5.16",
"@types/busboy": "^1.5.4",
"@types/eslint": "^9.6.1",
"@types/hast": "^3.0.4",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"cli-progress": "^3.12.0",
"debug": "^4.4.0",
"drizzle-kit": "^0.27.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^5.17.3",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^5.4.11"
},
"type": "module",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.8",
"@ai-sdk/google": "^1.0.16",
"@ai-sdk/openai": "^1.0.18",
"@ai-sdk/provider": "^1.0.4",
"@aws-sdk/client-s3": "^3.726.1",
"@aws-sdk/cloudfront-signer": "^3.723.0",
"@aws-sdk/lib-storage": "^3.726.1",
"@aws-sdk/s3-request-presigner": "^3.726.1",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.2.11",
"@types/pdfjs-dist": "^2.10.378",
"@zerodevx/svelte-json-view": "^1.0.11",
"ai": "^4.0.34",
"arctic": "^2.3.3",
"clsx": "^2.1.1",
"daisyui": "^4.12.23",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.36.4",
"hast": "^1.0.0",
"hast-util-class-list": "^2.0.1",
"hast-util-has-property": "^3.0.0",
"hast-util-is-element": "^3.0.0",
"katex": "^0.16.20",
"lowlight": "^3.3.0",
"lucide-svelte": "^0.454.0",
"mode-watcher": "^0.4.1",
"pdfjs-dist": "^4.10.38",
"pg": "^8.13.1",
"postgres": "^3.4.5",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.1",
"rehype-katex": "^7.0.1",
"rehype-mathjax": "^6.0.0",
"rehype-pretty-code": "^0.14.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-math": "^6.0.0",
"remark-rehype": "^11.1.1",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.2.1"
}
}