-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
152 lines (152 loc) · 5.48 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "remotecontrol-desktop",
"version": "1.0.0",
"description": "",
"homepage": "https://codext.de",
"browser": {
"fs": false,
"path": false,
"os": false,
"child_process": false,
"stream": false,
"crypto": false,
"bcrypt": false
},
"author": {
"name": "Codext GmbH",
"email": "[email protected]"
},
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps && node ./scripts/fix.script.js",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run electron:serve-tsc && cross-env NODE_ENV=production ng build --configuration production --source-map=false",
"build:web": " cross-env NODE_ENV=production ng build --configuration production",
"ng:serve": "ng serve -c web --host 0.0.0.0",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "npm run electron:serve-tsc && npx electron . --serve",
"electron:local": "npm run build:prod && npx electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=always",
"electron:mac": "npm run build:prod && electron-builder build --mac --publish=always",
"electron:linux": "npm run build:prod && electron-builder build --linux --publish=always",
"electron:windows": "npm run build:prod && electron-builder build --windows --publish=always",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && cross-env TS_NODE_PROJECT='e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register e2e/**/*.e2e.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint",
"format:write": "prettier --write \"src/**/*{.ts,.json,.css,.scss,.html}\""
},
"dependencies": {
"@angular-devkit/architect": "0.1601.4",
"@angular/animations": "^16.1.5",
"@angular/cdk": "16.1.5",
"@angular/forms": "^16.1.5",
"@capacitor-community/electron": "4.1.2",
"@capacitor/core": "5.2.1",
"@capacitor/preferences": "5.0.6",
"@electron/remote": "2.0.10",
"@ionic/angular": "^7.1.3",
"@ionic/core": "^7.1.3",
"@ionic/storage": "^4.0.0",
"@ngneat/helipopper": "8.0.1",
"@ngneat/overview": "5.1.1",
"@ngneat/until-destroy": "9.2.3",
"@nut-tree/nut-js": "3.1.2",
"@types/simple-peer": "9.11.5",
"angular-animations": "0.11.0",
"auto-launch": "5.0.6",
"bcryptjs": "2.4.3",
"build-number-generator": "2.0.4",
"core-util-is": "github:isaacs/core-util-is",
"crypto-browserify": "3.12.0",
"electron-clipboard-extended": "1.1.1",
"electron-updater": "6.1.1",
"electron-util": "github:dertieran/electron-util",
"ionicons": "7.1.2",
"lottie-web": "5.12.2",
"ngx-lottie": "10.0.0",
"node-machine-id": "1.1.12",
"node-polyfill-webpack-plugin": "2.0.1",
"path-browserify": "1.0.1",
"process": "0.11.10",
"replace-in-files-cli": "2.2.0",
"require": "2.4.20",
"simple-peer": "9.11.1",
"simple-peer-files": "1.2.3",
"socket.io-client": "4.7.1",
"url": "0.11.1",
"vkey": "1.0.1",
"webrtc-adapter": "8.2.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "16.0.0",
"@angular-devkit/build-angular": "16.1.4",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "16.1.4",
"@angular/common": "16.1.5",
"@angular/compiler": "16.1.5",
"@angular/compiler-cli": "16.1.5",
"@angular/core": "16.1.5",
"@angular/language-service": "16.1.5",
"@angular/platform-browser": "16.1.5",
"@angular/platform-browser-dynamic": "16.1.5",
"@angular/router": "16.1.5",
"@ionic/angular-toolkit": "^10.0.0",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@tailwindcss/aspect-ratio": "latest",
"@tailwindcss/forms": "latest",
"@tailwindcss/line-clamp": "latest",
"@tailwindcss/typography": "latest",
"@types/jasmine": "4.3.5",
"@types/jasminewd2": "2.0.10",
"@types/mocha": "10.0.1",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/eslint-plugin-tslint": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"chai": "4.3.7",
"chokidar": "3.5.3",
"conventional-changelog-cli": "3.0.0",
"core-js": "3.31.1",
"cross-env": "7.0.3",
"electron": "25.3.0",
"electron-builder": "24.4.0",
"electron-reload": "1.5.0",
"eslint": "8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "46.4.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jasmine-core": "5.0.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "7.3.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"mocha": "10.2.0",
"ngx-tailwind": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "^3.0.0",
"rxjs": "7.8.1",
"spectron": "19.0.0",
"tailwindcss": "^3.3.3",
"ts-node": "10.9.1",
"tslib": "2.6.0",
"typescript": "^5.1",
"wait-on": "7.0.1",
"webdriver-manager": "12.1.9",
"zone.js": "~0.13.1"
}
}