forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
190 lines (190 loc) · 8.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "components-srcs",
"description": "Material Design components for Angular",
"homepage": "https://github.com/angular/components",
"bugs": "https://github.com/angular/components/issues",
"repository": {
"type": "git",
"url": "https://github.com/angular/components.git"
},
"license": "MIT",
"engines": {
"yarn": "^1.22.17",
"npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/"
},
"scripts": {
"postinstall": "patch-package --patch-dir tools/postinstall/patches && node tools/postinstall/apply-patches.js",
"ng-dev": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only node_modules/@angular/ng-dev/bundles/cli.mjs",
"ng-dev:stamp": "yarn -s ng-dev release build-env-stamp --additional-stamping-script=tools/bazel-additional-stamp.mjs",
"build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-packages-dist-main.mts",
"build-docs-content": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-docs-content-main.mts",
"build-and-check-release-output": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/build-and-check-release-output.mts",
"dev-app": "ibazel run //src/dev-app:devserver",
"universal-app": "bazel run //src/universal-app:server",
"test": "node ./scripts/run-component-tests.js",
"test-local": "yarn -s test --local",
"test-firefox": "yarn -s test --firefox",
"test-tsec": "yarn bazelisk test //... --build_tag_filters=tsec --test_tag_filters=tsec",
"lint": "yarn -s tslint && yarn -s stylelint && yarn -s ownerslint && yarn -s ng-dev format changed --check",
"e2e": "bazel test //src/... --build_tag_filters=e2e --test_tag_filters=e2e --build_tests_only",
"deploy-dev-app": "node ./scripts/deploy-dev-app.js",
"breaking-changes": "ts-node --project scripts/tsconfig.json scripts/breaking-changes.ts",
"check-entry-point-setup": "node ./scripts/check-entry-point-setup.js",
"check-package-externals": "ts-node --project scripts/tsconfig.json scripts/check-package-externals.ts",
"format": "yarn -s ng-dev format changed",
"cherry-pick-patch": "ts-node --project tools/cherry-pick-patch/tsconfig.json tools/cherry-pick-patch/cherry-pick-patch.ts",
"ownerslint": "ts-node --project scripts/tsconfig.json scripts/ownerslint.ts",
"detect-component-id-collisions": "ts-node --project scripts/tsconfig.json scripts/detect-component-id-collisions.ts",
"tslint": "tslint -c tslint.json --project ./tsconfig.json",
"stylelint": "stylelint \"src/**/*.+(css|scss)\" --config .stylelintrc.json",
"resync-caretaker-app": "ts-node --project scripts/tsconfig.json scripts/caretaking/resync-caretaker-app-prs.ts",
"ts-circular-deps:check": "yarn -s ng-dev ts-circular-deps check --config ./src/circular-deps-test.conf.js",
"ts-circular-deps:approve": "yarn -s ng-dev ts-circular-deps approve --config ./src/circular-deps-test.conf.js",
"merge": "yarn -s ng-dev pr merge",
"approve-api": "node ./scripts/approve-api-golden.js",
"approve-size-tests": "node ./scripts/approve-size-golden.js",
"integration-tests": "bazel test --test_tag_filters=-linker-integration-test --build_tests_only -- //integration/... -//integration/size-test/...",
"integration-tests:size-test": "bazel test //integration/size-test/...",
"test-linker-aot": "bazel test --partial_compilation --test_tag_filters=partial-compilation-integration,-firefox --build_tests_only -- //integration/... //src/...",
"test-linker-jit": "bazel test --partial_compilation --test_tag_filters=partial-compilation-integration,-firefox --build_tests_only --//tools:force_partial_jit_compilation=True -- //integration/... //src/...",
"check-tooling-setup": "yarn tsc --project tools/tsconfig.json && yarn tsc --project scripts/tsconfig.json && yarn tsc --project .ng-dev/tsconfig.json",
"tsc": "node ./node_modules/typescript/bin/tsc",
"ci-push-deploy-docs-app": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/docs-deploy/deploy-ci-push.mts",
"ci-docs-monitor-test": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/docs-deploy/monitoring/ci-test.mts",
"ci-notify-slack-failure": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/circleci/notify-slack-job-failure.mts",
"prepare": "husky"
},
"version": "19.0.0-next.2",
"dependencies": {
"@angular/animations": "^19.0.0-next.2",
"@angular/common": "^19.0.0-next.2",
"@angular/compiler": "^19.0.0-next.2",
"@angular/core": "^19.0.0-next.2",
"@angular/forms": "^19.0.0-next.2",
"@angular/platform-browser": "^19.0.0-next.2",
"@types/google.maps": "^3.54.10",
"@types/youtube": "^0.0.50",
"rxjs": "^6.6.7",
"rxjs-tslint-rules": "^4.34.8",
"tslib": "^2.3.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0-next.2",
"@angular-devkit/core": "^19.0.0-next.2",
"@angular-devkit/schematics": "^19.0.0-next.2",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#9e6140d1eef8ddf7113d00738f603e9cc3c310f1",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#74e0e7b090c6e16056290836b2d936ca7820b86f",
"@angular/build": "^19.0.0-next.2",
"@angular/cli": "^19.0.0-next.2",
"@angular/compiler-cli": "^19.0.0-next.2",
"@angular/localize": "^19.0.0-next.2",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#36946be4df61f6549ae3829c026022e47674eae2",
"@angular/platform-browser-dynamic": "^19.0.0-next.2",
"@angular/platform-server": "^19.0.0-next.2",
"@angular/router": "^19.0.0-next.2",
"@babel/core": "^7.16.12",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/helper-string-parser": "^7.22.5",
"@bazel/bazelisk": "1.12.1",
"@bazel/buildifier": "6.1.2",
"@bazel/concatjs": "5.8.1",
"@bazel/esbuild": "5.8.1",
"@bazel/ibazel": "0.16.2",
"@bazel/jasmine": "5.8.1",
"@bazel/protractor": "5.8.1",
"@bazel/rollup": "5.8.1",
"@bazel/runfiles": "5.8.1",
"@bazel/terser": "5.8.1",
"@bazel/worker": "5.8.1",
"@firebase/app-types": "^0.7.0",
"@material/material-color-utilities": "^0.2.7",
"@octokit/rest": "18.3.5",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@schematics/angular": "^19.0.0-next.2",
"@types/babel__core": "^7.1.18",
"@types/browser-sync": "^2.26.3",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jasmine": "^4.0.0",
"@types/luxon": "^3.0.0",
"@types/marked": "^2.0.0",
"@types/node": "^16.10.9",
"@types/node-fetch": "^2.5.5",
"@types/selenium-webdriver": "^3.0.17",
"@types/semver": "^7.3.9",
"@types/send": "^0.17.1",
"@types/shelljs": "^0.8.11",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.8",
"autoprefixer": "^10.4.2",
"browser-sync": "2.26.13",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"date-fns": "^3.0.6",
"dgeni": "^0.4.14",
"dgeni-packages": "^0.29.5",
"esbuild": "^0.17.5",
"firebase-tools": "^9.2.1",
"fs-extra": "^9.0.1",
"glob": "^7.2.0",
"highlight.js": "^10.7.0",
"husky": "^9.0.1",
"inquirer": "^8.2.0",
"jasmine": "^4.1.0",
"jasmine-core": "^4.1.0",
"jsonc-parser": "^3.0.0",
"kagekiri": "^1.4.1",
"karma": "^6.3.12",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-parallel": "^0.3.1",
"karma-requirejs": "^1.1.0",
"karma-sauce-launcher": "^4.3.6",
"karma-sourcemap-loader": "^0.3.8",
"luxon": "^3.0.0",
"madge": "^4.0.0",
"marked": "^2.0.0",
"minimatch": "^3.0.4",
"moment": "^2.29.1",
"node-fetch": "^2.6.0",
"parse5": "^7.1.2",
"patch-package": "^6.5.1",
"postcss": "^8.4.17",
"postcss-scss": "^4.0.4",
"protractor": "^7.0.0",
"reflect-metadata": "^0.1.13",
"requirejs": "^2.3.6",
"rollup": "^2.66.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"sass": "^1.77.8",
"selenium-webdriver": "^3.6.0",
"semver": "^7.3.5",
"send": "^0.17.2",
"shelljs": "^0.8.5",
"stylelint": "^14.14.0",
"terser": "^5.10.0",
"ts-node": "^10.9.1",
"tsec": "0.2.2",
"tsickle": "0.39.1",
"tslint": "^6.1.3",
"tsutils": "^3.21.0",
"typescript": "5.6.1-rc",
"vrsource-tslint-rules": "6.0.0",
"yaml": "^1.10.2",
"yargs": "^17.3.1",
"zx": "^6.2.4"
},
"resolutions": {
"@angular/build-tooling/typescript": "5.6.1-rc",
"@angular/ng-dev/typescript": "5.6.1-rc",
"browser-sync-client": "2.26.13",
"dgeni-packages/typescript": "5.6.1-rc",
"**/https-proxy-agent": "5.0.0",
"string-width": "4.2.3",
"wrap-ansi": "7.0.0"
}
}