-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
{
"name": "electron-angular-material",
"version": "0.2.1",
"description": "Using Angular and Material with Electron by systemjs",
"main": "main.js",
"scripts": {
"start": "set NODE_ENV=dev&& tsc && concurrently \"npm run tsc:w\" \"electron .\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"dist": "build -w --x64",
"wb": "http-server wwwroot/ -p 8080",
"prod": "tsc && concurrently \"npm run tsc:w\" \"electron .\" "
},
"keywords": [
"Electron",
"Angular",
"Material",
"systemjs",
"windows",
"autoupdate"
],
"license": "MIT",
"dependencies": {
"@angular/animations": "6.0.5",
"@angular/cdk": "6.0.2",
"@angular/common": "6.0.5",
"@angular/compiler": "6.0.5",
"@angular/core": "6.0.5",
"@angular/forms": "6.0.5",
"@angular/http": "6.0.5",
"@angular/material": "6.0.2",
"@angular/platform-browser": "6.0.5",
"@angular/platform-browser-dynamic": "6.0.5",
"@angular/platform-server": "6.0.5",
"@angular/router": "6.0.5",
"core-js": "2.5.5",
"electron-log": "2.2.16",
"electron-updater": "2.23.3",
"hammerjs": "2.0.8",
"http-server": "0.11.1",
"rxjs": "6.2.1",
"rxjs-compat": "6.2.1",
"rxjs-system-bundle": "6.0.0",
"systemjs": "0.21.4",
"typescript": "2.7.2",
"zone.js": "0.8.26"
},
"devDependencies": {
"@types/node": "10.0.4",
"concurrently": "3.5.0",
"electron": "2.0.8",
"electron-builder": "20.8.0"
},
"build": {
"appId": "EAA",
"productName": "Electron Angular Application",
"win": {
"target": [
"nsis"
]
},
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080/"
}
],
"nsis": {
"oneClick": false,
"artifactName": "Electron Angular Application Setup.exe"
}
}
}