mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This is so that server side rendering does not throw an exception when it encounters animations on the server side and does not need the user to explicitly setup NoopAnimationsModule in their app server module. Fixes #15098, #14784. PR Close #15131
31 lines
1.2 KiB
JSON
31 lines
1.2 KiB
JSON
{
|
|
"name": "angular-integration",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@angular/animations": "file:../../dist/packages-dist/animations",
|
|
"@angular/common": "file:../../dist/packages-dist/common",
|
|
"@angular/compiler": "file:../../dist/packages-dist/compiler",
|
|
"@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli",
|
|
"@angular/core": "file:../../dist/packages-dist/core",
|
|
"@angular/platform-browser": "file:../../dist/packages-dist/platform-browser",
|
|
"@angular/platform-server": "file:../../dist/packages-dist/platform-server",
|
|
"@angular/tsc-wrapped": "file:../../dist/tools/@angular/tsc-wrapped",
|
|
"google-closure-compiler": "20161201.0.0",
|
|
"rxjs": "file:../../node_modules/rxjs",
|
|
"typescript": "2.1.6",
|
|
"zone.js": "0.7.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jasmine": "2.5.41",
|
|
"concurrently": "3.1.0",
|
|
"lite-server": "2.2.2",
|
|
"protractor": "file:../../node_modules/protractor"
|
|
},
|
|
"scripts": {
|
|
"test": "ngc && ./bundle.sh && concurrently \"yarn run serve\" \"yarn run protractor\" --kill-others --success first",
|
|
"serve": "lite-server -c e2e/browser.config.json",
|
|
"preprotractor": "tsc -p e2e",
|
|
"protractor": "protractor e2e/protractor.config.js"
|
|
}
|
|
}
|