-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.42 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@opensource/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "npx nx serve opensource",
"build": "nx build --configuration production",
"test": "nx test --coverage",
"test:watch": "nx test --watch",
"test:all": "nx run-many --target=test --coverage",
"test:affected": "npx nx affected --target=test --base=origin/main --parallel",
"lint": "nx lint",
"lint:affected": "npx nx affected --target=lint --fix --base=origin/main --parallel",
"lint:all": "nx run-many --target=lint --fix --parallel",
"format": "npx nx format",
"documentation": "npx compodoc -p tsconfig.doc.json --output docs",
"publish": "bash publish.sh",
"publish-js": "bash publish-js.sh"
},
"private": true,
"dependencies": {
"@angular/cdk": "22.0.4",
"@angular/common": "22.0.6",
"@angular/compiler": "22.0.6",
"@angular/core": "22.0.6",
"@angular/forms": "22.0.6",
"@angular/platform-browser": "22.0.6",
"@angular/platform-browser-dynamic": "22.0.6",
"@angular/router": "22.0.6",
"@ibenvandeveire/ngx-core": "22.1.0",
"@ibenvandeveire/types-authentication": "^1.0.0",
"@ngrx/effects": "21.0.1",
"@ngrx/entity": "21.0.1",
"@ngrx/signals": "21.0.1",
"@ngrx/store": "21.0.1",
"@ngx-translate/core": "17.0.0",
"date-fns": "^4.1.0",
"deepmerge-ts": "^7.1.5",
"lodash": "^4.17.21",
"marked": "^18.0.0",
"markerjs-live": "^1.2.1",
"markerjs2": "^2.32.4",
"obj-clean": "^3.0.1",
"rxjs": "~7.8.0",
"uuid": "^11.1.0",
"vanilla-cookieconsent": "^3.1.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/core": "22.0.6",
"@angular-devkit/schematics": "22.0.6",
"@angular/build": "22.0.6",
"@angular/cli": "22.0.6",
"@angular/compiler-cli": "22.0.6",
"@angular/language-service": "22.0.6",
"@compodoc/compodoc": "^1.1.26",
"@eslint/js": "^9.8.0",
"@hirez_io/observer-spy": "^2.2.0",
"@nx/angular": "23.1.0",
"@nx/esbuild": "23.1.0",
"@nx/eslint": "23.1.0",
"@nx/eslint-plugin": "23.1.0",
"@nx/jest": "23.1.0",
"@nx/js": "23.1.0",
"@nx/web": "23.1.0",
"@nx/workspace": "23.1.0",
"@schematics/angular": "22.0.6",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.23",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@typescript-eslint/utils": "8.64.0",
"angular-eslint": "22.1.0",
"autoprefixer": "^10.4.0",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.0.4",
"jest-environment-node": "^29.7.0",
"jest-preset-angular": "17.0.0",
"jest-util": "30.0.5",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "22.0.1",
"nx": "23.1.0",
"postcss": "^8.4.5",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"ts-jest": "29.4.9",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"verdaccio": "6.8.0"
},
"nx": {
"includedScripts": []
},
"overrides": {
"@ngrx/signals": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
},
"@ngrx/entity": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
},
"@ngrx/effects": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
},
"jest-preset-angular": {
"jest": "$jest"
},
"@ibenvandeveire/ngx-core": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
}
}
}