-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "flowlog",
"version": "1.0.0",
"description": "A minimalist, agile project management tool.",
"main": "dist-electron/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env NODE_ENV=development electron .",
"build": "tsc && vite build && tsc -p electron/tsconfig.json && electron-builder"
},
"keywords": [],
"author": "FlowLog",
"license": "ISC",
"dependencies": {
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"electron-squirrel-startup": "^1.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.flowlog.app",
"productName": "FlowLog",
"win": {
"target": "nsis"
},
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
]
}
}