2017-01-25 11:04:30 +00:00
|
|
|
{
|
|
|
|
|
"name": "angular.io",
|
|
|
|
|
"version": "0.0.0",
|
2017-01-25 17:39:01 +00:00
|
|
|
"main": "index.js",
|
|
|
|
|
"repository": "git@github.com:angular/angular.git",
|
|
|
|
|
"author": "Angular",
|
2017-01-25 11:04:30 +00:00
|
|
|
"license": "MIT",
|
2017-01-27 08:20:51 +00:00
|
|
|
"scripts": {
|
2023-09-19 11:28:53 +00:00
|
|
|
"postinstall": "node tools/cli-patches/patch.js && patch-package --patch-dir ../tools/npm-patches/",
|
2019-01-09 12:52:26 +00:00
|
|
|
"prebuild": "yarn setup",
|
2022-12-02 16:23:58 +00:00
|
|
|
"build": "bazel build //aio:build",
|
|
|
|
|
"build-prod": "yarn build --config=release",
|
2022-08-16 04:10:02 +00:00
|
|
|
"build-local": "yarn build --config=aio_local_deps",
|
2021-07-08 12:25:33 +00:00
|
|
|
"lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint && yarn security-lint",
|
2023-03-09 12:21:06 +00:00
|
|
|
"test": "bazel test //aio:test --test_output=streamed --test_tag_filters=-broken",
|
|
|
|
|
"test-and-watch": "ibazel test //aio:test-and-watch --test_output=streamed --test_tag_filters=-broken",
|
2022-08-16 04:10:02 +00:00
|
|
|
"test-local": "yarn test --config=aio_local_deps",
|
2023-03-09 12:21:06 +00:00
|
|
|
"test:ci": "bazel test //aio/... --test_tag_filters=-broken",
|
2022-08-16 04:10:02 +00:00
|
|
|
"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",
|
2022-09-06 20:32:31 +00:00
|
|
|
"set-opensearch-url": "node --eval \"const sh = require('shelljs'); sh.set('-e'); sh.sed('-i', /PLACEHOLDER_URL/g, process.argv[1], '../dist/bin/aio/build/assets/opensearch.xml');\"",
|
2018-10-22 12:33:40 +00:00
|
|
|
"smoke-tests": "protractor tests/deployment/e2e/protractor.conf.js --suite smoke --baseUrl",
|
2022-09-01 02:00:24 +00:00
|
|
|
"test-a11y-score": "bazel run //aio/scripts:test-aio-a11y",
|
|
|
|
|
"test-a11y-score-localhost": "bazel test //aio:test-a11y-score-localhost",
|
2022-11-23 21:28:40 +00:00
|
|
|
"test-pwa-score": "sh -c 'bazel run //aio/scripts:audit-web-app ${0} all:0,pwa:${1}'",
|
2022-09-01 21:08:08 +00:00
|
|
|
"test-pwa-score-localhost": "bazel test //aio:test-pwa-score-localhost",
|
2023-02-10 15:09:58 +00:00
|
|
|
"test-production-url": "bazel test //aio/tests/deployment/e2e",
|
2022-09-06 23:21:24 +00:00
|
|
|
"example-e2e": "node --experimental-import-meta-resolve tools/examples/run-filtered-example-e2es.mjs",
|
2022-09-07 21:08:05 +00:00
|
|
|
"example-list-overrides": "bazel run //aio/tools/examples:example-boilerplate list-overrides",
|
2021-12-05 10:36:03 +00:00
|
|
|
"example-lint": "eslint content/examples",
|
2022-09-29 18:24:32 +00:00
|
|
|
"example-playground": "node ./tools/examples/create-example-playground-wrapper.mjs",
|
2022-11-23 02:40:39 +00:00
|
|
|
"deploy-production": "node ./scripts/deploy-to-firebase/index.mjs",
|
2017-08-16 00:34:53 +00:00
|
|
|
"check-env": "yarn ~~check-env",
|
2017-05-24 00:20:56 +00:00
|
|
|
"payload-size": "scripts/payload.sh",
|
2022-08-16 04:10:02 +00:00
|
|
|
"predocs": "node scripts/contributors/validate-data && bazel build -- //aio:stackblitz //aio:example-zips",
|
2022-10-03 21:19:09 +00:00
|
|
|
"docs-watch": "bazel run //aio:docs-watch --config=release",
|
|
|
|
|
"docs": "bazel build //aio:dgeni --config=release",
|
2017-04-16 20:31:21 +00:00
|
|
|
"docs-lint": "eslint --ignore-path=\"tools/transforms/.eslintignore\" tools/transforms",
|
2022-08-16 04:10:02 +00:00
|
|
|
"docs-test": "bazel test //aio/tools/transforms/...",
|
2022-09-01 21:21:33 +00:00
|
|
|
"redirects-test": "bazel test //aio/tests/deployment/unit:test",
|
|
|
|
|
"firebase-utils-test": "bazel test //aio/tools/firebase-test-utils:test",
|
2022-08-16 04:49:51 +00:00
|
|
|
"tools-lint": "eslint --ext=.mjs scripts/deploy-to-firebase && eslint tools/firebase-test-utils",
|
2022-09-01 23:28:00 +00:00
|
|
|
"tools-test": "bazel test -- //aio/tools/... //aio/scripts/deploy-to-firebase:test",
|
2022-10-03 21:19:09 +00:00
|
|
|
"start": "ibazel run //aio:serve --config=release",
|
2022-09-07 21:08:05 +00:00
|
|
|
"start-local": "yarn start --config=aio_local_deps",
|
2022-08-16 04:10:02 +00:00
|
|
|
"boilerplate:test": "bazel test //aio/tools/examples:example-boilerplate-test",
|
|
|
|
|
"create-example": "bazel run //aio/tools/examples:create-example",
|
2021-07-08 12:25:33 +00:00
|
|
|
"security-lint": "tsec -p tsconfig.app.json",
|
2021-10-01 19:25:38 +00:00
|
|
|
"~~audit-web-app": "node scripts/audit-web-app.mjs",
|
2017-08-16 00:34:53 +00:00
|
|
|
"~~check-env": "node scripts/check-environment",
|
2022-10-14 00:19:01 +00:00
|
|
|
"~~light-server": "light-server --bind=localhost --historyindex=/index.html --no-reload",
|
|
|
|
|
"local-workspace-status": "node scripts/local-workspace-status.mjs"
|
2017-01-27 08:20:51 +00:00
|
|
|
},
|
2021-10-12 10:12:15 +00:00
|
|
|
"//engines-comment": "If applicable, also update /package.json and /aio/tools/examples/shared/package.json",
|
2017-06-14 15:34:13 +00:00
|
|
|
"engines": {
|
2023-04-10 20:36:09 +00:00
|
|
|
"node": ">=16.14.0",
|
2021-04-06 22:51:45 +00:00
|
|
|
"yarn": ">=1.22.4 <2",
|
|
|
|
|
"npm": "Please use yarn instead of NPM to install dependencies"
|
2017-06-14 15:34:13 +00:00
|
|
|
},
|
2017-01-27 08:20:51 +00:00
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2024-03-07 14:05:47 +00:00
|
|
|
"@angular/animations": "17.3.0-rc.0",
|
|
|
|
|
"@angular/cdk": "17.3.0-rc.0",
|
|
|
|
|
"@angular/common": "17.3.0-rc.0",
|
|
|
|
|
"@angular/compiler": "17.3.0-rc.0",
|
|
|
|
|
"@angular/core": "17.3.0-rc.0",
|
|
|
|
|
"@angular/elements": "17.3.0-rc.0",
|
|
|
|
|
"@angular/forms": "17.3.0-rc.0",
|
|
|
|
|
"@angular/material": "17.3.0-rc.0",
|
|
|
|
|
"@angular/platform-browser": "17.3.0-rc.0",
|
|
|
|
|
"@angular/platform-browser-dynamic": "17.3.0-rc.0",
|
|
|
|
|
"@angular/router": "17.3.0-rc.0",
|
|
|
|
|
"@angular/service-worker": "17.3.0-rc.0",
|
2023-01-04 18:03:17 +00:00
|
|
|
"rxjs": "~7.8.0",
|
2023-10-03 16:06:13 +00:00
|
|
|
"safevalues": "^0.5.0",
|
2021-09-22 18:50:59 +00:00
|
|
|
"tslib": "^2.3.0",
|
2023-10-03 16:06:13 +00:00
|
|
|
"zone.js": "~0.14.0"
|
2017-01-27 08:20:51 +00:00
|
|
|
},
|
2017-01-25 11:04:30 +00:00
|
|
|
"devDependencies": {
|
2024-02-09 11:06:08 +00:00
|
|
|
"@angular-devkit/architect-cli": "0.1702.0-rc.0",
|
|
|
|
|
"@angular-devkit/build-angular": "17.2.0-rc.0",
|
2024-03-11 18:06:22 +00:00
|
|
|
"@angular-eslint/builder": "17.2.1",
|
|
|
|
|
"@angular-eslint/eslint-plugin": "17.2.1",
|
|
|
|
|
"@angular-eslint/eslint-plugin-template": "17.2.1",
|
|
|
|
|
"@angular-eslint/template-parser": "^17.0.0",
|
2024-02-09 11:06:08 +00:00
|
|
|
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#7c4cf003cb4ac849986beaa243d7e85a893612f2",
|
|
|
|
|
"@angular/cli": "17.2.0-rc.0",
|
|
|
|
|
"@angular/compiler-cli": "17.2.0-rc.1",
|
2022-01-13 23:43:39 +00:00
|
|
|
"@bazel/bazelisk": "^1.7.5",
|
2023-02-28 17:06:21 +00:00
|
|
|
"@bazel/buildozer": "^6.0.0",
|
2022-09-07 21:08:05 +00:00
|
|
|
"@bazel/ibazel": "^0.16.2",
|
2022-04-27 01:14:27 +00:00
|
|
|
"@bazel/jasmine": "^5.4.1",
|
2023-02-28 17:06:21 +00:00
|
|
|
"@bazel/runfiles": "5.8.1",
|
|
|
|
|
"@bazel/typescript": "5.8.1",
|
2023-10-10 18:06:11 +00:00
|
|
|
"@types/jasmine": "~5.1.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"@types/lunr": "^2.3.3",
|
2019-10-03 09:39:43 +00:00
|
|
|
"@types/node": "^12.7.9",
|
2021-07-07 20:06:17 +00:00
|
|
|
"@types/trusted-types": "^2.0.2",
|
2024-03-11 18:06:22 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.2.0",
|
|
|
|
|
"@typescript-eslint/parser": "7.2.0",
|
2024-03-15 18:07:11 +00:00
|
|
|
"archiver": "^7.0.0",
|
2021-04-22 11:16:46 +00:00
|
|
|
"assert": "^2.0.0",
|
2018-10-24 12:24:14 +00:00
|
|
|
"canonical-path": "1.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"chalk": "^4.1.0",
|
2018-01-25 10:13:30 +00:00
|
|
|
"cjson": "^0.5.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"cross-spawn": "^7.0.3",
|
2023-10-02 11:07:41 +00:00
|
|
|
"css-selector-parser": "^3.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"dgeni": "^0.4.14",
|
2022-09-20 05:04:01 +00:00
|
|
|
"dgeni-packages": "^0.30.0",
|
2022-04-02 06:18:01 +00:00
|
|
|
"entities": "^4.0.0",
|
2024-02-23 21:05:08 +00:00
|
|
|
"eslint": "8.57.0",
|
2024-01-18 17:05:48 +00:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2023-05-28 16:06:31 +00:00
|
|
|
"eslint-plugin-jasmine": "4.1.3",
|
2024-02-23 21:05:08 +00:00
|
|
|
"eslint-plugin-jsdoc": "48.2.0",
|
2023-05-28 16:06:31 +00:00
|
|
|
"eslint-plugin-prefer-arrow": "1.2.3",
|
2019-03-04 19:33:25 +00:00
|
|
|
"find-free-port": "^2.0.0",
|
2024-02-03 17:04:44 +00:00
|
|
|
"firebase-tools": "^13.0.0",
|
2022-12-06 21:34:51 +00:00
|
|
|
"fs-extra": "^11.0.0",
|
2023-06-04 14:06:30 +00:00
|
|
|
"get-port": "^7.0.0",
|
2023-11-11 06:06:12 +00:00
|
|
|
"globby": "^14.0.0",
|
2022-04-27 01:14:27 +00:00
|
|
|
"hast-util-has-property": "^1.0.4",
|
2021-04-05 09:57:24 +00:00
|
|
|
"hast-util-is-element": "^1.1.0",
|
|
|
|
|
"hast-util-to-string": "^1.0.4",
|
2017-04-01 18:32:48 +00:00
|
|
|
"html": "^1.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"ignore": "^5.1.8",
|
2021-04-15 07:22:10 +00:00
|
|
|
"image-size": "^1.0.0",
|
2023-09-19 11:28:53 +00:00
|
|
|
"jasmine": "~5.1.0",
|
2023-09-15 08:07:03 +00:00
|
|
|
"jasmine-core": "~5.1.0",
|
2021-04-14 07:35:12 +00:00
|
|
|
"jasmine-spec-reporter": "~7.0.0",
|
2024-02-06 20:04:43 +00:00
|
|
|
"jsdom": "^24.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"json-schema-traverse": "^1.0.0",
|
|
|
|
|
"json5": "^2.2.0",
|
2022-08-05 17:09:37 +00:00
|
|
|
"karma": "~6.4.0",
|
2023-04-25 05:05:55 +00:00
|
|
|
"karma-chrome-launcher": "~3.2.0",
|
2022-02-15 16:29:13 +00:00
|
|
|
"karma-coverage": "~2.2.0",
|
2022-08-05 17:09:37 +00:00
|
|
|
"karma-jasmine": "~5.1.0",
|
2023-06-12 09:05:38 +00:00
|
|
|
"karma-jasmine-html-reporter": "~2.1.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"light-server": "^2.9.1",
|
2024-03-15 17:06:02 +00:00
|
|
|
"lighthouse": "^11.0.0",
|
2023-07-18 00:09:18 +00:00
|
|
|
"lighthouse-logger": "^2.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"lodash": "^4.17.21",
|
|
|
|
|
"lunr": "^2.3.9",
|
2018-11-26 20:01:46 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-09-19 11:28:53 +00:00
|
|
|
"patch-package": "^7.0.0",
|
2020-11-18 10:36:06 +00:00
|
|
|
"protractor": "~7.0.0",
|
2024-03-15 16:06:23 +00:00
|
|
|
"puppeteer-core": "22.5.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"rehype-slug": "^4.0.1",
|
2021-04-28 13:23:42 +00:00
|
|
|
"remark": "^12.0.0",
|
|
|
|
|
"remark-html": "^13.0.0",
|
2023-04-12 01:34:44 +00:00
|
|
|
"rimraf": "^5.0.0",
|
2021-04-05 09:57:24 +00:00
|
|
|
"semver": "^7.3.5",
|
2022-01-12 18:39:24 +00:00
|
|
|
"shelljs": "^0.8.5",
|
2022-09-07 23:42:26 +00:00
|
|
|
"source-map-support": "0.5.21",
|
2021-04-24 08:18:01 +00:00
|
|
|
"stemmer": "^2.0.0",
|
2017-04-13 21:35:13 +00:00
|
|
|
"tree-kill": "^1.1.0",
|
2022-06-20 13:05:13 +00:00
|
|
|
"ts-node": "^10.8.1",
|
2022-04-26 14:06:16 +00:00
|
|
|
"tsec": "^0.2.2",
|
2023-05-28 16:06:31 +00:00
|
|
|
"tslint": "6.1.3",
|
2023-03-17 08:47:28 +00:00
|
|
|
"typescript": "~5.0.2",
|
2021-04-05 09:57:24 +00:00
|
|
|
"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",
|
2021-04-30 17:52:59 +00:00
|
|
|
"watchr": "^3.0.1",
|
2021-04-05 09:57:24 +00:00
|
|
|
"xregexp": "^5.0.2",
|
2021-05-04 06:39:44 +00:00
|
|
|
"yargs": "^17.0.0"
|
2017-01-25 11:04:30 +00:00
|
|
|
}
|
2022-11-23 02:40:39 +00:00
|
|
|
}
|