-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "nx-angular-stencil-test",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "patch-package && ngcc --properties es2020 browser module main",
"start": "nx run core-components:build && concurrently npm:build:components:watch npm:serve:app",
"serve:app": "nx run angular-app:serve:development",
"build:components:watch": "nx run core-components:build --watch"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "~14.1.1",
"@angular-eslint/eslint-plugin": "~14.0.0",
"@angular-eslint/eslint-plugin-template": "~14.0.0",
"@angular-eslint/template-parser": "~14.0.0",
"@angular/cli": "~14.1.1",
"@angular/compiler-cli": "~14.1.1",
"@angular/language-service": "~14.1.1",
"@nrwl/angular": "^14.5.10",
"@nrwl/cli": "14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/storybook": "~14.5.10",
"@nrwl/workspace": "14.5.10",
"@nxext/stencil": "~14.0.6",
"@stencil/angular-output-target": "~0.4.0",
"@stencil/core": "2.17.1",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "~5.29.0",
"@typescript-eslint/parser": "~5.29.0",
"concurrently": "~7.3.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "27.5.1",
"jest-preset-angular": "~11.1.2",
"ng-packagr": "~14.1.0",
"nx": "14.5.10",
"patch-package": "~6.4.7",
"prettier": "~2.6.2",
"puppeteer": "~15.5.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "~4.7.2"
},
"workspaces": [
"packages/**"
],
"dependencies": {
"@angular/animations": "~14.1.1",
"@angular/common": "~14.1.1",
"@angular/compiler": "~14.1.1",
"@angular/core": "~14.1.1",
"@angular/forms": "~14.1.1",
"@angular/platform-browser": "~14.1.1",
"@angular/platform-browser-dynamic": "~14.1.1",
"@angular/router": "~14.1.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
}
}