https://github.com/angular/angular
Raw File
Tip revision: c0a8c8fb4b2410f76c0a4b625b35e52cb2189248 authored by Jessica Janiuk on 24 May 2023, 17:31:37 UTC
release: cut the v16.0.3 release
Tip revision: c0a8c8f
package.json
{
  "name": "platform-server",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "#comment-1": "The below is used is for payload size checks",
    "build": "ng build standalone && ng build ngmodule",
    "#comment-2": "The below is used is for integration tests",
    "build:ngmodule": "ng run ngmodule:build:development && ng run ngmodule:server:development",
    "serve:ngmodule": "node ./dist/ngmodule/server/main.js",
    "test:ngmodule": "yarn build:ngmodule && concurrently \"yarn serve:ngmodule\" \"yarn ng e2e ngmodule\" --kill-others --success first",
    "build:standalone": "ng run standalone:build:development && ng run standalone:server:development",
    "serve:standalone": "node ./dist/standalone/server/main.js",
    "test:standalone": "yarn build:standalone && concurrently \"yarn serve:standalone\" \"yarn ng e2e standalone\" --kill-others --success first",
    "test": "ng version && yarn test:standalone && yarn test:ngmodule"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "file:../../dist/packages-dist/animations",
    "@angular/common": "file:../../dist/packages-dist/common",
    "@angular/compiler": "file:../../dist/packages-dist/compiler",
    "@angular/core": "file:../../dist/packages-dist/core",
    "@angular/forms": "file:../../dist/packages-dist/forms",
    "@angular/platform-browser": "file:../../dist/packages-dist/platform-browser",
    "@angular/platform-browser-dynamic": "file:../../dist/packages-dist/platform-browser-dynamic",
    "@angular/platform-server": "file:../../dist/packages-dist/platform-server",
    "@angular/router": "file:../../dist/packages-dist/router",
    "express": "4.16.4",
    "rxjs": "file:../../node_modules/rxjs",
    "tslib": "file:../../node_modules/tslib",
    "zone.js": "file:../../dist/zone.js-dist/archive/zone.js.tgz"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "file:../../node_modules/@angular-devkit/build-angular",
    "@angular/cli": "file:../../node_modules/@angular/cli",
    "@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli",
    "@angular/language-service": "file:../../dist/packages-dist/language-service",
    "@types/jasmine": "file:../../node_modules/@types/jasmine",
    "@types/jasminewd2": "file:../../node_modules/@types/jasminewd2",
    "@types/node": "file:../../node_modules/@types/node",
    "concurrently": "3.1.0",
    "jasmine-core": "3.5.0",
    "jasmine-spec-reporter": "4.2.1",
    "karma": "4.4.0",
    "karma-chrome-launcher": "3.1.0",
    "karma-coverage-istanbul-reporter": "2.1.0",
    "karma-jasmine": "2.0.1",
    "karma-jasmine-html-reporter": "1.4.2",
    "protractor": "file:../../node_modules/protractor",
    "ts-node": "8.3.0",
    "typescript": "file:../../node_modules/typescript"
  }
}
back to top