-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.36 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
{
"name": "flowstate",
"version": "1.0.0",
"description": "AI-Powered Smart Task & Energy Manager",
"main": "main/main.js",
"scripts": {
"dev": "vite",
"dev:electron": "electron .",
"rebuild": "npx electron-rebuild -f -w better-sqlite3",
"build": "tsc && vite build",
"build:electron": "vite build && electron-builder",
"preview": "vite preview",
"start": "electron .",
"ml:start": "cd ml-service && python server.py",
"ml:train": "cd ml-service && python train_model.py"
},
"dependencies": {
"active-win": "^7.0.0",
"axios": "^1.13.5",
"better-sqlite3": "^9.2.2",
"date-fns": "^3.0.0",
"ffi-napi": "^4.0.3",
"lucide-react": "^0.303.0",
"onnxruntime-node": "^1.16.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.3",
"uiohook-napi": "^1.5.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.0"
}
}