forked from angular/material.angular.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.19 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
{
"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",
"lint": "ng lint",
"test": "ng test",
"e2e": "ng e2e",
"build": "ng build",
"build:scenes": "ng build scenes",
"build:content": "yarn upgrade @angular/components-examples",
"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",
"scenes:generate": "ng e2e --port 4201 scenes && yarn scenes:optimize",
"scenes:optimize": "node tools/optimize-scene-screenshots",
"test:audit:localhost": "node tools/audit-docs dist/material-angular-io",
"test:audit:bazel": "node tools/audit-docs $(bazel cquery --output=files //:build.production)",
"test:audit:ci": "node tools/audit-docs ../dist/material-angular-io"
},
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"dependencies": {
"@angular/animations": "^19.0.0-next.10",
"@angular/cdk": "^19.0.0-next.9",
"@angular/cdk-experimental": "^19.0.0-next.9",
"@angular/common": "^19.0.0-next.10",
"@angular/compiler": "^19.0.0-next.10",
"@angular/components-examples": "https://github.com/angular/material2-docs-content.git#4334c0c112b4a55c7257a5837ac94f5464938764",
"@angular/core": "^19.0.0-next.10",
"@angular/forms": "^19.0.0-next.10",
"@angular/google-maps": "^19.0.0-next.9",
"@angular/localize": "^19.0.0-next.10",
"@angular/material": "^19.0.0-next.9",
"@angular/material-experimental": "^19.0.0-next.9",
"@angular/material-moment-adapter": "^19.0.0-next.9",
"@angular/platform-browser": "^19.0.0-next.10",
"@angular/platform-browser-dynamic": "^19.0.0-next.10",
"@angular/router": "^19.0.0-next.10",
"@angular/ssr": "^19.0.0-next.10",
"@angular/youtube-player": "^19.0.0-next.9",
"@stackblitz/sdk": "^1.5.2",
"moment": "^2.29.1",
"path-normalize": "^6.0.7",
"rxjs": "^7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1900.0-next.11",
"@angular-devkit/architect-cli": "^0.1900.0-next.11",
"@angular-devkit/build-angular": "^19.0.0-next.11",
"@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": "^19.0.0-next.11",
"@angular/compiler-cli": "^19.0.0-next.10",
"@bazel/bazelisk": "^1.12.1",
"@stylistic/eslint-plugin": "^2.6.2",
"@types/imagemin": "^7.0.0",
"@types/jasmine": "^3.7.7",
"@types/node": "^16.11.7",
"@types/shelljs": "~0.8.8",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.56.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"firebase-tools": "^11.0.1",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.2",
"jasmine-core": "^3.7.1",
"jasmine-spec-reporter": "^6.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"light-server": "^2.9.1",
"lighthouse": "~11.0.0",
"lighthouse-logger": "~1.2.0",
"npm-run-all": "^4.1.5",
"protractor": "^7.0.0",
"puppeteer": "~21.1.0",
"sass": "^1.70.0",
"shelljs": "^0.8.4",
"ts-node": "^8.10.2",
"typescript": "~5.5.2"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"esbuild": {
"built": true
},
"puppeteer": {
"built": true
},
"re2": {
"built": true
}
}
}