-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "docbranch",
"version": "1.0.0",
"description": "DocBranch 📄🌿",
"main": "main.ts",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"wait-on http://localhost:5173 && npm run dev:electron\"",
"dev:electron": "cross-env NODE_ENV=development tsc && electron .",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:frontend && npm run build:electron",
"build:electron": "tsc",
"build:frontend": "cd frontend && npm run build",
"start": "cross-env NODE_ENV=production electron .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"lucide-react": "^0.548.0",
"openai": "^6.2.0",
"pdfjs-dist": "^5.4.296",
"react": "^19.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-pdf": "^10.2.0",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.9.4",
"react-split-it": "^2.0.0",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.930.0",
"@types/electron": "^1.4.38",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dnd": "^2.0.36",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^38.4.0",
"electron-builder": "^26.0.12",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"wait-on": "^9.0.1"
}
}