-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
{
"name": "maia-cloud-user-app",
"version": "1.3.11",
"description": "Authenticated User app for MAIA (Medical AI Assistant) - user.agropper.xyz",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "vite",
"build": "git lfs install && (git lfs pull || true) && vue-tsc && vite build",
"preview": "vite preview",
"start": "node server/index.js",
"dev:server": "nodemon server/index.js",
"dev:all": "concurrently -n v,s -c blue,green \"vite\" \"node server/index.js\"",
"test": "vitest run",
"test:watch": "vitest",
"test:backend": "vitest run tests/backend"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/s3-request-presigner": "^3.922.0",
"@google/generative-ai": "^0.24.1",
"@quasar/extras": "^1.16.12",
"@simplewebauthn/browser": "^13.1.2",
"@simplewebauthn/server": "^13.1.2",
"@tato30/vue-pdf": "^1.11.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"events": "^3.3.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"html2pdf.js": "^0.14.0",
"jspdf": "^4.0.0",
"markdown-it": "^14.1.0",
"multer": "^2.0.2",
"nano": "^10.1.2",
"openai": "^6.7.0",
"pdf-parse": "^1.1.4",
"pdfjs-dist": "^5.4.296",
"pouchdb-adapter-idb": "^9.0.0",
"pouchdb-core": "^9.0.0",
"pouchdb-find": "^9.0.0",
"punycode": "^2.3.1",
"quasar": "^2.15.3",
"vue": "^3.5.13",
"vue-markdown-render": "^2.2.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.8.0",
"@types/markdown-it": "^14.1.2",
"@types/pouchdb-adapter-idb": "^6.1.7",
"@types/pouchdb-core": "^7.0.15",
"@types/pouchdb-find": "^7.3.3",
"@vitejs/plugin-vue": "^5.2.1",
"concurrently": "^9.1.0",
"nodemon": "^3.1.9",
"sass": "^1.83.0",
"supertest": "^7.2.2",
"vite": "^6.0.7",
"vitest": "^4.0.18",
"vue-tsc": "^2.1.42"
}
}