-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
97 lines (97 loc) · 2.91 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
{
"name": "@angular-component/router",
"version": "0.4.1",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"start": "ng serve",
"build": "ng build router --prod",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "ng test router",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "14.0.0-rc.2",
"@angular/cdk": "14.0.0-rc.1",
"@angular/common": "14.0.0-rc.2",
"@angular/compiler": "14.0.0-rc.2",
"@angular/core": "14.0.0-rc.2",
"@angular/forms": "14.0.0-rc.2",
"@angular/material": "14.0.0-rc.1",
"@angular/platform-browser": "14.0.0-rc.2",
"@angular/platform-browser-dynamic": "14.0.0-rc.2",
"@angular/router": "14.0.0-rc.2",
"@ngrx/effects": "14.0.0-beta.0",
"@ngrx/entity": "14.0.0-beta.0",
"@ngrx/router-store": "14.0.0-beta.0",
"@ngrx/store": "14.0.0-beta.0",
"@nrwl/angular": "14.1.9",
"angular-in-memory-web-api": "^0.13.0",
"rxjs": "^7.5.0",
"tslib": "^2.4.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.0-rc.2",
"@angular/cli": "14.0.0-rc.2",
"@angular/compiler-cli": "14.0.0-rc.2",
"@angular/language-service": "14.0.0-rc.2",
"@ngrx/store-devtools": "14.0.0-beta.0",
"@nrwl/cli": "14.1.9",
"@nrwl/cypress": "14.1.9",
"@nrwl/jest": "14.1.9",
"@nrwl/workspace": "14.1.9",
"@schematics/angular": "^13.2.4",
"@types/jest": "27.4.1",
"@types/node": "14.14.33",
"conventional-changelog": "^1.1.4",
"conventional-changelog-cli": "^1.3.21",
"cypress": "^9.1.0",
"dotenv": "10.0.0",
"eslint": "8.7.0",
"husky": ">=4",
"jest": "27.5.1",
"jest-preset-angular": "11.1.1",
"lint-staged": ">=10",
"ng-packagr": "14.0.0-rc.0",
"postcss": "^8.4.5",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.5.1",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.6.4",
"nx": "14.1.9"
},
"lint-staged": {
"*.{ts,json,md}": [
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}