-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.26 KB
/
package.json
File metadata and controls
93 lines (93 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
{
"name": "@giscience/dashboard",
"version": "1.9.0",
"license": "GPL-3.0-only",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:prod": "ng build --configuration=production && cp src/redirect-locale.html dist/index.html",
"build:test": "ng build --configuration=test && cp src/redirect-locale.html dist/index.html",
"build-idai": "ng build --configuration=idai && cp src/redirect-locale.html dist/index.html",
"test": "ng test",
"test:coverage": "ng test --code-coverage --watch=false",
"test-chrome": "ng test --browsers=Chrome",
"test-chromium": "ng test --browsers=Chromium",
"test-chromium-headless": "ng test --browsers=ChromiumHeadless --watch=false",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"extract-i18n": " ng extract-i18n --format json --output-path src/locale --out-file messages-source.en.json",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "^21.0.1",
"@angular/common": "^21.0.1",
"@angular/compiler": "^21.0.1",
"@angular/core": "^21.0.1",
"@angular/forms": "^21.0.1",
"@angular/localize": "~21.0.1",
"@angular/platform-browser": "^21.0.1",
"@angular/platform-browser-dynamic": "^21.0.1",
"@angular/router": "^21.0.1",
"@geoman-io/leaflet-geoman-free": "^2.17.0",
"@giscience/ohsome-js-utils": "^0.6.5",
"@turf/area": "7.3.1",
"@turf/bbox": "^7.3.1",
"@turf/bbox-polygon": "^7.3.1",
"@turf/boolean-point-in-polygon": "^7.3.1",
"@turf/centroid": "7.3.1",
"@turf/envelope": "7.3.1",
"@turf/helpers": "^7.3.1",
"@turf/invariant": "^7.3.1",
"@turf/mask": "7.3.1",
"@turf/meta": "^7.3.1",
"@turf/projection": "^7.3.1",
"@turf/truncate": "^7.3.1",
"@turf/union": "^7.3.1",
"chart.js": "^2.7.1",
"jquery": "^3.7.1",
"leaflet": "^1.9.4",
"moment": "^2.30.1",
"ngx-pipes": "^3.2.0",
"plotly.js-dist-min": "^2.35.3",
"prism-code-editor": "^3.4.0",
"prismjs": "^1.30.0",
"rxjs": "^7.8.2",
"semantic-ui-calendar": "^0.0.8",
"tabulator-tables": "^6.3.1",
"tslib": "^2.5.0",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "21.0.1",
"@angular-eslint/eslint-plugin": "21.0.1",
"@angular-eslint/eslint-plugin-template": "21.0.1",
"@angular-eslint/schematics": "21.0.1",
"@angular-eslint/template-parser": "21.0.1",
"@angular/build": "^21.0.1",
"@angular/cli": "^21.0.1",
"@angular/compiler-cli": "^21.0.1",
"@standard-schema/spec": "^1.0.0",
"@types/chart.js": "^2.9.39",
"@types/geojson": "7946.0.16",
"@types/jasmine": "~4.3.6",
"@types/leaflet": "^1.9.21",
"@types/node": "~18.14.1",
"@types/plotly.js-dist-min": "^2.3.4",
"@types/prismjs": "^1.26.5",
"@types/tabulator-tables": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@typescript-eslint/types": "^8.48.0",
"@typescript-eslint/utils": "^8.48.0",
"eslint": "^9.39.1",
"eslint-plugin-unused-imports": "^4.3.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ts-node": "~10.9.2",
"typescript": "~5.9.3"
}
}