-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "webcat",
"version": "0.1.0",
"scripts": {
"clean": "gulp clean",
"compile": "gulp compile",
"build": "gulp build",
"prestart": "npm run build",
"start": "concurrently --kill-others \"gulp watch\" \"gulp watch-ts\" \"lite-server\"",
"build-prod": "gulp build:prod",
"serve-prod": "gulp build:prod && lite-server -c prod-bs-config.json",
"lite": "lite-server",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"license": "ISC",
"repository" :
{ "type" : "git",
"url" : "https://github.com/NerdCats/WebCat"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
"angular2-google-maps": "0.11.0",
"angular2-in-memory-web-api": "0.0.7",
"bootstrap": "^3.3.6",
"es6-shim": "^0.35.0",
"font-awesome": "^4.6.3",
"jquery": "^2.2.3",
"moment": "^2.13.0",
"ng2-bootstrap": "1.0.16",
"ng2-bs3-modal": "0.6.0",
"rdash-ui": "^1.0.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "^0.19.27",
"zone.js": "^0.6.12"
},
"devDependencies": {
"browser-sync": "^2.10.0",
"concurrently": "^2.0.0",
"del": "^2.1.0",
"gulp": "^3.9.0",
"gulp-cssnano": "^2.1.2",
"gulp-debug": "^2.1.2",
"gulp-deploy-git": "^0.5.3",
"gulp-if": "^2.0.1",
"gulp-inject": "^4.1.0",
"gulp-rev": "^7.1.0",
"gulp-rev-replace": "^0.4.3",
"gulp-rimraf": "^0.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.8.0",
"gulp-useref": "^3.1.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.6",
"jasmine-core": "^2.4.1",
"lite-server": "^2.2.0",
"minimist": "^1.2.0",
"run-sequence": "^1.2.1",
"systemjs-builder": "^0.15.23",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"yargs": "^4.7.1"
},
"peerDependency": {
"@angular/common": "2.0.0-rc.1"
}
}