-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.19 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
{
"name": "docent",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node --env-file-if-exists=.env server.mjs",
"typecheck": "tsc --noEmit",
"lint": "oxlint && npm run format:check",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:up": "podman compose up -d postgres",
"db:down": "podman compose down",
"db:migrate": "dbmate --env-file dbmate.env up",
"db:new": "dbmate --env-file dbmate.env new",
"ingestion:worker": "node --env-file-if-exists=.env --import tsx src/commands/ingestion-worker.ts",
"ingestion:watch": "node --env-file-if-exists=.env --import tsx src/commands/ingestion-worker.ts --watch",
"infra:synth": "cdktf synth",
"infra:deploy": "cdktf deploy"
},
"dependencies": {
"@ai-sdk/google-vertex": "^3.0.0",
"@base-ui/react": "^1.6.0",
"@google-cloud/storage": "^7.16.0",
"@google-cloud/tasks": "^6.1.0",
"@tanstack/react-router": "^1.139.0",
"@tanstack/react-start": "^1.139.0",
"@vanilla-extract/css": "^1.17.4",
"arctic": "^3.7.0",
"fast-xml-parser": "^5.2.5",
"google-auth-library": "^10.5.0",
"jose": "^6.1.0",
"jszip": "^3.10.1",
"lucide-react": "^0.468.0",
"mammoth": "^1.10.0",
"marked": "^15.0.0",
"mastra": "^0.14.0",
"pdfjs-dist": "^5.4.0",
"slonik": "^47.3.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@cdktf/provider-google": "^16.5.0",
"@cdktf/provider-google-beta": "^16.5.0",
"@playwright/test": "^1.55.0",
"@types/node": "^24.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vanilla-extract/vite-plugin": "^5.0.0",
"@vitejs/plugin-react": "^5.2.0",
"cdktf": "^0.21.0",
"cdktf-cli": "^0.21.0",
"oxfmt": "^0.24.0",
"oxlint": "^1.12.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"tsx": "^4.21.0",
"typescript": "^7.0.0",
"vite": "^7.1.0",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^3.2.0"
},
"engines": {
"node": ">=26",
"npm": ">=11"
}
}