-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpackage.json
101 lines (101 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "angular2-seed",
"version": "0.0.0",
"description": "Seed for Angular 2 apps",
"repository": {
"url": "https://github.com/mgechev/angular2-seed"
},
"scripts": {
"build.dev": "gulp build.dev",
"build.dev.watch": "gulp build.dev.watch",
"build.prod": "gulp build.prod --env prod",
"build.test": "gulp build.test",
"build.test.watch": "gulp build.test.watch",
"docs": "npm run gulp -- build.docs && npm run gulp -- serve.docs",
"gulp": "gulp",
"karma": "karma",
"karma.start": "karma start",
"lint": "gulp tslint",
"postinstall": "gulp check.versions && gulp postinstall",
"reinstall": "rimraf node_modules && npm cache clean && npm install",
"start": "gulp serve --env dev",
"serve.dev": "gulp serve --env dev",
"tasks.list": "gulp --tasks-simple",
"test": "gulp test"
},
"author": "Minko Gechev <mgechev>",
"license": "MIT",
"devDependencies": {
"@types/async": "^2.0.38",
"@types/chalk": "^0.4.31",
"@types/del": "^2.2.32",
"@types/es6-promise": "0.0.32",
"@types/express": "^4.0.35",
"@types/glob": "^5.0.30",
"@types/gulp": "^3.8.32",
"@types/gulp-util": "^3.0.30",
"@types/mime": "0.0.29",
"@types/minimatch": "^2.0.29",
"@types/node": "^7.0.5",
"@types/orchestrator": "0.0.30",
"@types/serve-static": "^1.7.31",
"@types/systemjs": "^0.20.0",
"@types/through2": "^2.0.32",
"@types/vinyl": "^2.0.0",
"async": "^1.4.2",
"chalk": "^1.1.1",
"connect-livereload": "^0.5.3",
"del": "^1.1.1",
"express": "~4.13.1",
"extend": "^3.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.5.2",
"gulp-data": "^1.2.1",
"gulp-filter": "^2.0.2",
"gulp-inject": "^1.3.1",
"gulp-load-plugins": "^0.10.0",
"gulp-plumber": "~1.0.1",
"gulp-shell": "~0.4.3",
"gulp-sourcemaps": "~1.5.2",
"gulp-template": "^3.0.0",
"gulp-tslint": "^3.3.0",
"gulp-typescript": "~2.8.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.2.4",
"jasmine-core": "~2.3.4",
"jsonfile": "^2.2.3",
"merge": "^1.2.0",
"merge-stream": "^1.0.0",
"open": "0.0.5",
"rimraf": "^2.4.3",
"run-sequence": "^1.1.0",
"semver": "^5.0.3",
"serve-static": "^1.9.2",
"slash": "~1.0.0",
"stream-series": "^0.1.1",
"tiny-lr": "^0.2.1",
"traceur": "^0.0.91",
"ts-node": "^3.0.6",
"typescript": "^2.0.0",
"yargs": "^3.25.0"
},
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/http": "2.0.0-rc.4",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router-deprecated": "2.0.0-rc.2",
"bootstrap": "^3.3.5",
"es-module-loader": "^1.3.5",
"es6-shim": "^0.35.0",
"immutable": "^3.7.6",
"markdown": "^0.5.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.41",
"zone.js": "^0.6.12"
}
}