-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "ng2-electron",
"version": "0.1.0",
"description": "Using Angular 2 with Electron",
"main": "main.js",
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"electron .\" ",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DenisVuyka/ng2-electron.git"
},
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"Angular"
],
"author": "Denys Vuika <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DenisVuyka/ng2-electron/issues"
},
"homepage": "https://github.com/DenisVuyka/ng2-electron/#readme",
"dependencies": {
"@angular/common": "2.2.0",
"@angular/compiler": "2.2.0",
"@angular/core": "2.2.0",
"@angular/forms": "2.2.0",
"@angular/http": "2.2.0",
"@angular/platform-browser": "2.2.0",
"@angular/platform-browser-dynamic": "2.2.0",
"@angular/router": "3.2.0",
"@angular/upgrade": "2.2.0",
"core-js": "2.4.1",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.39",
"zone.js": "0.6.25"
},
"devDependencies": {
"@types/core-js": "0.9.34",
"@types/node": "6.0.45",
"concurrently": "3.0.0",
"typescript": "2.2.1",
"electron": "1.6.2"
}
}