This repository has been archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.52 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
{
"name": "TivoliCloudVRLauncher",
"description": "Launcher for Tivoli Cloud VR",
"homepage": "https://tivolicloud.com",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Tivoli Cloud VR, Inc.",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://git.tivolicloud.com/tivolicloud/interface.git"
},
"version": "0.0.0",
"main": "electron/dist/main.js",
"scripts": {
"build:angular": "ng build --configuration production",
"build:electron": "rimraf electron/dist && tsc --p electron --incremental false && npm run build:minify",
"build:minify": "",
"build:_letsnotminify": "terser-folder electron/dist -e -x .js -o electron/dist --config-file terser.json",
"build": "npm run build:angular && npm run build:electron",
"package": "rimraf dist && electron-builder --config electron-builder.json",
"package:publish": "rimraf dist && electron-builder --config electron-builder.json --publish always",
"electron": "tsc --p electron && cross-env DEV=true electron .",
"format": "prettier --write **/*.ts **/*.json **/*.html **/*.scss",
"start": "ng build --watch --configuration development"
},
"dependencies": {
"@opentok/client": "^2.17.0",
"@sentry/electron": "^1.3.0",
"discord-rpc": "^4.0.1",
"electron-updater": "^4.3.9",
"express": "^4.17.1",
"extract-zip": "^2.0.1",
"get-port": "^5.1.1",
"lottie-web": "^5.7.12",
"ngx-lottie": "^7.0.3",
"node-fetch": "^2.6.0",
"socket.io-client": "^4.2.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.6",
"@angular/animations": "~12.2.0",
"@angular/cdk": "~12.2.6",
"@angular/cli": "~12.2.6",
"@angular/common": "~12.2.0",
"@angular/compiler": "~12.2.0",
"@angular/compiler-cli": "~12.2.0",
"@angular/core": "~12.2.0",
"@angular/forms": "~12.2.0",
"@angular/material": "12.2.6",
"@angular/platform-browser": "~12.2.0",
"@angular/platform-browser-dynamic": "~12.2.0",
"@angular/router": "~12.2.0",
"@auth0/angular-jwt": "^5.0.2",
"@sentry/browser": "^5.15.4",
"@types/dom-mediacapture-record": "^1.0.4",
"@types/electron": "^1.6.10",
"@types/express": "^4.17.13",
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.5.5",
"@types/socket.io-client": "^1.4.32",
"cross-env": "^7.0.2",
"electron": "^14.0.1",
"electron-builder": "^22.11.7",
"hammerjs": "^2.0.8",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"rxjs": "~6.6.0",
"terser-folder": "^2.0.0",
"ts-node": "~8.8.1",
"tslib": "^2.3.0",
"typescript": "~4.3.5",
"uglify-js": "^3.8.1",
"zone.js": "~0.11.4"
}
}