-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "angular2-seed",
"author": "Bogatyrev Pavel <PFight77@gmail.com>",
"license": "Apache 2.0",
"version": "1.0.0",
"description": "Simple yet flexible Angular 2 dev/prod build system.",
"scripts": {
"build": "gulp build-dev --color",
"build-prod": "gulp build-prod --color",
"clean": "gulp clean --color",
"compile": "gulp compile-dev --color",
"start": "node build-tools/express-http-server.dev.js",
"start-prod": "node build-tools/express-http-server.prod.js"
},
"devDependencies": {
"@angular/compiler-cli": "^2.1.2",
"@angular/platform-server": "^2.1.0",
"@types/node": "^6.0.46",
"browser-resolve": "^1.11.2",
"compression": "^1.6.2",
"del": "^2.2.2",
"event-stream": "^3.3.4",
"express": "^4.14.0",
"file-exists": "^2.0.0",
"glob-intersection": "^0.1.3",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-file": "^0.3.0",
"gulp-if": "^2.0.1",
"gulp-inject": "^4.1.0",
"gulp-inject-string": "^1.1.0",
"gulp-ngc": "^0.1.2",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-rollup": "^2.5.1",
"gulp-run": "^1.7.1",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-typescript": "^3.0.2",
"gulp-uglifyjs": "^0.6.2",
"gulp-util": "^3.0.7",
"http-server": "^0.9.0",
"md5": "^2.2.1",
"node.extend": "^1.1.6",
"openurl": "^1.1.1",
"path": "^0.12.7",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-stream": "^1.14.0",
"run-sequence": "^1.2.2",
"streamqueue": "^1.1.1",
"typescript": "^2.0.6",
"vinyl-buffer": "^1.0.0",
"vinyl-paths": "^2.1.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"@angular/common": "^2.1.0",
"@angular/compiler": "^2.1.0",
"@angular/core": "^2.1.0",
"@angular/forms": "^2.1.2",
"@angular/http": "^2.1.1",
"@angular/platform-browser": "^2.1.0",
"@angular/platform-browser-dynamic": "^2.1.0",
"@angular/router": "^3.1.1",
"es6-shim": "^0.35.2",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0",
"systemjs": "^0.19.40",
"tslib": "^1.5.0",
"zone.js": "^0.6.25"
}
}