This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.46 KB
/
package.json
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
86
87
88
89
{
"name": "sysinfo",
"version": "1.0.0",
"author": "Sacnox",
"repository": "https://bitbucket.org/fuxlabs/dbpro-app",
"description": "The most complete software of database backup on market.",
"main": "main.js",
"build": {
"appId": "com.dbackpro.app",
"icon": "assets/imgs/dbp.ico",
"win": {
"target": "nsis",
"icon": "assets/imgs/dbp.ico"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Development",
"icon": "assets/imgs/dbp.ico",
"maintainer": "Sacnox <[email protected]>",
"target": [
"deb",
"rpm",
"snap",
"AppImage"
]
}
},
"scripts": {
"js": "gulp js",
"sass": "gulp sass",
"start": "electron .",
"js-nw": "gulp bundle",
"dist": "electron-builder",
"dpkg": "yarn remove gulp gulp-concat gulp-sass gulp-babel @babel/core @babel/preset-env gulp-plumber gulp-uglify gulp-watch",
"ipkg": "yarn add --dev gulp gulp-concat gulp-sass gulp-babel @babel/core @babel/preset-env gulp-plumber gulp-uglify gulp-watch",
"build-linux": "electron-packager . --out=dist/linux --platform=linux --arch=x64 --config.productName=dbackpro --icon=assets/imgs/icon.ico --asar=true --overwrite",
"build-windows": "electron-packager . --out=dist/windows --platform=win32 --arch=x64 --config.productName=dbackpro --icon=assets/imgs/icon.ico --asar=false --overwrite",
"build-darwin": "electron-packager . --out=dist/darwin --platform=darwin --arch=x64 --config.productName=dbackpro --icon=assets/imgs/icon.icns --asar=false --overwrite"
},
"dependencies": {
"axios": "^0.19.0",
"csvtojson": "^2.0.10",
"fs-extra": "^8.1.0",
"humanize": "^0.0.9",
"jquery": "^3.4.1",
"jspdf": "^1.5.3",
"jspdf-autotable": "^3.2.4",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"open": "^6.4.0",
"powershell": "^2.3.1",
"proglistr": "^1.4.0",
"shelljs": "^0.8.3",
"sudo-prompt": "^9.0.0",
"systeminformation": "^4.14.8",
"tasklist": "^4.0.0",
"winreg": "^1.2.4",
"wmic-js": "^0.0.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"electron": "4.0.2",
"electron-builder": "^21.2.0",
"electron-packager": "^14.0.5",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"gulp-zip": "^5.0.0",
"webpack": "^4.36.1"
}
}