-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.7 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
{
"name": "lineage-editor",
"version": "0.1.0",
"private": true,
"homepage": ".",
"type": "commonjs",
"main": "public/electron.js",
"dependencies": {
"@vercel/analytics": "^2.0.1",
"dagre": "^0.8.5",
"html-to-image": "^1.11.13",
"pako": "^2.1.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"reactflow": "^11.11.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "vite build && electron-builder --win --x64"
},
"build": {
"appId": "com.datapav.app",
"productName": "DataPav",
"directories": {
"output": "dist"
},
"extraMetadata": {
"main": "build/electron.js"
},
"files": [
"build/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
]
}
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.5.0",
"concurrently": "^9.2.1",
"electron": "^42.0.1",
"electron-builder": "^26.8.1",
"jsdom": "^25.0.1",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.19",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"wait-on": "^9.0.10"
}
}