-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.71 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
{
"name": "cross-platform-monorepo",
"version": "0.0.0",
"description": "Cross-platform monorepo Angular app",
"author": {
"name": "your name",
"email": "your@email.address"
},
"main": "main.js",
"scripts": {
"ng": "ng",
"postinstall": "electron-builder install-app-deps",
"start": "npm-run-all -p electron:serve start:tetris",
"start:tetris": "ng serve tetris -o",
"test:tetris": "ng test tetris",
"build:tetris": "ng build tetris",
"lint:tetris": "ng lint tetris",
"e2e:tetris": "ng e2e tetris",
"start:tetris2": "ng serve tetris2 -o",
"build:game-engine-lib": "ng build game-engine-lib --watch",
"test:game-engine-lib": "ng test game-engine-lib",
"lint:game-engine-lib": "ng lint game-engine-lib",
"e2e:game-engine-lib": "ng e2e game-engine-lib",
"build:shared-lib": "ng build shared-lib --watch",
"test:shared-lib": "ng test shared-lib",
"lint:shared-lib": "ng lint shared-lib",
"e2e:shared-lib": "ng e2e shared-lib",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"build": "npm run electron:serve-tsc && ng build tetris --base-href ./",
"build:prod": "npm run build -- -c production",
"electron:package": "npm run build:prod && electron-builder build"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.1.0",
"@angular/common": "^17.1.0",
"@angular/compiler": "^17.1.0",
"@angular/core": "^17.1.0",
"@angular/forms": "^17.1.0",
"@angular/platform-browser": "^17.1.0",
"@angular/platform-browser-dynamic": "^17.1.0",
"@angular/platform-server": "^17.1.0",
"@angular/router": "^17.1.0",
"@angular/ssr": "^17.1.3",
"@capacitor/android": "^5.7.0",
"@capacitor/core": "^5.7.0",
"@capacitor/ios": "^5.7.0",
"@capacitor/preferences": "^5.0.7",
"@electron/remote": "^2.1.2",
"electron-reload": "^2.0.0-alpha.1",
"express": "^4.18.2",
"ng-zzfx": "^0.0.6",
"npm-run-all": "^4.1.5",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"wait-on": "^7.2.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.3",
"@angular/cli": "^17.1.3",
"@angular/compiler-cli": "^17.1.0",
"@capacitor/cli": "^5.7.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"electron": "^28.2.3",
"electron-builder": "^24.9.1",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^17.1.0",
"typescript": "~5.3.2"
}
}