-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "fusion-alpha-manager",
"version": "1.0.0",
"description": "Fusion Alpha Trading Bot Manager - Electron Desktop Application",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:no-hmr": "concurrently \"npm run dev:vite:no-hmr\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:vite:no-hmr": "cross-env NO_HMR=true vite",
"dev:electron": "tsc -p electron/tsconfig.json && wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .",
"build": "tsc -p electron/tsconfig.json && vite build && electron-builder",
"build:vite": "vite build",
"build:electron": "tsc -p electron/tsconfig.json && electron-builder",
"build:mac:arm64": "tsc -p electron/tsconfig.json && vite build && electron-builder --mac --arch=arm64",
"build:mac:x64": "tsc -p electron/tsconfig.json && vite build && electron-builder --mac --arch=x64",
"build:mac:universal": "tsc -p electron/tsconfig.json && vite build && electron-builder --mac --arch=universal",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"keywords": [
"electron",
"trading",
"bot",
"manager"
],
"author": "Fusion Alpha Team",
"license": "MIT",
"dependencies": {
"@tanstack/react-query": "^5.17.19",
"axios": "^1.6.5",
"chart.js": "^4.4.1",
"date-fns": "^3.2.0",
"lucide-react": "^0.309.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/node": "^20.10.7",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-electron": "^0.28.2",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.fusion.alpha.manager",
"productName": "Fusion Alpha Manager",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.finance",
"target": [
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
}
}