This repository has been archived by the owner on Sep 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.55 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
{
"name": "software-challenge-gui",
"productName": "Software-Challenge-GUI",
"version": "20.3.4",
"description": "GUI für die Software-Challenge",
"main": "main.js",
"scripts": {
"pretest": "rimraf out && tsc -p tests",
"test": "jasmine --config=jasmine.json --reporter=jasmine-ts-console-reporter",
"set-config": "yarn config set version-tag-prefix \"\" && yarn config set version-git-message \"release: %s\"",
"postversion": "git push --tags",
"start": "yarn install && yarn compile && (test -d server || yarn update-server) && electron .",
"update-server": "git submodule update --remote && yarn compile-server",
"compile-server": "cd socha && ./gradlew :server:deploy -q && cd .. && rimraf server && cp -r socha/server/build/runnable server && cp socha/player/build/libs/defaultplayer.jar .",
"dist": "yarn install && yarn compile && electron-builder --publish never",
"dist-all": "rimraf dist && yarn dist -mwl",
"compile": "rimraf out && tsc",
"clean": "rimraf out; rimraf dist; rimraf server; rimraf socha; rimraf defaultplayer.jar; rimraf *.log.html"
},
"repository": {
"type": "git",
"url": "https://github.com/CAU-Kiel-Tech-Inf/socha-gui"
},
"author": "Software-Challenge Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/CAU-Kiel-Tech-Inf/socha-gui/issues"
},
"homepage": "https://www.software-challenge.de/",
"build": {
"appId": "de.software-challenge.gui",
"artifactName": "${productName}-${os}-${version}.${ext}",
"files": [
"main.js",
"src",
"out",
"server",
"assets/build-resources/icon512x512.png"
],
"asar": true,
"asarUnpack": [
"server"
],
"directories": {
"output": "dist",
"buildResources": "assets/build-resources"
},
"win": {
"icon": "assets/build-resources/icon512x512.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"mac": {
"icon": "assets/build-resources/icon.icns",
"category": "public.app-category.developer-tools",
"target": [
"dmg"
],
"electronLanguages": [
"de",
"en"
]
},
"linux": {
"icon": "assets/build-resources/icon512x512.png",
"target": [
"AppImage"
]
}
},
"dependencies": {
"body-parser": "^1.19.0",
"deep-equal": "^2.0.1",
"electron-updater": "^4.2.5",
"express": "^4.17.1",
"hazardous": "^0.3.0",
"phaser": "^3.22.0",
"portfinder": "^1.0.25",
"promise-retry": "^1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-photonkit": "git+https://github.com/octoth0rpe/react-photonkit.git",
"request": "^2.88.0",
"sax": "^1.2.4",
"tree-kill": "^1.2.1",
"validate-typescript": "^4.0.2",
"webpack": "^4.42.0",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.3",
"@types/jasmine": "^3.5.9",
"@types/promise-retry": "^1.1.3",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/request": "^2.48.3",
"@types/sax": "^1.2.0",
"electron": "^8.2.4",
"electron-builder": "21.2.0",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
"mocha": "^7.1.0",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}