-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
{
"name": "angularmaterialadminfull",
"description": "Angular-Material-Admin-Full",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:nobackend": "ng serve",
"start:backend": "ng serve --configuration backend",
"build": "ng build --configuration production",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"e2e": "playwright test -c e2e/playwright.config.cjs",
"e2e:headed": "playwright test -c e2e/playwright.config.cjs --headed",
"audit:prod": "npm audit --omit=dev",
"audit:full": "npm audit",
"hmr": "ng serve --configuration hmr"
},
"private": true,
"packageManager": "npm@10",
"engines": {
"node": "22.x",
"npm": ">=10"
},
"dependencies": {
"@angular/animations": "^21.2.0",
"@angular/cdk": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/google-maps": "^21.2.0",
"@angular/material": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.0",
"@angular/router": "^21.2.0",
"@danielmoncada/angular-datetime-picker": "^21.0.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"@fullcalendar/angular": "^6.1.20",
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@ng-select/ng-select": "^21.5.2",
"angular-calendar": "^0.32.0",
"angular-draggable-droppable": "^9.0.1",
"angular-resizable-element": "^8.0.1",
"date-fns": "^4.1.0",
"echarts": "^6.0.0",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"ngx-echarts": "^21.0.0",
"ngx-toastr": "^20.0.5",
"rxjs": "7.8.2",
"swiper": "^12.1.2",
"tslib": "^2.0.0",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.0",
"@angular-eslint/builder": "21.2.0",
"@angular-eslint/eslint-plugin": "21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/schematics": "21.2.0",
"@angular-eslint/template-parser": "21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@angular/language-service": "^21.2.0",
"@playwright/test": "^1.58.2",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "^16.1.1",
"ts-jest": "^29.4.6",
"typescript": "5.9.3"
}
}