-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "s3-migration-scheduler-desktop",
"productName": "S3 Migration Scheduler",
"version": "1.1.0",
"description": "Desktop application for S3 bucket migrations",
"main": "main.js",
"homepage": "./",
"author": {
"name": "S3 Migration Scheduler Developer",
"email": "hendrawandaryono.karso@gmail.com"
},
"license": "MIT",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"dev:stable": "concurrently \"npm run server:dev\" \"npm run client:start\"",
"server:dev": "cd server && npm run dev",
"server:start": "cd server && npm start",
"client:start": "cd client && npm start",
"client:build": "cd client && npm run build",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:mac": "electron-builder --mac",
"build:all": "electron-builder --win --linux --mac",
"dist": "npm run build",
"pack": "electron-builder --dir"
},
"dependencies": {
"electron-serve": "^1.3.0",
"electron-window-state": "^5.0.3",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"ws": "^8.14.2",
"uuid": "^9.0.1",
"node-cron": "^4.2.1",
"fs-extra": "^11.1.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"concurrently": "^8.2.2"
},
"build": {
"appId": "com.s3migration.scheduler",
"productName": "S3 Migration Scheduler",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"build/**/*",
"assets/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"artifactName": "${productName} ${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"deleteAppDataOnUninstall": false,
"runAfterFinish": true
}
}
}