diff --git a/functions/package.json b/functions/package.json index 188fd87..2b157d0 100644 --- a/functions/package.json +++ b/functions/package.json @@ -2,20 +2,20 @@ "name": "functions", "description": "Cloud Functions for Firebase", "dependencies": { - "@angular/animations": "6.0.2", - "@angular/common": "6.0.2", - "@angular/compiler": "6.0.2", - "@angular/core": "6.0.2", - "@angular/forms": "6.0.2", - "@angular/http": "6.0.2", - "@angular/platform-browser": "6.0.2", - "@angular/platform-browser-dynamic": "6.0.2", - "@angular/platform-server": "6.0.2", - "express": "~4.16.3", + "@angular/animations": "7.2.0", + "@angular/common": "7.2.0", + "@angular/compiler": "7.2.0", + "@angular/core": "7.2.0", + "@angular/forms": "7.2.0", + "@angular/http": "7.2.0", + "@angular/platform-browser": "7.2.0", + "@angular/platform-browser-dynamic": "7.2.0", + "@angular/platform-server": "7.2.0", + "express": "^4.16.4", "firebase-admin": "~5.12.1", - "firebase-functions": "~1.0.2", + "firebase-functions": "^2.1.0", "rxjs": "~6.1.0", - "zone.js": "~0.8.26" + "zone.js": "^0.8.27" }, "private": true } diff --git a/package.json b/package.json index ede63b5..4aa7836 100644 --- a/package.json +++ b/package.json @@ -5,48 +5,50 @@ "scripts": { "ng": "ng", "start": "ng serve", - "build": "ng build", + "build:browser": "ng build --prod", + "build:server": "ng run blog:server", + "build:universal": "npm run-script build:browser && npm run-script build:server && cp -a functions/dist/browser/. public/. && mv public/index.html public/index2.html", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e" }, "private": true, "dependencies": { - "@angular/animations": "6.0.2", - "@angular/common": "6.0.2", - "@angular/compiler": "6.0.2", - "@angular/core": "6.0.2", - "@angular/forms": "6.0.2", - "@angular/http": "6.0.2", - "@angular/platform-browser": "6.0.2", - "@angular/platform-browser-dynamic": "6.0.2", - "@angular/platform-server": "6.0.2", - "@angular/router": "6.0.2", - "core-js": "^2.4.1", - "rxjs": "6.1.0", + "@angular/animations": "7.2.0", + "@angular/common": "7.2.0", + "@angular/compiler": "7.2.0", + "@angular/core": "7.2.0", + "@angular/forms": "7.2.0", + "@angular/http": "7.2.0", + "@angular/platform-browser": "7.2.0", + "@angular/platform-browser-dynamic": "7.2.0", + "@angular/platform-server": "7.2.0", + "@angular/router": "7.2.0", + "core-js": "^2.6.2", + "rxjs": "6.3.3", "rxjs-compat": "^6.0.0-rc.0", - "zone.js": "0.8.26" + "zone.js": "0.8.27" }, "devDependencies": { "@angular-devkit/build-angular": "^0.6.1", - "@angular/cli": "^6.0.0", - "@angular/compiler-cli": "6.0.2", - "@angular/language-service": "6.0.2", + "@angular/cli": "7.2.1", + "@angular/compiler-cli": "7.2.0", + "@angular/language-service": "7.2.0", "@types/jasmine": "~2.5.53", - "@types/jasminewd2": "~2.0.2", - "@types/node": "~6.0.60", - "codelyzer": "^4.3.0", + "@types/jasminewd2": "^2.0.6", + "@types/node": "^6.0.118", + "codelyzer": "^4.5.0", "jasmine-core": "~2.6.2", "jasmine-spec-reporter": "~4.1.0", - "karma": "~1.7.0", + "karma": "^1.7.1", "karma-chrome-launcher": "~2.1.1", "karma-cli": "~1.0.1", - "karma-coverage-istanbul-reporter": "^1.2.1", - "karma-jasmine": "~1.1.0", + "karma-coverage-istanbul-reporter": "^1.4.3", + "karma-jasmine": "^1.1.2", "karma-jasmine-html-reporter": "^0.2.2", "protractor": "~5.1.2", "ts-node": "~3.2.0", "tslint": "~5.3.2", - "typescript": "2.7.2" + "typescript": "3.2.2" } }