-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.57 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.57 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
{
"name": "printmaps-ui",
"license": "Apache License, Version 2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:de": "ng serve --configuration de",
"start:fr": "ng serve --configuration fr",
"build": "ng build --configuration production --localize",
"extract-i18n": "ng extract-i18n --output-path src/i18n --progress && xliffmerge",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.0.3",
"@angular/cdk": "^12.0.3",
"@angular/common": "^12.0.3",
"@angular/compiler": "^12.0.3",
"@angular/core": "^12.0.3",
"@angular/flex-layout": "^12.0.0-beta.34",
"@angular/forms": "^12.0.3",
"@angular/localize": "^12.0.3",
"@angular/material": "^12.0.3",
"@angular/platform-browser": "^12.0.3",
"@angular/platform-browser-dynamic": "^12.0.3",
"@angular/router": "^12.0.3",
"@lweller/leaflet-areaselect": "^1.3.0",
"@mapbox/leaflet-omnivore": "^0.3.4",
"@ngrx/effects": "^12.0.0",
"@ngrx/store": "^12.0.0",
"@ctrl/tinycolor": "^3.4.0",
"core-js": "^2.6.12",
"geographiclib": "^1.51.0",
"hoek": "^6.1.3",
"http-status-codes": "^2.1.4",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"ngx-color": "^7.2.0",
"ngx-material-file-input": "^2.1.1",
"moment": "^2.29.1",
"rxjs": "^6.6.7",
"subjectize": "^0.2.2",
"tslib": "^2.0.0",
"uuid": "^8.3.2",
"wellknown": "^0.5.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.3",
"@angular/cli": "~12.0.3",
"@angular/compiler-cli": "^12.0.3",
"@angular/language-service": "^12.0.3",
"@types/jasmine": "~3.7.0",
"@types/jasminewd2": "^2.0.9",
"@types/lodash": "^4.14.170",
"@types/node": "^12.11.1",
"angular-ide": "^0.9.77",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.7.1",
"jasmine-marbles": "^0.8.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"karma-junit-reporter": "^2.0.1",
"mocha": "^8.4.0",
"ngx-i18nsupport": "^0.17.1",
"querystringify": "~2.2.0",
"tar-fs": "~2.1.1",
"ts-node": "~8.2.0",
"tslint": "~6.1.0",
"typescript": "~4.2.4",
"ws": "~7.4.6"
},
"xliffmergeOptions": {
"srcDir": "src/i18n",
"genDir": "src/i18n",
"defaultLanguage": "en",
"languages": [
"de",
"fr"
]
}
}