-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "POS",
"version": "0.1.0",
"description": "Store Point of Sale is a desktop application developed by Hosting Domain and available for free download at www.storepointofsale.com.",
"author": "Hosting Domain",
"private": true,
"main": "start.js",
"build": {
"appId": "01",
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.20.0",
"btoa": "^1.2.1",
"electron": ">=13.6.6",
"electron-context-menu": "^0.15.1",
"electron-packager": "^15.5.1",
"electron-store": "^5.1.0",
"electron-winstaller": "^4.0.0",
"express": "^4.16.2",
"express-fileupload": "^1.1.6",
"html2canvas": "^1.0.0-rc.5",
"http": "0.0.0",
"https": "^1.0.0",
"is-port-reachable": "^2.0.1",
"jquery": "^3.4.1",
"jsbarcode": "^3.11.0",
"jspdf": "^2.3.1",
"macaddress": "^0.2.9",
"moment": "^2.24.0",
"multer": "^1.4.2",
"nedb": "^1.8.0",
"nodemon": "^1.14.12",
"path": "^0.12.7",
"print-js": "^1.0.63",
"socket.io": "^2.4.0",
"sweetalert2": "^9.5.4",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"electron": "cross-env NODE_ENV=dev nodemon --exec \"\"electron .\"\"",
"electron-build": "electron-builder",
"package-win": "electron-packager . POS --overwrite --asar=false --platform=win32 --arch=x64 --icon=assets/images/icon.ico --prune=true --out=release-builds --version-string.ProductName=\"POS\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cross-env": "^6.0.3",
"electron-builder": "^21.2.0",
"electron-is-dev": "^1.1.0",
"nodemon": "^1.19.3"
}
}