-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.51 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.51 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
{
"name": "admin-app",
"version": "1.2.5",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "ng lint",
"sonar": "sonar-scanner",
"clean": "bash scripts/clean.sh",
"clean:force": "bash scripts/clean.sh --force",
"clean:build": "bash scripts/clean.sh --build-only"
},
"dependencies": {
"@ag-grid-community/angular": "31.0.0",
"@ag-grid-community/client-side-row-model": "31.0.0",
"@ag-grid-community/core": "31.0.0",
"@ag-grid-community/csv-export": "31.0.0",
"@ag-grid-community/infinite-row-model": "31.0.0",
"@ag-grid-community/styles": "31.0.0",
"@angular/animations": "^19.2.19",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.19",
"@angular/compiler": "^19.2.19",
"@angular/core": "^19.2.19",
"@angular/forms": "^19.2.19",
"@angular/material": "^19.2.19",
"@angular/platform-browser": "^19.2.19",
"@angular/platform-browser-dynamic": "^19.2.19",
"@angular/router": "^19.2.19",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"echarts": "^5.5.0",
"fast-xml-parser": "^5.2.5",
"jsonpath": "^1.1.1",
"ngx-cookie-service": "^19.1.2",
"ngx-echarts": "^19.0.0",
"rxjs": "^7.8.1",
"stacktrace-js": "^2.0.2",
"tslib": "^2.0.0",
"uri-templates": "^0.2.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/jest": "^19.0.1",
"@angular-devkit/build-angular": "^19.2.19",
"@angular-eslint/builder": "^19.8.1",
"@angular-eslint/eslint-plugin": "^19.8.1",
"@angular-eslint/eslint-plugin-template": "^19.8.1",
"@angular-eslint/template-parser": "^19.8.1",
"@angular/cli": "^19.2.19",
"@angular/compiler-cli": "^19.2.19",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/jsonpath": "^0.2.4",
"@types/uri-templates": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@typescript-eslint/utils": "^8.54.0",
"angular-eslint": "^19.8.1",
"babel-jest": "^29.7.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.3.0",
"typescript-eslint": "^8.18.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.6.2",
"sonar-scanner": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}