-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.85 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "FrontDesktop",
"description": "An awesome app!",
"version": "1.0.0",
"license": "MIT",
"main": "main.js",
"author": {
"name": "encryptotel",
"url": "encryptotel.com"
},
"scripts": {
"start": "ng serve -e=local",
"start-proxy": "ng serve --proxy-config proxy.conf.json -e=local",
"build": "ng build -e=local",
"lint": "ng lint",
"electron": "ng build --base-href ./ && electron .",
"electron-aot": "ng build --base-href ./ -prod --aot=false -e=prod && electron .",
"buildDeb": "electron-packager . app --platform linux --arch x64 --out ./build/ --overwrite --icon=src/assets/logoEncryptoTel.png --extra-resource=src/assets",
"setupDeb": "electron-installer-debian --src build/app-linux-x64/ --dest build/installers/ --arch amd64 --config build/configs/debConfig.json",
"buildMac": "electron-packager . encryPbx --platform darwin --out ./build/ --overwrite --icon=src/assets/EncryptoTel.icns --extra-resource=src/assets",
"setupMac": "electron-installer-dmg ./build/encryPbx-darwin-x64/encryPbx.app ./build/installers/encryPbx",
"buildWindows": "electron-packager . encryPbx --platform=win32 --out ./build/ --arch=x64 --overwrite --icon=src/assets/logoEncryptoTel.ico --extra-resource=src/assets",
"start-prod": "ng serve -prod --aot=false -e=prod --proxy-config proxy.conf.json"
},
"private": true,
"build": {
"appId": "com.encry.pbx",
"productName": "EncryPbx",
"linux": {
"category": "Utils",
"icon": "resources/assets/logoEncryptoTel.png",
"packageCategory": "Utils",
"maintainer": "EncryPbx <info@encryptotel.com>",
"target": [
"deb"
]
},
"deb": {
"depends": [
"libgconf2-4"
]
}
},
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"@ngx-translate/core": "^9.0.1",
"@ngx-translate/http-loader": "^2.0.1",
"@types/howler": "^2.0.5",
"@types/moment": "^2.13.0",
"angular-svg-icon": "^4.2.5",
"baron": "^3.0.3",
"bootstrap": "^3.3.7",
"cheerio": "^1.0.0-rc.2",
"class-transformer": "^0.1.9",
"core-js": "^2.4.1",
"cryptiles": "^4.1.2",
"electron-installer-windows": "^1.1.0",
"electron-winstaller": "^2.7.0",
"electron-wix-msi": "^2.1.1",
"hls.js": "^0.10.1",
"hoek": "^4.2.1",
"howler": "^2.0.15",
"jquery": "^3.3.1",
"jquery.nicescroll": "^3.7.6",
"jquery.scrollbar": "^0.2.11",
"libphonenumber-js": "^1.4.7",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"ng-socket-io": "^0.2.4",
"ngx-bootstrap": "^3.1.2",
"ngx-clipboard": "^11.1.7",
"ngx-cookie-service": "^1.0.10",
"npm": "^6.4.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.12",
"url-parse": "^1.4.3",
"videogular2": "^5.6.2",
"wallet-address-validator": "^0.2.4",
"yargs": "^12.0.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "^1.6.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/language-service": "^5.0.0",
"@types/core-js": "^2.5.0",
"@types/jquery": "^3.3.9",
"@types/node": "^10.10.3",
"codelyzer": "~3.2.0",
"electron": "^3.0.5",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.4.2"
}
}