mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
179 lines
No EOL
7.5 KiB
JSON
179 lines
No EOL
7.5 KiB
JSON
{
|
|
"name": "angular.io",
|
|
"version": "0.0.0",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:angular/angular.git",
|
|
"author": "Angular",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"postinstall": "node tools/cli-patches/patch.js",
|
|
"start": "yarn check-env && ng serve",
|
|
"prebuild": "yarn setup",
|
|
"build": "bazel build //aio:build",
|
|
"build:bazel": "bazelisk build //aio:build",
|
|
"prebuild-local": "yarn setup-local",
|
|
"build-local": "yarn build --config=aio_local_deps",
|
|
"prebuild-local-ci": "yarn setup-local-ci",
|
|
"build-local-ci": "yarn ~~build --progress=false",
|
|
"extract-cli-command-docs": "node tools/transforms/cli-docs-package/extract-cli-commands.js 6ccbc6b4c",
|
|
"lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint && yarn security-lint",
|
|
"test": "bazel test //aio:test",
|
|
"test-local": "yarn test --config=aio_local_deps",
|
|
"test:ci": "bazel test //aio/...",
|
|
"test-local:ci": "yarn test:ci --config=aio_local_deps",
|
|
"e2e": "bazel test //aio:e2e",
|
|
"e2e-local": "yarn e2e --config=aio_local_deps",
|
|
"setup": "yarn --cwd .. install && yarn install --frozen-lockfile && yarn ~~check-env",
|
|
"set-opensearch-url": "node --eval \"const sh = require('shelljs'); sh.set('-e'); sh.sed('-i', /PLACEHOLDER_URL/g, process.argv[1], 'dist/assets/opensearch.xml');\"",
|
|
"presmoke-tests": "yarn update-webdriver",
|
|
"smoke-tests": "protractor tests/deployment/e2e/protractor.conf.js --suite smoke --baseUrl",
|
|
"test-a11y-score": "node scripts/test-aio-a11y.mjs",
|
|
"test-a11y-score-localhost": "run-p --race \"~~light-server -s dist -p 4200 --quiet\" \"test-a11y-score http://localhost:4200\" --",
|
|
"test-pwa-score": "run-s \"~~audit-web-app {1} all:0,pwa:{2} {3}\" --",
|
|
"test-pwa-score-localhost": "run-p --race \"~~light-server -s dist -p 4200 --quiet\" \"test-pwa-score http://localhost:4200 {1} {2}\" --",
|
|
"example-e2e": "bazel test //aio/content/examples/...",
|
|
"example-e2e-local": "yarn example-e2e --config=aio_local_deps",
|
|
"example-lint": "eslint content/examples",
|
|
"deploy-production": "node scripts/deploy-to-firebase/index.mjs",
|
|
"check-env": "yarn ~~check-env",
|
|
"payload-size": "scripts/payload.sh",
|
|
"predocs": "node scripts/contributors/validate-data && bazel build -- //aio:stackblitz //aio:example-zips",
|
|
"docs": "yarn docs-only",
|
|
"docs-only": "bazel build //aio:dgeni",
|
|
"docs-watch": "node tools/transforms/authors-package/watchr.js",
|
|
"docs-lint": "eslint --ignore-path=\"tools/transforms/.eslintignore\" tools/transforms",
|
|
"docs-test": "bazel test //aio/tools/transforms/...",
|
|
"redirects-test": "node tests/deployment/unit/test",
|
|
"firebase-utils-test": "node tools/firebase-test-utils/test",
|
|
"tools-lint": "eslint --ext=.mjs scripts/deploy-to-firebase && eslint tools/firebase-test-utils",
|
|
"tools-test": "bazel test //aio/tools/... && jasmine scripts/deploy-to-firebase/**/*.spec.mjs && yarn firebase-utils-test",
|
|
"serve": "bazel run //aio:serve",
|
|
"serve-local": "yarn serve --config=aio_local_deps",
|
|
"serve-and-sync": "bazel run //aio:fast-serve",
|
|
"serve-and-sync-local": "yarn serve-and-sync --config=aio_local_deps",
|
|
"boilerplate:test": "bazel test //aio/tools/examples:example-boilerplate-test",
|
|
"generate-stackblitz": "bazel build //aio:stackblitz",
|
|
"generate-zips": "bazel build //aio:example-zips",
|
|
"create-example": "bazel run //aio/tools/examples:create-example",
|
|
"build-404-page": "node scripts/build-404-page",
|
|
"update-webdriver": "node ../scripts/webdriver-manager-update.js",
|
|
"security-lint": "tsec -p tsconfig.app.json",
|
|
"~~audit-web-app": "node scripts/audit-web-app.mjs",
|
|
"~~check-env": "node scripts/check-environment",
|
|
"post~~build": "yarn build-404-page",
|
|
"~~light-server": "light-server --bind=localhost --historyindex=/index.html --no-reload"
|
|
},
|
|
"//engines-comment": "If applicable, also update /package.json and /aio/tools/examples/shared/package.json",
|
|
"engines": {
|
|
"node": ">=14.17.1",
|
|
"yarn": ">=1.22.4 <2",
|
|
"npm": "Please use yarn instead of NPM to install dependencies"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "15.0.0-rc.0",
|
|
"@angular/cdk": "^14.2.4",
|
|
"@angular/common": "15.0.0-rc.0",
|
|
"@angular/compiler": "15.0.0-rc.0",
|
|
"@angular/core": "15.0.0-rc.0",
|
|
"@angular/elements": "15.0.0-rc.0",
|
|
"@angular/forms": "15.0.0-rc.0",
|
|
"@angular/material": "^14.2.4",
|
|
"@angular/platform-browser": "15.0.0-rc.0",
|
|
"@angular/platform-browser-dynamic": "15.0.0-rc.0",
|
|
"@angular/router": "15.0.0-rc.0",
|
|
"@angular/service-worker": "15.0.0-rc.0",
|
|
"rxjs": "~7.5.0",
|
|
"safevalues": "^0.3.1",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.11.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/architect-cli": "0.1500.0-rc.0",
|
|
"@angular-devkit/build-angular": "15.0.0-rc.0",
|
|
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#f557392bfe7eeccdd39e21853ed7d90e02b2bce7",
|
|
"@angular-eslint/builder": "^14.0.0",
|
|
"@angular-eslint/eslint-plugin": "^14.0.0",
|
|
"@angular-eslint/eslint-plugin-template": "^14.0.0",
|
|
"@angular-eslint/template-parser": "^14.0.0",
|
|
"@angular/cli": "15.0.0-rc.0",
|
|
"@angular/compiler-cli": "15.0.0-rc.0",
|
|
"@bazel/bazelisk": "^1.7.5",
|
|
"@bazel/buildozer": "^5.1.0",
|
|
"@bazel/jasmine": "^5.4.1",
|
|
"@bazel/runfiles": "5.4.2",
|
|
"@bazel/typescript": "5.3.1",
|
|
"@types/jasmine": "~4.3.0",
|
|
"@types/lunr": "^2.3.3",
|
|
"@types/node": "^12.7.9",
|
|
"@types/trusted-types": "^2.0.2",
|
|
"@types/xregexp": "^4.3.0",
|
|
"@typescript-eslint/eslint-plugin": "5.33.0",
|
|
"@typescript-eslint/parser": "5.33.0",
|
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
"archiver": "^5.3.0",
|
|
"assert": "^2.0.0",
|
|
"canonical-path": "1.0.0",
|
|
"chalk": "^4.1.0",
|
|
"cjson": "^0.5.0",
|
|
"codelyzer": "^6.0.0",
|
|
"cross-spawn": "^7.0.3",
|
|
"css-selector-parser": "^1.4.1",
|
|
"dgeni": "^0.4.14",
|
|
"dgeni-packages": "^0.30.0",
|
|
"entities": "^4.0.0",
|
|
"eslint": "^8.0.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-jasmine": "^4.1.2",
|
|
"eslint-plugin-jsdoc": "^39.0.0",
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
"find-free-port": "^2.0.0",
|
|
"firebase-tools": "^11.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"globby": "^13.0.0",
|
|
"hast-util-has-property": "^1.0.4",
|
|
"hast-util-is-element": "^1.1.0",
|
|
"hast-util-to-string": "^1.0.4",
|
|
"html": "^1.0.0",
|
|
"ignore": "^5.1.8",
|
|
"image-size": "^1.0.0",
|
|
"jasmine": "~4.4.0",
|
|
"jasmine-core": "~4.4.0",
|
|
"jasmine-spec-reporter": "~7.0.0",
|
|
"jsdom": "^20.0.0",
|
|
"json-schema-traverse": "^1.0.0",
|
|
"json5": "^2.2.0",
|
|
"karma": "~6.4.0",
|
|
"karma-chrome-launcher": "~3.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"karma-jasmine": "~5.1.0",
|
|
"karma-jasmine-html-reporter": "~2.0.0",
|
|
"light-server": "^2.9.1",
|
|
"lighthouse": "^9.0.0",
|
|
"lighthouse-logger": "^1.3.0",
|
|
"lodash": "^4.17.21",
|
|
"lunr": "^2.3.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"protractor": "~7.0.0",
|
|
"rehype-slug": "^4.0.1",
|
|
"remark": "^12.0.0",
|
|
"remark-html": "^13.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"semver": "^7.3.5",
|
|
"shelljs": "^0.8.5",
|
|
"stemmer": "^2.0.0",
|
|
"tree-kill": "^1.1.0",
|
|
"ts-node": "^10.8.1",
|
|
"tsec": "^0.2.2",
|
|
"tslint": "~6.1.3",
|
|
"typescript": "~4.8.0",
|
|
"uglify-js": "^3.13.3",
|
|
"unist-util-filter": "^2.0.3",
|
|
"unist-util-source": "^3.0.0",
|
|
"unist-util-visit": "^2.0.3",
|
|
"unist-util-visit-parents": "^3.1.1",
|
|
"watchr": "^3.0.1",
|
|
"xregexp": "^5.0.2",
|
|
"yargs": "^17.0.0"
|
|
}
|
|
} |