-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.72 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
{
"name": "electron-boilerplate",
"productName": "electron-boilerplate",
"description": "The latest and updated angular electron boilerplate with many tweaks",
"license": "MIT",
"author": "Teddy Fontaine",
"version": "11.2.1",
"main": "app.js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"build:prod:electron": "ng build --base-href '' --prod && gulp",
"build:dev:electron": "ng build --base-href '' --source-map=false && gulp",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"start:electron": "ng build --base-href '' && gulp && electron-forge start",
"start:electron2": "tsc -p tsconfig.electron.json && ng build --base-href '' && electron-forge start",
"start:electron:hotreload": "concurrently \"ng build --base-href '' --watch \" \"electron-forge start .\"",
"package": "electron-forge package --arch=x64 --platform=darwin,linux,win32",
"make": "electron-forge make",
"make:mac": "electron-forge make --arch=x64 --plateform=darwin",
"make:linux": "electron-forge make --arch=x64 --plateform=linux",
"make:win32": "electron-forge make --arch=x64 --platform=win32"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.1",
"@angular/cdk": "^11.2.1",
"@angular/common": "^11.2.1",
"@angular/compiler": "^11.2.1",
"@angular/core": "^11.2.1",
"@angular/forms": "^11.2.1",
"@angular/material": "^11.2.1",
"@angular/platform-browser": "^11.2.1",
"@angular/platform-browser-dynamic": "^11.2.1",
"@angular/router": "^11.2.1",
"@babel/polyfill": "^7.12.1",
"@types/pouchdb-adapter-idb": "^6.1.3",
"@types/systemjs": "^6.1.0",
"angular-web-worker": "^1.0.6",
"pouchdb-adapter-idb": "^7.2.2",
"rxdb": "^9.19.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.1",
"@angular/cli": "^11.2.1",
"@angular/compiler-cli": "^11.2.1",
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"@nativescript/schematics": "^11.0.0",
"@schematics/angular": "^8.0.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.20.1",
"custom-electron-titlebar": "^3.2.6",
"codelyzer": "^6.0.0",
"concurrently": "^5.3.0",
"electron": "^11.2.3",
"electron-reloader": "^1.2.0",
"electron-winstaller": "^4.0.2",
"fs-extra": "^9.1.0",
"gulp": "^4.0.2",
"gulp-string-replace": "^1.1.2",
"gulp-typescript": "^6.0.0-alpha.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.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",
"systemjs": "^6.8.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.2"
},
"config": {
"forge": {
"packagerConfig": {
"asar": true,
"ignore": [
"^/(?!(dist|app.js|package.json)).*$"
]
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "electron_boilerplate"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
}
}