-
Notifications
You must be signed in to change notification settings - Fork 772
/
package.json
89 lines (89 loc) · 3.08 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
{
"name": "flex-layout-srcs",
"description": "Angular Flex Layout",
"version": "15.0.0-beta.42",
"homepage": "https://github.com/angular/flex-layout",
"bugs": "https://github.com/angular/flex-layout/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/angular/flex-layout.git"
},
"license": "MIT",
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build @angular/flex-layout",
"demo:serve": "ng serve demo-app",
"stamp": "ts-node tools/package-tools/version-placeholders.ts --module=commonjs",
"build:universal-demo-app": "ng run universal-demo-app:build:production && ng run universal-demo-app:server",
"serve:universal-demo-app": "ng run universal-demo-app:serve-ssr",
"test": "ng test @angular/flex-layout",
"test:ssr": "webpack --config test/webpack-spec-ssr-bundle.js && jasmine --config=test/jasmine-ssr.json",
"lint": "stylelint projects/libs/**/*.scss --config=stylelint-config.json && tslint --project ./tsconfig.json --config tslint.json",
"release": "yarn build && yarn stamp",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"private": true,
"requiredAngularVersion": ">=15.0.2",
"dependencies": {
"@angular/animations": "~15.0.2",
"@angular/common": "~15.0.2",
"@angular/compiler": "~15.0.2",
"@angular/core": "~15.0.2",
"@angular/forms": "~15.0.2",
"@angular/material": "~15.0.0",
"@angular/platform-browser": "~15.0.2",
"@angular/platform-browser-dynamic": "~15.0.2",
"@angular/platform-server": "~15.0.2",
"@angular/router": "~15.0.2",
"@nguniversal/builders": "~15.0.0",
"@nguniversal/express-engine": "~15.0.0",
"express": "^4.17.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.0.1",
"@angular/cdk": "~15.0.1",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "~15.0.2",
"@ngtools/webpack": "~15.0.1",
"@nguniversal/builders": "~15.0.0",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.10.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^14.18.21",
"conventional-changelog-cli": "^2.1.1",
"jasmine-core": "~3.10.0",
"karma": "~6.4.0",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"karma-parallel": "^0.3.1",
"karma-sauce-launcher": "^2.0.2",
"minimatch": "^3.0.4",
"ng-packagr": "~15.0.1",
"postcss": "^8.3.3",
"postcss-scss": "^4.0.2",
"protractor": "^7.0.0",
"stylelint": "^14.1.0",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "~4.8.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"browser-sync-client": "2.26.13",
"**/https-proxy-agent": "5.0.0"
}
}