-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "lectra-capture-demo",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"api": "node server/index.js",
"client": "node client/server.mjs",
"start:all": "npm-run-all --parallel api dev client"
},
"dependencies": {
"@google/genai": "^1.27.0",
"@google/generative-ai": "^0.24.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"html-pdf": "^3.0.1",
"md-to-pdf": "^5.2.4",
"multer": "^1.4.5-lts.1",
"puppeteer": "^24.26.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^5.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.0",
"vite": "^5.0.0"
}
}