-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.94 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
{
"name": "teamruns-client",
"version": "0.0.0",
"description": "OpenGOAL Teamruns client.",
"main": "app/main.js",
"author": {
"name": "Dexz"
},
"scripts": {
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c development",
"electron:serve": "wait-on tcp:4200 && electron . --serve",
"electron": "ng build && electron .",
"test": "ng test",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"dist": "ng build && electron-builder build --win --publish never",
"dist:linux": "ng build && electron-builder build --linux --publish never",
"deploy": "ng build && electron-builder build --win --publish always",
"deploy:linux": "ng build && electron-builder build --linux --publish always"
},
"build": {
"appId": "teamruns-client",
"productName": "Teamruns",
"nsis": {
"artifactName": "${name}-${version}-installer.${ext}",
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"uninstallDisplayName": "Teamruns",
"shortcutName": "Teamruns"
},
"win": {
"artifactName": "${name}-${version}-portable.${ext}",
"target": [
"NSIS",
"portable"
],
"icon": "build/icon.ico"
},
"linux": {
"target": [
"AppImage"
],
"artifactName": "${name}-${version}-linux.${ext}",
"icon": "src/assets/icon.png",
"category": "Game"
}
},
"repository": {
"type": "git",
"url": "https://github.com/JoKronk/teamruns-client.git"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.0",
"@angular/cdk": "^15.1.3",
"@angular/common": "^15.1.0",
"@angular/compiler": "^15.1.0",
"@angular/core": "^15.1.0",
"@angular/fire": "^7.5.0",
"@angular/forms": "^15.1.4",
"@angular/material": "^15.1.4",
"@angular/platform-browser": "^15.1.0",
"@angular/platform-browser-dynamic": "^15.1.4",
"@angular/router": "^15.1.4",
"chart.js": "^4.3.3",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.0.1",
"date-fns": "^2.30.0",
"firebase": "9.9.3",
"ng2-charts": "^4.1.1",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.5",
"@angular/cli": "~15.1.4",
"@angular/compiler-cli": "^15.1.4",
"@types/jasmine": "~4.3.0",
"electron": "^22.2.1",
"electron-builder": "^23.6.0",
"electron-debug": "^3.2.0",
"electron-reload": "^2.0.0-alpha.1",
"electron-reloader": "^1.2.3",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"npm-run-all": "^4.1.5",
"typescript": "~4.9.4",
"wait-on": "^7.0.1"
}
}