-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
{
"name": "critical-difference-visualizer",
"version": "0.1.0",
"description": "Statistical visualization tool for critical difference analysis with confidence intervals",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
},
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext js,jsx",
"electron": "electron .",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --win --linux --mac"
},
"dependencies": {
"lucide-react": "^0.300.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"vite": "^5.0.8",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.critical-difference.visualizer",
"productName": "Critical Difference Visualizer",
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": ["nsis"],
"icon": "build/icon.ico"
},
"linux": {
"target": ["deb", "AppImage"],
"category": "Science",
"icon": "build/icon.png"
},
"mac": {
"target": ["dmg"],
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns"
}
}
}