-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.81 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.81 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
{
"author": {
"name": "tea-stack",
"url": "https://github.com/tea-stack/template"
},
"description": "TEA Stack for building your next Electron app",
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.1",
"@angular/animations": "^17.1.1",
"@angular/cli": "^17.1.1",
"@angular/common": "^17.1.1",
"@angular/compiler": "^17.1.1",
"@angular/compiler-cli": "^17.1.1",
"@angular/core": "^17.1.1",
"@angular/forms": "^17.1.1",
"@angular/platform-browser": "^17.1.1",
"@angular/platform-browser-dynamic": "^17.1.1",
"@angular/router": "^17.1.1",
"@ng-all/eslint-config": "^0.1.1",
"@style-all/stylelint-scss": "^0.2.1",
"@ts-all/index": "^0.2.10",
"@types/node": "^20.11.7",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"esbuild": "^0.19.12",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"typescript": "~5.3.3",
"zone.js": "^0.14.3"
},
"main": "./dist/main/app.min.js",
"name": "tea-stack",
"private": true,
"scripts": {
"build:app": "ng build --base-href ./",
"build:main": "tsc --project ./main/tsconfig.preload.json && esbuild ./main/src/app.ts --tsconfig=./tsconfig.json --external:electron --bundle --platform=node --target=esnext --format=cjs --outfile=./dist/main/app.min.js --minify=true --legal-comments=none",
"build:out": "electron-builder",
"build:prod": "electron-builder --config.productName=MyAwesomeTeaStack",
"lint": "tsc --build && eslint --ext .ts,.html ./app && stylelint ./app/**/*.scss && eslint --ext .ts ./main",
"start:app": "ng serve",
"start:main": "tsc --build && electron ./dist/main/app.js -- --debug"
},
"version": "0.0.0"
}