-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.64 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
86
{
"name": "sswebapp",
"version": "2.1.0",
"description": "ssWeb application built using web technologies",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder build --win",
"build32": "electron-builder build --win --ia32",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=release-builds",
"package-win": "electron-packager . ssapp --overwrite --asar --platform=win32 --arch=x64 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Sub Stockist\""
},
"author": "DPD Technologies Private Limited",
"license": "ISC",
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "^21.0.15",
"electron-packager": "^14.0.6",
"electron-rebuild": "^1.8.6",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"async": "^3.1.0",
"axios": "^0.19.0",
"bootstrap-datepicker": "^1.9.0",
"bootstrap-multiselect": "^0.9.15",
"compressing": "^1.5.0",
"electron-root-path": "^1.0.16",
"electron-updater": "^4.2.0",
"fs-extra": "^8.1.0",
"getmac": "^1.4.6",
"jquery": "^3.4.1",
"jspdf": "^1.5.3",
"jspdf-autotable": "^2.3.5",
"load-google-maps-api": "^2.0.1",
"macaddress": "^0.2.9",
"md5": "^2.2.1",
"moment": "^2.24.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.4",
"pdf-to-printer": "^1.1.2",
"sha1": "^1.1.1",
"sqlite3": "^4.0.9",
"squel": "^5.13.0",
"systeminformation": "^4.14.8"
},
"build": {
"appId": "github.com/MapleGraph/demoexe",
"publish": {
"provider": "github",
"repo": "demoexe",
"host": "https://github.com/MapleGraph/demoexe",
"token": "bb97a4f536135a37506cb344eac9f34eba3455e8",
"owner": "MapleGraph",
"protocol": "https"
},
"win": {
"requestedExecutionLevel": "highestAvailable",
"icon": "appIcon.ico",
"target": [
{
"target": "nsis"
}
]
},
"nsis": {
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Sub Stockist",
"artifactName": "sswebapp-Setup-${version}.${ext}",
"oneClick": false,
"perMachine": true,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "ssicon.ico"
},
"extraResources": [
"./public/**"
]
}
}