-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.82 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.82 KB
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
{
"name": "material-angular-io",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:jit": "ng serve --aot=false",
"start:prod": "ng serve --configuration production",
"start:scenes": "ng serve scenes",
"start:emulators": "firebase emulators:start",
"test": "ng test",
"e2e": "ng e2e",
"build": "ng build",
"build:scenes": "ng build scenes",
"build:sm": "ng build --configuration production --source-map",
"prod-build": "ng build --configuration production",
"publish-prod": "bash ./tools/deploy.sh stable prod",
"publish-dev": "bash ./tools/deploy.sh",
"publish-beta": "bash ./tools/deploy.sh stable beta",
"test:audit:localhost": "node tools/audit-docs dist/material-angular-io/browser",
"test:audit:bazel": "node tools/audit-docs $(bazel cquery --output=files //:build.production)",
"test:audit:ci": "node tools/audit-docs ../dist/material-angular-io/browser"
},
"engines": {
"node": "^20.11.1 || >=22.0.0",
"npm": "Please use pnpm instead of NPM to install dependencies"
},
"dependencies": {
"@angular/aria": "workspace:*",
"@angular/cdk": "workspace:*",
"@angular/cdk-experimental": "workspace:*",
"@angular/common": "catalog:",
"@angular/compiler": "catalog:",
"@angular/components-examples": "workspace:*",
"@angular/core": "catalog:",
"@angular/forms": "catalog:",
"@angular/google-maps": "workspace:*",
"@angular/localize": "catalog:",
"@angular/material": "workspace:*",
"@angular/material-experimental": "workspace:*",
"@angular/material-luxon-adapter": "workspace:*",
"@angular/platform-browser": "catalog:",
"@angular/platform-browser-dynamic": "catalog:",
"@angular/router": "catalog:",
"@angular/ssr": "catalog:",
"@angular/youtube-player": "workspace:*",
"@stackblitz/sdk": "^1.11.0",
"luxon": "^3.7.2",
"path-normalize": "^8.0.0",
"rxjs": "catalog:",
"tslib": "^2.3.0",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "catalog:",
"@angular/cli": "catalog:",
"@angular/compiler-cli": "catalog:",
"@bazel/bazelisk": "^1.12.1",
"@types/jasmine": "^6.0.0",
"@types/node": "^22.14.1",
"@types/shelljs": "0.10.0",
"firebase-tools": "15.15.0",
"jasmine-core": "^6.0.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "~2.2.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^5.0.0",
"light-server": "^2.9.1",
"lighthouse": "^13.0.0",
"lighthouse-logger": "~2.0.0",
"npm-run-all": "^4.1.5",
"protractor": "^7.0.0",
"puppeteer-core": "^24.6.1",
"sass": "1.99.0",
"shelljs": "^0.10.0",
"ts-node": "10.9.2",
"typescript": "6.0.2"
}
}