-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 6.34 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 6.34 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "hslayers-workspace",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prebuild": "node projects/hslayers/prebuild.js",
"build": "ng build hslayers --configuration production",
"prebuild-app-bs": "echo '⚠️ Building with Bootstrap and icons... ⚠️'",
"prebuild-cesium-app-bs": "echo '⚠️ Building with Bootstrap and icons... ⚠️'",
"prebuild-app": "echo '⚠️ Building for Wagtail eg. WITHOUT Bootstrap and icons... ⚠️'",
"prebuild-cesium-app": "echo '⚠️ Building for Wagtail eg. WITHOUT Bootstrap and icons... ⚠️'",
"build-app": "ng build hslayers-app --configuration wagtail",
"build-app-bs": "ng build hslayers-app --configuration bootstrap",
"build-cesium": "ng build hslayers-cesium --configuration production",
"build-cesium-app": "ng build hslayers-cesium-app --configuration wagtail",
"build-cesium-app-bs": "ng build hslayers-cesium-app --configuration production",
"build-decoupling-app": "ng build decoupling-test-app --configuration production",
"build-sensors": "ng build hslayers-sensors --configuration production",
"prebuild-watch": "node projects/hslayers/prebuild.js",
"postbuild": "npm run build-css && npm run build-css-colors && npm run build-css-wagtail",
"build-css": "npx sass --load-path=node_modules projects/hslayers/css/hslayers-ng.scss dist/hslayers/css/hslayers-ng.css",
"build-css-wagtail": "node projects/hslayers/css/hslayers-wagtail-css.js",
"build-css-colors": "npx sass --load-path=node_modules projects/hslayers/css/hslayers-colors.scss dist/hslayers/css/hslayers-ng-colors.css",
"start-test-app": "ng serve test-app --hmr",
"start-decoupling-test-app": "ng serve decoupling-test-app --hmr",
"start-cesium-test-app": "ng serve cesium-test-app --hmr",
"build-watch": "ng build hslayers --watch",
"find-circular": "npx madge --circular --extensions ts ./projects/hslayers/",
"test": "ng test hslayers --browsers=ChromeHeadless",
"test:ci": "ng test hslayers --browsers=ChromeHeadlessNoSandbox --watch=false",
"test-server": "cd ./projects/hslayers-server && npm test",
"lint": "eslint --ignore-path .gitignore --fix-dry-run ./",
"lint-stats": "eslint --ignore-path .gitignore --format node_modules/eslint-stats/byErrorAndWarning.js ./",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"doc-hs": "cd ./projects/hslayers && npx compodoc -c .compodocrc.json -t",
"doc-cesium": "cd ./projects/hslayers-cesium && npx compodoc -c .compodocrc.json -t",
"doc-sensors": "cd ./projects/hslayers-sensors && npx compodoc -c .compodocrc.json -t",
"doc": "npm run doc-hs && npm run doc-cesium && npm run doc-sensors && node scripts/gen-doc.js",
"generate-changelog": "standard-changelog",
"commit-log": "git log --pretty=format:\"+ %as %s (%H)\" c738091dd004550a4e2fb0e188d0baaf488a1020..aaad3ddad24cac4879b56a217b2e46f42391b4cd > changelog.md",
"deps-graph": "madge --exclude '.*(layer-extensions)\\.ts$' --dot projects/decoupling-test-app/src/hslayers-app/hslayers-app.module.ts > graph.gv",
"proxy": "cd ./projects/hslayers-server && node server.js -l",
"prepare-release": "cd ./scripts && bump-version.sh",
"subset-icons": "python projects/hslayers/css/icons/create-fa-icons.py"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.10",
"@angular/cdk": "^21.1.3",
"@angular/common": "^21.2.10",
"@angular/compiler": "^21.2.10",
"@angular/core": "^21.2.10",
"@angular/forms": "^21.2.10",
"@angular/localize": "^21.1.3",
"@angular/platform-browser": "^21.1.3",
"@angular/platform-browser-dynamic": "^21.1.3",
"@ng-bootstrap/ng-bootstrap": "^20.0.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"@popperjs/core": "^2.11.7",
"big.js": "^7.0.1",
"bootstrap": "^5.3.8",
"cesium": "^1.140.0",
"colormap": "^2.3.2",
"d3": "^7.9.0",
"dayjs": "^1.11.19",
"deepmerge": "^4.3.1",
"geostyler-legend": "^5.2.0",
"geostyler-openlayers-parser": "git+https://github.com/LESPROJEKT/geostyler-openlayers-parser.git#semver:v5.4.1-hsl",
"geostyler-qgis-parser": "^4.1.0",
"geostyler-sld-parser": "^8.4.0",
"geostyler-style": "^11.0.2",
"hammerjs": "^2.0.8",
"jszip": "^3.10.1",
"ngx-color": "^10.1.0",
"ngx-cookie-service": "^21.1.0",
"ol": "~10.8.0",
"ol-ext": "^4.0.36",
"ol-popup": "^4.0.0, ^5.0.0",
"papaparse": "^5.5.3",
"passport-oauth2-middleware": "^1.0.3",
"polygon-clipping": "^0.15.7",
"polygon-splitter": "^0.0.11",
"proj4": "^2.20.8",
"queue": "^7.0.0",
"resumablejs": "^1.1.0",
"rxjs": "^7.8.2",
"share-api-polyfill": "^1.1.1",
"tslib": "^2.8.1",
"vega": "6.2.0",
"vega-embed": "7.1.0",
"vega-lite": "~6.4.1",
"xml-js": "^1.6.11",
"zone.js": "~0.16.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^21.0.3",
"@angular-devkit/schematics": "^21.1.3",
"@angular/build": "^21.1.3",
"@angular/cli": "^21.2.8",
"@angular/compiler-cli": "^21.1.3",
"@compodoc/compodoc": "^1.2.1",
"@cypress/schematic": "^5.0.0",
"@eslint/compat": "^2.0.2",
"@fortawesome/fontawesome-free": "^7.1.0",
"@frsource/cypress-plugin-visual-regression-diff": "^3.2.14",
"@types/jasmine": "^5.1.13",
"@types/jasminewd2": "~2.0.12",
"angular-eslint": "^21.2.0",
"cypress": "^15.14.1",
"cypress-real-events": "^1.15.0",
"eslint": "^9.38.0",
"eslint-config-openlayers": "20.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-stats": "^1.0.1",
"globals": "^17.5.0",
"jasmine-core": "~5.12.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"ng-packagr": "^21.1.0",
"prettier": "^3.8.3",
"puppeteer": "^24.42.0",
"sass": "^1.94.2",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.59.1"
},
"browser": {
"timers": false,
"buffer": false,
"path-browserify": false,
"path": false,
"fs": false
}
}