-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.26 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
{
"name": "@jdw/source",
"version": "0.0.0",
"license": "MIT",
"packageManager": "pnpm@11.8.0",
"scripts": {
"prepare": "husky",
"commit": "cz"
},
"private": true,
"devDependencies": {
"@analogjs/vite-plugin-angular": "2.6.3",
"@analogjs/vitest-angular": "2.6.3",
"@angular-devkit/build-angular": "22.0.7",
"@angular-devkit/core": "22.0.7",
"@angular-devkit/schematics": "22.0.7",
"@angular-eslint/eslint-plugin": "22.1.0",
"@angular-eslint/eslint-plugin-template": "22.1.0",
"@angular-eslint/template-parser": "22.1.0",
"@angular/cdk": "22.0.5",
"@angular/cli": "22.0.7",
"@angular/compiler-cli": "22.0.7",
"@angular/language-service": "22.0.7",
"@angular/material": "22.0.5",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@eslint/js": "10.0.1",
"@module-federation/enhanced": "^2.1.0",
"@nx-go/nx-go": "^4.0.0",
"@nx-tools/container-metadata": "^7.0.0",
"@nx-tools/nx-container": "^7.0.0",
"@nx/angular": "23.1.0",
"@nx/devkit": "23.1.0",
"@nx/eslint": "23.1.0",
"@nx/eslint-plugin": "23.1.0",
"@nx/gradle": "23.1.0",
"@nx/js": "23.1.0",
"@nx/module-federation": "23.1.0",
"@nx/playwright": "23.1.0",
"@nx/vitest": "23.1.0",
"@nx/web": "23.1.0",
"@nx/webpack": "23.1.0",
"@nx/workspace": "23.1.0",
"@playwright/test": "^1.60.0",
"@schematics/angular": "22.0.7",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.18",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"@typescript-eslint/utils": "8.61.0",
"angular-eslint": "22.1.0",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"jsonc-eslint-parser": "^3.0.0",
"jwt-decode": "^4.0.0",
"lint-staged": "^17.0.5",
"ng-packagr": "22.0.1",
"ngx-cookie-service": "^22.0.0",
"nx": "23.1.0",
"postcss": "^8.5.25",
"postcss-url": "~10.1.3",
"prettier": "^3.4.2",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "^8.61.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.9",
"webpack": "5.108.4",
"webpack-cli": "^7.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,html,scss,json,md}": [
"prettier --write"
],
"*.{ts,html}": [
"eslint --fix"
]
},
"dependencies": {
"@angular/animations": "22.0.7",
"@angular/cdk": "22.0.5",
"@angular/common": "22.0.7",
"@angular/compiler": "22.0.7",
"@angular/core": "22.0.7",
"@angular/forms": "22.0.7",
"@angular/material": "22.0.5",
"@angular/material-moment-adapter": "22.0.5",
"@angular/platform-browser": "22.0.7",
"@angular/platform-browser-dynamic": "22.0.7",
"@angular/router": "22.0.7",
"@material/material-color-utilities": "0.3.0",
"ag-grid-angular": "^36.0.0",
"ag-grid-community": "^36.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "0.16.2"
}
}