-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
119 lines (119 loc) · 4.28 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
{
"name": "lcu-enhancement-suite",
"version": "1.2.1",
"description": "Enhancements for the League of Legends client.",
"author": "xadamxk",
"contributors": [
"TyrantKingBen (https://github.com/TyrantKingBen)",
"xadamxk (https://github.com/xadamxk)"
],
"homepage": "https://github.com/xadamxk/LCU-Enhancement-Suite",
"bugs": "https://github.com/xadamxk/LCU-Enhancement-Suite/issues",
"main": "./dist/electron/main.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/xadamxk/LCU-Enhancement-Suite"
},
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel --race electron:serve ng:serve",
"build": "npm run electron:build -- --mode none && npm run ng:build",
"build:dev": "npm run electron:build -- --mode development && npm run ng:build -- --configuration development",
"build:prod": "npm run electron:build -- --mode production && npm run ng:build -- --configuration production",
"ng": "ng",
"ng:build": "ng build --base-href ./",
"ng:serve": "ng serve --configuration web",
"electron": "electron",
"electron:build": "webpack --config ./src/electron/electron.webpack.js",
"electron:serve": "wait-on tcp:4200 && npm run electron:watch -- --live",
"electron:watch": "ts-node ./src/electron/watcher.ts ./",
"test": "ng test --watch false",
"test:watch": "ng test",
"test:coverage": "npm run test -- --code-coverage",
"e2e": "npm run build:prod && cross-env NODE_ENV='e2e' TS_NODE_PROJECT='./e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register ./e2e/**/*.e2e.ts",
"lint": "ng lint && eslint ./src/electron/",
"lint:fix": "ng lint --fix && eslint ./src/electron/ --fix",
"package": "npm run build:prod && electron-builder build",
"postpackage": "electron-builder install-app-deps"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"async-mutex": "0.2.4",
"electron-store": "6.0.1",
"moment": "2.27.0",
"node-fetch": "2.6.1",
"ws": "7.3.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "10.0.0",
"@angular-devkit/build-angular": "0.1002.0",
"@angular-eslint/builder": "0.1.0-beta.1",
"@angular-eslint/eslint-plugin": "0.1.0-beta.1",
"@angular-eslint/eslint-plugin-template": "0.1.0-beta.1",
"@angular-eslint/template-parser": "0.1.0-beta.1",
"@angular/cli": "10.1.0",
"@angular/common": "10.1.0",
"@angular/compiler": "10.1.0",
"@angular/compiler-cli": "10.1.0",
"@angular/core": "10.1.0",
"@angular/forms": "10.1.0",
"@angular/language-service": "10.1.0",
"@angular/platform-browser": "10.1.0",
"@angular/platform-browser-dynamic": "10.1.0",
"@angular/router": "10.1.0",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"@types/chai": "4.2.12",
"@types/cross-spawn": "6.0.2",
"@types/jasmine": "3.5.14",
"@types/jasminewd2": "2.0.8",
"@types/karma-coverage-istanbul-reporter": "2.1.0",
"@types/karma-jasmine": "3.1.0",
"@types/karma-jasmine-html-reporter": "1.5.1",
"@types/mocha": "8.0.3",
"@types/node": "12.12.56",
"@types/node-fetch": "2.5.7",
"@types/ps-tree": "1.1.0",
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/eslint-plugin-tslint": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"chai": "4.2.0",
"chokidar": "3.4.2",
"copy-webpack-plugin": "6.1.0",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"cross-spawn": "7.0.3",
"electron": "9.3.1",
"electron-builder": "22.8.0",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"eventemitter2": "6.4.3",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "6.3.1",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"mocha": "8.1.3",
"npm-check-updates": "8.1.1",
"npm-run-all": "4.1.5",
"ps-tree": "1.2.0",
"rxjs": "6.6.3",
"spectron": "11.1.0",
"ts-loader": "8.0.3",
"ts-node": "9.0.0",
"tslib": "2.0.1",
"tslint": "6.1.3",
"typescript": "3.9.7",
"wait-on": "5.2.0",
"webdriver-manager": "12.1.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"zone.js": "0.11.1"
}
}