-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.5 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
{
"name": "mfe",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "nx build-mfe main",
"dev": "nx serve-mfe main",
"lint": "run-p lint:*",
"lint:es": "eslint .",
"lint:ngc": "run-p lint:ngc:*",
"lint:ngc:main": "ngc --noEmit -p apps/main",
"lint:ngc:remote": "ngc --noEmit -p apps/remote",
"postbuild": "cp tools/redirect.html dist/apps/index.html",
"prepare": "ngcc -p es2015 && simple-git-hooks",
"start": "sirv dist/apps",
"test": "nx test",
"typecov": "type-coverage"
},
"dependencies": {
"@angular/animations": "^13.3.12",
"@angular/common": "^13.3.12",
"@angular/compiler": "^13.3.12",
"@angular/core": "^13.3.12",
"@angular/forms": "^13.3.12",
"@angular/platform-browser": "^13.3.12",
"@angular/platform-browser-dynamic": "^13.3.12",
"@angular/router": "^13.3.12",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"rxjs": "^7.5.7",
"tslib": "^2.4.1",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@1stg/app-config": "^4.1.3",
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "^13.3.11",
"@angular/cli": "^13.3.11",
"@angular/compiler-cli": "^13.3.12",
"@angular/language-service": "^13.3.12",
"@nrwl/angular": "^14.1.9",
"@nrwl/cli": "14.1.9",
"@nrwl/eslint-plugin-nx": "14.1.9",
"@nrwl/jest": "14.1.9",
"@nrwl/linter": "14.1.9",
"@nrwl/workspace": "^14.1.9",
"@types/jest": "27.5.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.34",
"jest": "28.1.3",
"jest-preset-angular": "12.2.6",
"nx": "14.1.9",
"sirv-cli": "^2.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"type-coverage": "^2.21.1",
"typescript": "^4.6.4"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"eslintIgnore": [
"/dist",
"/coverage"
],
"markuplint": {
"extends": "@1stg/markuplint-config/angular"
},
"prettier": "@1stg/prettier-config/angular",
"remarkConfig": {
"plugins": [
"@1stg/config"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"ignoreFiles": [
"**/*.d.ts"
],
"showRelativePath": true,
"strict": true,
"update": true
}
}