-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
102 lines (102 loc) · 2.35 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "conet_client",
"version": "3.3.0",
"license": "MIT",
"description": "CoNET platform",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"win": "electron-builder --x64",
"win32": "electron-builder --ia32",
"linux": "electron-builder --linux",
"unix": "",
"mac": "electron-builder",
"pre": "electron-builder install-app-deps",
"release": "electron-builder --win && electron-builder --mac && electron-builder --linux"
},
"engines": {
"node": ">=50.9"
},
"devDependencies": {
"@types/asn1js": "0.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/jquery": "^3.3.32",
"@types/knockout": "^3.4.66",
"@types/node": "13.7.0",
"@types/node-uuid": "^0.0.28",
"@types/pkijs": "0.0.2",
"@types/snapsvg": "0.5.0",
"@types/socket.io": "2.1.4",
"@types/socket.io-client": "1.4.32",
"electron": "8.0.0",
"electron-builder-squirrel-windows": "22.3.3"
},
"build": {
"appId": "com.CoNET.Platform",
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "squirrel"
}
],
"icon": "resources/icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "resources/qtgate"
},
"dmg": {
"backgroundColor": "#ffffff",
"contents": [
{
"x": 110,
"y": 220
},
{
"x": 420,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"deb",
"pacman"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/QTGate/QTGate-Desktop-Client.git"
},
"author": {
"name": "CoNET Technology Inc.",
"email": "info@CoNETTech.ca"
},
"bugs": {
"url": "https://github.com/QTGate/QTGate-Desktop-Client/issues"
},
"homepage": "https://www.CoNETTech.ca",
"dependencies": {
"async": "^3.1.1",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"jimp": "^0.9.3",
"jszip": "^3.2.2",
"knockout": "^3.5.1",
"mime-types": "^2.1.26",
"node-uuid": "^1.4.8",
"nodemailer": "^6.4.2",
"openpgp": "^4.9.0",
"pug": "^2.0.4",
"snapsvg": "^0.5.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}