-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.38 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": "angular2-boilerplate",
"version": "1.0.0",
"main": "gulpfile.js",
"scripts": {
"build": "gulp build",
"start": "npm run build && electron dist",
"package": "npm run build && gulp electron:package",
"postinstall": "concurrently \"bower install\" \"typings install\""
},
"dependencies": {
"@angular/common": "^2.0.1",
"@angular/compiler": "^2.0.1",
"@angular/core": "^2.0.1",
"@angular/forms": "~2.0.1",
"@angular/http": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/router": "^3.0.1",
"@angular/upgrade": "^2.0.1",
"angular2-in-memory-web-api": "0.0.21",
"core-js": "^2.4.1",
"jasmine": "^2.5.2",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "^0.19.39",
"zone.js": "^0.6.25"
},
"devDependencies": {
"bower": "^1.7.9",
"concurrently": "^2.0.0",
"del": "^2.2.0",
"electron": "^1.3.3",
"gulp": "^3.9.1",
"gulp-atom-electron": "^1.9.0",
"gulp-sass": "^2.3.1",
"gulp-shell": "^0.5.2",
"gulp-symdest": "^1.0.0",
"run-sequence": "^1.1.5",
"typescript": "^1.8.10",
"typings": "^1.3.2"
},
"keywords": [
"Angular",
"Angular2",
"typescript"
],
"author": "Cory Forward",
"license": "MIT",
"description": "An easy to use Angular 2 boilerplate for Angular 2 RC1"
}