forked from reqcore-inc/reqcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.03 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
97
98
99
100
{
"name": "reqcore",
"version": "1.5.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",
"typecheck": "NODE_OPTIONS=--max-old-space-size=4096 nuxi typecheck",
"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": "vitest run",
"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.74",
"@ai-sdk/google": "^3.0.67",
"@ai-sdk/openai": "^3.0.58",
"@aws-sdk/client-s3": "^3.1041.0",
"@better-auth/sso": "^1.6.16",
"@nuxtjs/i18n": "^10.3.0",
"@nuxtjs/mdc": "^0.21.1",
"@opentelemetry/api-logs": "^0.219.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-logs": "^0.219.0",
"@posthog/nuxt": "^1.7.21",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.4",
"ai": "^6.0.174",
"better-auth": "^1.6.16",
"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.7",
"nuxt": "^4.4.8",
"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.33",
"vue-router": "^5.1.0",
"word-extractor": "^1.0.4",
"zod": "^4.4.2"
},
"devDependencies": {
"@crowdin/cli": "^4.14.3",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.3",
"@types/nodemailer": "^8.0.0",
"@types/pdf-parse": "^1.1.5",
"commander": "^13.1.0",
"drizzle-kit": "^0.31.9",
"tsx": "^4.22.4",
"vitest": "^4.1.8",
"vue-tsc": "^3.3.5",
"wait-on": "^9.0.10"
},
"overrides": {
"fast-xml-parser": "5.8.0",
"tar": "7.5.16",
"minimatch": "10.2.5",
"glob": "13.0.6",
"@isaacs/brace-expansion": "5.0.1",
"axios": "1.16.1",
"@posthog/nuxt": {
"@posthog/cli": "npm:empty-npm-package@1.0.0"
},
"readdir-glob": "2.0.2",
"rollup": "4.60.1",
"esbuild": "0.28.1",
"serialize-javascript": "7.0.5",
"underscore": "1.13.8",
"h3": "1.15.11",
"devalue": "5.8.1",
"unhead": "2.1.13",
"uuid": "14.0.0",
"fast-xml-builder": "1.2.0",
"kysely": "0.28.17",
"simple-git": "3.36.0",
"protobufjs": "8.6.3",
"form-data": "4.0.6"
}
}