-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.25 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
{
"name": "lapscore",
"version": "1.1.0",
"description": "Premium PC Health Monitor with Battery Intelligence, AI Readiness, and Fleet Management.",
"author": "LapScore Team",
"main": "electron/main.js",
"scripts": {
"setup": "npm install && cd client && npm install && cd .. && npm run build",
"build": "cd client && npm run build",
"start": "node server/index.js",
"dev": "concurrently \"node server/index.js\" \"cd client && npm run dev\"",
"electron": "electron .",
"electron:dev": "concurrently \"npm run start\" \"wait-on http://localhost:7821 && electron .\"",
"build:dist": "npm run build && electron-builder",
"generate:icons": "node scripts/generate-icons.js"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"cors": "^2.8.5",
"electron-updater": "^6.8.3",
"express": "^4.21.1",
"node-cron": "^3.0.3",
"open": "^10.1.0",
"qrcode": "^1.5.4",
"systeminformation": "^5.25.11",
"ws": "^8.20.0"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"png-to-ico": "^3.0.1",
"puppeteer": "^24.40.0",
"sharp": "^0.34.5",
"wait-on": "^8.0.3"
}
}