-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "ez-money-management",
"version": "0.3.0",
"private": true,
"description": "ez-money — a local desktop app (Electron) to import Chime statements and track budgets.",
"license": "Apache-2.0",
"scripts": {
"setup": "cd desktop && npm install && cd renderer && npm install",
"dev": "concurrently -k -n web,app -c cyan,green \"npm run dev:web\" \"npm run dev:app\"",
"dev:web": "cd desktop/renderer && npm start",
"dev:app": "wait-on http://localhost:4200 && cd desktop && npm run build:main && cross-env ELECTRON_RENDERER_URL=http://localhost:4200 npm start",
"build": "cd desktop/renderer && npm run build && cd .. && npm run build:main",
"package": "npm run build && cd desktop && npm run package",
"package:win": "npm run build && cd desktop && npm run package:win",
"package:linux": "npm run build && cd desktop && npm run package:linux"
},
"devDependencies": {
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"wait-on": "^8.0.1"
}
}