-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.98 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
{
"name": "angular2-electron-quickstart",
"version": "0.0.1",
"description": "Quick start for angular 2.0.0 release with electron to create awesome cross platform desktop app",
"main": "gulpfile.js",
"scripts": {
"postinstall": "npm run typings install",
"typings": "typings",
"tsc": "tsc",
"build": "npm run frontend && tsc && gulp electron",
"frontend": "gulp frontend && tsc",
"serve": "npm run frontend && lite-server",
"electron": "npm run build && electron ./dist/electron-package",
"build-linux": "electron-packager ./dist/electron-package/ --platform=linux --arch=x64 --version=1.3.5 --overwrite",
"build-windows": "electron-packager ./dist/electron-package/ --platform=win32 --arch=x64 --version=1.3.5 --overwrite",
"build-mac": "electron-packager ./dist/electron-package/ --platform=darwin --arch=x64 --version=1.3.5 --overwrite",
"apps": "npm run build && npm run build-linux && npm run build-windows && npm run build-mac"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0-rc.3",
"@angular/upgrade": "2.0.0",
"angular2-in-memory-web-api": "0.0.19",
"bootstrap": "^3.3.6",
"core-js": "^2.4.1",
"pouchdb": "^6.0.4",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.27",
"zone.js": "^0.6.21"
},
"keywords": ["Angular2", "Electron", "Angular", "Quickstart"],
"author": "Damodar Llohani",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.0",
"concurrently": "^2.2.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-flatten": "^0.3.1",
"gulp-rename": "^1.2.2",
"lite-server": "^2.2.2",
"run-sequence": "^1.2.2",
"typescript": "^2.0.2",
"typings": "^1.3.3"
}
}