-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.28 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.28 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
{
"name": "@opensource/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "npx nx serve opensource",
"build": "nx build --configuration production",
"test": "nx test --code-coverage",
"test:watch": "nx test --watch",
"test:all": "nx run-many --target=test --code-coverage",
"test:affected": "npx nx affected --target=test --fix --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"
},
"private": true,
"dependencies": {
"@angular/cdk": "21.0.6",
"@angular/common": "21.0.9",
"@angular/compiler": "21.0.9",
"@angular/core": "21.0.9",
"@angular/forms": "21.0.9",
"@angular/platform-browser": "21.0.9",
"@angular/platform-browser-dynamic": "21.0.9",
"@angular/router": "21.0.9",
"@ibenvandeveire/ngx-core": "21.0.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.0"
},
"devDependencies": {
"@angular-devkit/core": "21.0.6",
"@angular-devkit/schematics": "21.0.6",
"@angular/build": "21.0.6",
"@angular/cli": "21.0.6",
"@angular/compiler-cli": "21.0.9",
"@angular/language-service": "21.0.9",
"@compodoc/compodoc": "^1.1.26",
"@eslint/js": "^9.8.0",
"@hirez_io/observer-spy": "^2.2.0",
"@nx/angular": "22.3.3",
"@nx/esbuild": "22.3.3",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/web": "22.3.3",
"@nx/workspace": "22.3.3",
"@schematics/angular": "21.0.6",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@typescript-eslint/utils": "8.53.1",
"angular-eslint": "21.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.0.4",
"jest-environment-jsdom": "30.0.4",
"jest-environment-node": "^29.7.0",
"jest-preset-angular": "16.0.0",
"jest-util": "30.0.5",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "21.0.1",
"nx": "22.3.3",
"postcss": "^8.4.5",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"verdaccio": "^6.0.5"
},
"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"
}
}
}