-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.61 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.61 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
{
"name": "ng-electron",
"productName": "Angular Electron Template",
"description": "A simple multi-platform template application of Electron + Angular Ivy",
"homepage": "https://github.com/euaaron/template-angular-electron",
"version": "1.0.0",
"main": "./dist/build/electron/main.js",
"author": {
"name": "Aaron Carneiro",
"email": "hello@aaroncarneiro.com",
"url": "https://aaroncarneiro.com"
},
"scripts": {
"ng": "ng",
"watch": "tsc -w",
"build-web": "ng build --prod",
"build-app": "tsc --build electron",
"build": "yarn build-web && yarn build-app",
"start-web": "ng serve",
"start-app": "yarn build-app && electron ./dist/build/electron/main.js",
"start": "concurrently \"yarn start-web\" \"yarn watch\" \"yarn start-app\"",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pack": "yarn build-prod && npx electron-packager --out='dist/packages' --all ./dist",
"pack-win": "npx electron-packager --out='dist/packages' --platform=win32 --arch=x64 ./dist",
"pack-linux": "npx electron-packager --out='dist/packages' --platform=linux --arch=x64 ./dist"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.14",
"@angular/common": "~11.2.14",
"@angular/compiler": "~11.2.14",
"@angular/core": "~11.2.14",
"@angular/forms": "~11.2.14",
"@angular/platform-browser": "~11.2.14",
"@angular/platform-browser-dynamic": "~11.2.14",
"@angular/router": "~11.2.14",
"angular-feather": "^6.1.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.13",
"@angular-eslint/builder": "4.3.0",
"@angular-eslint/eslint-plugin": "4.3.0",
"@angular-eslint/eslint-plugin-template": "4.3.0",
"@angular-eslint/schematics": "4.3.0",
"@angular-eslint/template-parser": "4.3.0",
"@angular/cli": "~11.2.14",
"@angular/compiler-cli": "~11.2.14",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"concurrently": "^6.2.2",
"electron": "^15.0.0",
"electron-packager": "^15.4.0",
"eslint": "^7.6.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "~4.1.5"
},
"optionalDependencies": {
"husky": "^7.0.2"
}
}