-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.79 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
{
"name": "reqcore",
"version": "1.3.0",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"start": "node .output/server/index.mjs",
"start:railway": "npm run db:migrate && npm run db:seed && node .output/server/index.mjs",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "npx tsx server/scripts/seed.ts",
"db:reseed": "npx tsx server/scripts/delete-demo-org.ts && npx tsx server/scripts/seed.ts",
"test:e2e": "npx playwright test",
"i18n:crowdin:upload": "crowdin upload sources",
"i18n:crowdin:download": "crowdin download --all",
"i18n:crowdin:sync": "npm run i18n:crowdin:upload && npm run i18n:crowdin:download"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/google": "^3.0.64",
"@ai-sdk/openai": "^3.0.53",
"@aws-sdk/client-s3": "^3.1033.0",
"@better-auth/sso": "^1.6.5",
"@nuxtjs/i18n": "^10.2.3",
"@nuxtjs/mdc": "^0.21.1",
"@opentelemetry/api-logs": "^0.215.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.215.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-logs": "^0.215.0",
"@posthog/nuxt": "^1.7.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.3",
"ai": "^6.0.168",
"better-auth": "^1.6.1",
"better-sqlite3": "^12.9.0",
"drizzle-orm": "^0.45.1",
"file-type": "^21.3.0",
"googleapis": "^171.4.0",
"lucide-vue-next": "^0.577.0",
"mammoth": "^1.12.0",
"nodemailer": "^8.0.5",
"nuxt": "^4.3.1",
"pdf-parse": "^2.4.5",
"postgres": "^3.4.8",
"posthog-node": "^5.28.0",
"resend": "^6.12.2",
"tailwindcss": "^4.1.18",
"vue": "^3.5.28",
"vue-router": "^4.6.4",
"word-extractor": "^1.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@crowdin/cli": "^4.14.0",
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.3",
"@types/nodemailer": "^8.0.0",
"@types/pdf-parse": "^1.1.5",
"commander": "^13.1.0",
"drizzle-kit": "^0.31.9",
"tsx": "^4.21.0",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.5",
"wait-on": "^9.0.4"
},
"overrides": {
"fast-xml-parser": ">=5.5.7",
"tar": "7.5.11",
"minimatch": ">=10.2.4",
"glob": ">=13.0.6",
"@isaacs/brace-expansion": ">=5.0.1",
"axios": ">=1.13.6",
"@posthog/nuxt": {
"@posthog/cli": "npm:empty-npm-package@1.0.0"
},
"readdir-glob": "2.0.2",
"rollup": ">=4.59.0",
"esbuild": ">=0.25.0",
"serialize-javascript": ">=7.0.3",
"underscore": ">=1.13.6",
"h3": ">=1.15.9",
"devalue": ">=5.6.4",
"unhead": ">=2.1.11"
}
}