forked from angular/material.angular.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.2 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
{
"name": "material-angular-io",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"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",
"preinstall": "node ./tools/npm/check-npm.js",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"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:a11y": "node tools/audit-docs-a11y",
"test:audit:a11y:localhost": "run-p --race \"~~light-server -s dist/material-angular-io -p 4200 --quiet\" \"test:audit:a11y http://localhost:4200\" --",
"test:audit:a11y:ci": "run-p --race \"~~light-server -s ../dist/material-angular-io -p 4200 --quiet\" \"test:audit:a11y http://localhost:4200\" --",
"test:audit": "node tools/audit-docs",
"test:audit:localhost": "run-p --race \"start:static\" \"test:audit http://localhost:4200 2000\" --",
"test:audit:ci": "run-p --race \"~~light-server -s ../dist/material-angular-io -p 4200 --quiet\" \"test:audit http://localhost:4200\" --",
"~~light-server": "light-server --bind=localhost --historyindex=/index.html --no-reload"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.0.0-rc.1",
"@angular/cdk": "^12.0.0-rc.2",
"@angular/cdk-experimental": "^12.0.0-rc.2",
"@angular/common": "^12.0.0-rc.1",
"@angular/compiler": "^12.0.0-rc.1",
"@angular/components-examples": "angular/material2-docs-content#12.0.x",
"@angular/core": "^12.0.0-rc.1",
"@angular/forms": "^12.0.0-rc.1",
"@angular/google-maps": "^12.0.0-rc.2",
"@angular/material": "^12.0.0-rc.2",
"@angular/material-experimental": "^12.0.0-rc.2",
"@angular/material-moment-adapter": "^12.0.0-rc.2",
"@angular/platform-browser": "^12.0.0-rc.1",
"@angular/platform-browser-dynamic": "^12.0.0-rc.1",
"@angular/router": "^12.0.0-rc.1",
"@angular/youtube-player": "^12.0.0-rc.2",
"material-components-web": "12.0.0-canary.b52196498.0",
"moment": "^2.29.1",
"rxjs": "^6.6.7",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.0-rc.1",
"@angular-eslint/builder": "4.0.0",
"@angular-eslint/eslint-plugin": "4.0.0",
"@angular-eslint/eslint-plugin-template": "4.0.0",
"@angular-eslint/schematics": "4.0.0",
"@angular-eslint/template-parser": "4.0.0",
"@angular/cli": "^12.0.0-rc.1",
"@angular/compiler-cli": "^12.0.0-rc.1",
"@angular/localize": "^12.0.0-rc.1",
"@types/imagemin": "^7.0.0",
"@types/jasmine": "^3.6.6",
"@types/node": "^14.14.22",
"@types/shelljs": "~0.8.8",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"eslint": "^7.6.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"firebase-tools": "^9.9.0",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.2",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "^3.1.0",
"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": "~7.2.0",
"lighthouse-logger": "~1.2.0",
"npm-run-all": "^4.1.5",
"protractor": "^7.0.0",
"puppeteer": "~8.0.0",
"shelljs": "^0.8.4",
"ts-node": "^8.10.2",
"typescript": "~4.2.3"
}
}