-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.62 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
{
"name": "flight-workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "ng serve -o",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"json-server": "json-server db.json -p 3000",
"copy:ce": "cpr dist/apps/external/main.js apps/dashboard/src/assets/external-dashboard-tile.bundle.js -o",
"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",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"run:all": "node node_modules/@angular-architects/module-federation/src/server/mf-dev-server.js"
},
"private": true,
"dependencies": {
"@angular/animations": "14.2.12",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.12",
"@angular/compiler": "14.2.12",
"@angular/core": "14.2.12",
"@angular/elements": "14.2.12",
"@angular/forms": "14.2.12",
"@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "14.2.12",
"@ngrx/component": "14.3.2",
"@ngrx/effects": "14.3.2",
"@ngrx/entity": "14.3.2",
"@ngrx/router-store": "14.3.2",
"@ngrx/store": "14.3.2",
"@ngrx/store-devtools": "14.3.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@nrwl/angular": "14.8.6",
"@nrwl/workspace": "14.8.6",
"@swimlane/ngx-charts": "^20.1.2",
"@webcomponents/webcomponentsjs": "^2.6.0",
"angular-oauth2-oidc": "^13.0.1",
"document-register-element": "^1.7.2",
"nx": "14.8.6",
"rxjs": "~6.6.7",
"tslib": "~2.3.1",
"zone.js": "0.11.6"
},
"devDependencies": {
"@angular-architects/ddd": "2.1.2",
"@angular-architects/module-federation": "^14.3.9",
"@angular-architects/module-federation-tools": "^14.3.9",
"@angular-devkit/build-angular": "14.2.10",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/template-parser": "14.4.0",
"@angular/cli": "14.2.10",
"@angular/compiler-cli": "14.2.12",
"@angular/language-service": "14.2.12",
"@ngrx/schematics": "14.3.2",
"@ngrx/store-devtools": "14.3.2",
"@nrwl/cli": "14.8.6",
"@nrwl/cypress": "14.8.6",
"@nrwl/eslint-plugin-nx": "14.8.6",
"@nrwl/jest": "14.8.6",
"@nrwl/linter": "14.8.6",
"@nrwl/nx-cloud": "14.7.0",
"@types/jest": "27.4.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"cypress": "^9.7.0",
"dotenv": "^10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"jest": "28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-preset-angular": "12.2.0",
"json-server": "^0.17.0",
"ng-packagr": "14.2.2",
"ngx-build-plus": "14.0.0",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"ts-node": "10.8.2",
"typescript": "4.7.4"
}
}