-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.38 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.38 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
{
"name": "coding-camp-2025",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"build:staging": "ng build --configuration staging",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "npm run lint:fix && npm run lint:format",
"lint:fix": "ng lint --fix",
"lint:format": "prettier --write \"src/**/*.{ts,css,scss,html}\" --log-level warn",
"lint:ci": "ng lint --format json --output-file eslint-report.json",
"generate-icons": "node src/scripts/generate-maskable-icons.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.1.0",
"@angular/cdk": "^21.1.0",
"@angular/common": "^21.1.0",
"@angular/compiler": "^21.1.0",
"@angular/core": "^21.1.6",
"@angular/forms": "^21.1.0",
"@angular/material": "^21.1.0",
"@angular/platform-browser": "^21.1.0",
"@angular/platform-browser-dynamic": "^21.1.0",
"@angular/router": "^21.1.0",
"@angular/service-worker": "^21.1.0",
"@auth0/angular-jwt": "^5.2.0",
"@ng-icons/core": "^33.0.0",
"@ng-icons/heroicons": "^33.0.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"@swimlane/ngx-datatable": "^22.0.0",
"@types/leaflet": "^1.9.21",
"browser-image-compression": "^2.0.2",
"dompurify": "^3.3.1",
"leaflet": "^1.9.4",
"ngx-cookie-service": "^21.1.0",
"ngx-quill": "^30.0.1",
"quill": "^2.0.2",
"rxjs": "~7.8.2",
"surrealdb": "^1.3.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.1.0",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/jasmine": "^5.1.15",
"angular-eslint": "^21.1.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jasmine-core": "^6.0.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}