-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 847 Bytes
/
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
{
"name": "angular-electron",
"version": "0.0.2",
"description": "Using Angular 4 with Electron",
"main": "main.js",
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"electron .\" ",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"license": "MIT",
"dependencies": {
"@angular/common": "5.2.9",
"@angular/compiler": "5.2.9",
"@angular/core": "5.2.9",
"@angular/forms": "5.2.6",
"@angular/http": "5.2.9",
"@angular/platform-browser": "5.2.9",
"@angular/platform-browser-dynamic": "5.2.9",
"@angular/router": "5.2.9",
"core-js": "2.5.1",
"rxjs": "5.5.6",
"systemjs": "0.20.19",
"zone.js": "0.8.18"
},
"devDependencies": {
"@types/core-js": "0.9.34",
"@types/node": "6.0.46",
"concurrently": "3.2.0",
"typescript": "2.6.1",
"electron": "2.0.8"
}
}