mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
upgrade to angular 4
This commit is contained in:
30
package.json
30
package.json
@@ -9,30 +9,28 @@
|
|||||||
"url": "https://github.com/chsakell/aspnet-core-signalr-angular"
|
"url": "https://github.com/chsakell/aspnet-core-signalr-angular"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/common": "~2.2.0",
|
"@angular/animations": "4.0.2",
|
||||||
"@angular/compiler": "~2.2.0",
|
"@angular/common": "4.0.2",
|
||||||
"@angular/core": "~2.2.0",
|
"@angular/compiler": "4.0.2",
|
||||||
"@angular/forms": "~2.2.0",
|
"@angular/core": "4.0.2",
|
||||||
"@angular/http": "~2.2.0",
|
"@angular/forms": "4.0.2",
|
||||||
"@angular/platform-browser": "~2.2.0",
|
"@angular/http": "4.0.2",
|
||||||
"@angular/platform-browser-dynamic": "~2.2.0",
|
"@angular/platform-browser": "4.0.2",
|
||||||
"@angular/router": "~3.2.0",
|
"@angular/platform-browser-dynamic": "4.0.2",
|
||||||
"@angular/upgrade": "~2.2.0",
|
"@angular/router": "4.0.2",
|
||||||
|
|
||||||
"angular-in-memory-web-api": "~0.1.15",
|
"angular-in-memory-web-api": "~0.2.4",
|
||||||
"core-js": "^2.4.1",
|
"core-js": "^2.4.1",
|
||||||
"reflect-metadata": "^0.1.8",
|
"reflect-metadata": "^0.1.8",
|
||||||
"rxjs": "5.0.0-beta.12",
|
"rxjs": "5.0.1",
|
||||||
"systemjs": "0.19.39",
|
"systemjs": "0.19.40",
|
||||||
"zone.js": "^0.6.25",
|
"zone.js": "^0.8.5",
|
||||||
|
|
||||||
"bower": "1.7.9",
|
"bower": "1.7.9",
|
||||||
"jquery": "^3.1.0",
|
"jquery": "^3.1.0",
|
||||||
"signalr": "^2.2.1"
|
"signalr": "^2.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/core-js": "^0.9.34",
|
|
||||||
"@types/node": "^6.0.45",
|
|
||||||
"concurrently": "^2.2.0",
|
"concurrently": "^2.2.0",
|
||||||
"gulp": ">=3.9.1",
|
"gulp": ">=3.9.1",
|
||||||
"gulp-concat": ">=2.5.2",
|
"gulp-concat": ">=2.5.2",
|
||||||
@@ -46,7 +44,7 @@
|
|||||||
"gulp-watch": ">=4.3.9",
|
"gulp-watch": ">=4.3.9",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
"tslint": "^3.15.1",
|
"tslint": "^3.15.1",
|
||||||
"typescript": "^2.0.0",
|
"typescript": "^2.2.2",
|
||||||
"typings": "^1.3.2"
|
"typings": "^1.3.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -7,11 +7,7 @@
|
|||||||
"emitDecoratorMetadata": true,
|
"emitDecoratorMetadata": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"removeComments": false,
|
"removeComments": false,
|
||||||
"suppressImplicitAnyIndexErrors": true
|
"noImplicitAny": false,
|
||||||
},
|
"skipLibCheck": true
|
||||||
"compileOnSave": true,
|
|
||||||
"angularCompilerOptions": {
|
|
||||||
"genDir": ".",
|
|
||||||
"debug": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,6 +13,9 @@
|
|||||||
// our app is within the app folder
|
// our app is within the app folder
|
||||||
app: 'app',
|
app: 'app',
|
||||||
// angular bundles
|
// angular bundles
|
||||||
|
'@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',
|
||||||
|
'@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
|
||||||
|
'@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
|
||||||
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
|
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
|
||||||
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
|
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
|
||||||
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
|
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
|
||||||
|
|||||||
Reference in New Issue
Block a user