add npm / bower dependencies

This commit is contained in:
chsakell
2016-09-25 11:30:27 +03:00
parent f1dc366e34
commit 1041e79bb5
5 changed files with 85 additions and 0 deletions

3
.bowerrc Normal file
View File

@@ -0,0 +1,3 @@
{
"directory": "wwwroot/lib"
}

4
.gitignore vendored
View File

@@ -182,6 +182,10 @@ ClientBin/
*.pfx
*.publishsettings
node_modules/
typings/
wwwroot/lib/
app/**/*.js
app/**/*.map
orleans.codegen.cs
# RIA/Silverlight projects

12
bower.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "livegamefeed",
"private": true,
"dependencies": {
"bootstrap": "3.3.5",
"jquery": "2.1.4",
"jquery-validation": "1.14.0",
"jquery-validation-unobtrusive": "3.2.4",
"signalr": "2.2.0"
},
"ignore": ""
}

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"version": "1.0.0",
"description": "live game feed",
"name": "livegamefeed",
"readme": "chsakell's blog all right reserved",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chsakelll/aspnetcore-signalr-angular2"
},
"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",
"@angular/upgrade": "2.0.0",
"angular2-in-memory-web-api": "0.0.20",
"bower": "1.7.9",
"core-js": "^2.4.1",
"jquery": "^3.1.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"signalr": "^2.2.1",
"systemjs": "0.19.27",
"zone.js": "^0.6.23"
},
"devDependencies": {
"concurrently": "^2.2.0",
"gulp": ">=3.9.1",
"gulp-concat": ">=2.5.2",
"gulp-copy": ">=0.0.2",
"gulp-cssmin": ">=0.1.7",
"gulp-rename": ">=1.2.2",
"gulp-rimraf": ">=0.2.0",
"gulp-tsc": ">=1.2.0",
"gulp-uglify": ">=1.2.0",
"gulp-watch": ">=4.3.9",
"jasmine-core": "2.4.1",
"tslint": "^3.15.1",
"typescript": "^2.0.0",
"typings": "^1.3.2"
},
"scripts": {
"start": "concurrently \"npm run gulp\" \"npm run watch\" \"npm run tsc:w\"",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"gulp": "gulp",
"watch": "gulp watch",
"ngc": "ngc"
}
}

9
typings.json Normal file
View File

@@ -0,0 +1,9 @@
{
"globalDependencies": {
"core-js": "registry:dt/core-js",
"node": "registry:dt/node",
"jquery": "registry:dt/jquery",
"signalr": "registry:dt/signalr",
"jasmine": "registry:dt/jasmine"
}
}