-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 4.27 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
{
"name": "aglight",
"version": "0.1.2",
"main": "main.js",
"description": "A intuitive software for controlling DMX lights.",
"homepage": "https://github.com/hrueger/AGLight",
"author": {
"name": "H. Rüger"
},
"keywords": [
"dmx",
"light",
"controller",
"software"
],
"scripts": {
"build": "npm run postinstall:electron && npm run electron:tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"electron:tsc": "tsc main.ts",
"electron:serve": "npx wait-on http-get://localhost:4200/ && npm run electron:tsc && npx electron ./ --serve",
"electron:local": "npm run build:prod && npx electron .",
"electron:linux": "npm run build:prod && npx electron-builder build --linux",
"electron:windows": "npm run build:prod && npx electron-builder build --windows",
"electron:mac": "npm run build:prod && npx electron-builder build --mac",
"start": "npm run postinstall:electron && npm-run-all -p ng:serve electron:serve",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && npm run electron:tsc && ng serve -o",
"postinstall": "npm run postinstall:electron && npx electron-builder install-app-deps",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"private": true,
"dependencies": {
"@angular-slider/ngx-slider": "^2.0.0",
"@angular/animations": "^10.2.1",
"@angular/cdk": "^10.2.6",
"@angular/cli": "~10.2.0",
"@angular/common": "^10.2.1",
"@angular/compiler": "^10.2.1",
"@angular/compiler-cli": "^10.2.1",
"@angular/core": "^10.2.1",
"@angular/forms": "^10.2.1",
"@angular/http": "^7.2.16",
"@angular/language-service": "^10.2.1",
"@angular/localize": "^10.2.1",
"@angular/material": "^10.2.6",
"@angular/platform-browser": "^10.2.1",
"@angular/platform-browser-dynamic": "^10.2.1",
"@angular/router": "^10.2.1",
"@fortawesome/fontawesome-free": "^5.15.1",
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"@makeproaudio/makehaus-js": "^1.0.6",
"@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@serialport/parser-readline": "^9.0.1",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.34",
"angular-gridster2": "^10.1.7",
"angularx-qrcode": "^10.0.11",
"bootstrap": "^4.5.3",
"dmx": "0.2.4",
"electron-splashscreen": "^1.0.0",
"electron-updater": "^4.3.5",
"express": "^4.17.1",
"ngx-color": "^6.0.4",
"node-abi": "^2.19.1",
"popper.js": "^1.16.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"serialport": "^9.0.2",
"socket.io-client": "^2.3.1",
"sudo-prompt": "^9.2.1",
"tslib": "^2.0.3",
"uuid": "^8.3.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.1",
"@angular-devkit/architect": "^0.1002.0",
"@angular-devkit/build-angular": "~0.1002.0",
"@schoolsquirrel/eslint-config-squirrel": "^0.1.2",
"@types/express": "^4.17.8",
"@types/node": "^14.14.6",
"@types/request": "^2.48.5",
"@types/rimraf": "^3.0.0",
"@types/serialport": "^8.0.1",
"@types/uuid": "^8.3.0",
"angular-cli-builders": "^2.1.2",
"codelyzer": "^6.0.1",
"commonjs": "0.0.1",
"copy-webpack-plugin": "^6.2.1",
"core-js": "3.6.5",
"electron": "10.2.0",
"electron-builder": "22.9.1",
"electron-rebuild": "2.3.2",
"electron-reload": "^1.5.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"fs": "0.0.2",
"hammerjs": "^2.0.8",
"npm-run-all": "4.1.5",
"npx": "^10.2.2",
"rxjs": "^6.6.3",
"stream": "0.0.2",
"ts-node": "~9.0.0",
"tslint": "~6.1.3",
"typescript": "^4.0.5",
"wait-on": "5.2.0",
"webpack": "^4.44.1",
"zone.js": "~0.11.2"
}
}