-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.02 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
{
"name": "udemy-player-root",
"version": "1.18.0",
"description": "Local Udemy Course Player",
"main": "electron/main.js",
"scripts": {
"install:all": "npm install && npm install --prefix backend && npm install --prefix frontend",
"download-binaries": "node scripts/download-binaries.js",
"postinstall": "node scripts/download-binaries.js --postinstall",
"backend": "npm run dev --prefix backend",
"frontend": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"dev:desktop": "concurrently \"npm run frontend\" \"electron .\"",
"package": "npm run build --prefix frontend && electron-builder",
"package:win": "npm run build --prefix frontend && electron-builder --win",
"package:all": "npm run build --prefix frontend && electron-builder --mac --win"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2"
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^42.4.1",
"electron-builder": "^26.15.3"
}
}