This repository was archived by the owner on Oct 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.57 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.57 KB
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
{
"name": "space-corps-front",
"version": "0.7.4",
"main": "dist/electron/main.js",
"reqBackendVersion": "0.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-electron": "tsc -p tsconfig.electron.json",
"start-electron": "ng build --configuration electron && npm run build-electron && electron .",
"pack-electron": "ng build --configuration electron && npm run build-electron && electron-builder --dir",
"dist-electron": "ng build --configuration electron && npm run build-electron && electron-builder",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.4",
"@angular/common": "^19.1.4",
"@angular/compiler": "^19.1.4",
"@angular/core": "^19.1.4",
"@angular/forms": "^19.1.4",
"@angular/platform-browser": "^19.1.4",
"@angular/platform-browser-dynamic": "^19.1.4",
"@angular/router": "^19.1.4",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@microsoft/signalr": "^8.0.7",
"@ngrx/component-store": "^19.0.1",
"@tailwindcss/postcss": "^4.0.3",
"marked": "^15.0.0",
"ngx-markdown": "^19.1.0",
"rxjs": "~7.8.1",
"tailwindcss": "^4.1.4",
"three": "^0.173.0",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.5",
"@angular/cli": "^19.1.5",
"@angular/compiler-cli": "^19.1.4",
"@eslint/js": "^9.24.0",
"@types/jasmine": "~5.1.5",
"@types/three": "^0.173.0",
"autoprefixer": "^10.4.21",
"daisyui": "^5.0.0",
"electron": "^35.0.2",
"electron-builder": "^25.1.8",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.5.3",
"prettier": "3.5.3",
"typescript": "~5.7.3",
"typescript-eslint": "^8.29.1"
},
"build": {
"appId": "com.example.spacecorps",
"productName": "SpaceCorps 2025",
"directories": {
"output": "dist/electron"
},
"files": [
"dist/electron/**/*",
"dist/space-corps-front/browser/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
]
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}