Switch to pnpm; update deps

This commit is contained in:
phil 2024-12-14 15:59:10 +01:00
parent 0156869212
commit 4f4aed2919
3 changed files with 11490 additions and 36 deletions

View file

@ -1,12 +1,12 @@
{ {
"name": "gisaf-app", "name": "gisaf-frontend",
"displayName": "Gisaf", "displayName": "Gisaf web front-end",
"version": "0.1.0", "version": "0.1.0",
"license": "GPL-3.0", "license": "GPL-3.0",
"description": "Gisaf Geomatics", "description": "Gisaf Geomatics",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://git.bluelightav.org:2222/gisaf.git" "url": "https://code.philo.ydns.eu/philorg/gisaf-frontend.git"
}, },
"author": "Philippe May", "author": "Philippe May",
"angular-cli": {}, "angular-cli": {},
@ -41,14 +41,14 @@
"@angular/router": "^17.3.5", "@angular/router": "^17.3.5",
"@mapbox/point-geometry": "^0.1.0", "@mapbox/point-geometry": "^0.1.0",
"@maplibre/ngx-maplibre-gl": "^17.4.3", "@maplibre/ngx-maplibre-gl": "^17.4.3",
"@turf/bbox": "^6.5.0", "@turf/bbox": "^7.1.0",
"@turf/distance": "^6.5.0", "@turf/distance": "^7.1.0",
"@turf/helpers": "^7.1.0",
"angular-plotly.js": "^5.2.2", "angular-plotly.js": "^5.2.2",
"maplibre-gl": "^4.1.3", "maplibre-gl": "^4.1.3",
"ngx-flexible-layout": "~17.0.4", "ngx-flexible-layout": "~17.0.4",
"plotly.js-basic-dist-min": "2.31.1", "plotly.js-basic-dist-min": "2.31.1",
"rxjs": "^7.8.1", "rxjs": "^7.8.1",
"subscriptions-transport-ws": "^0.9.17",
"ts-helpers": "^1.1.2", "ts-helpers": "^1.1.2",
"zone.js": "~0.14.4" "zone.js": "~0.14.4"
}, },
@ -64,6 +64,7 @@
"@types/node": "^20.12.7", "@types/node": "^20.12.7",
"@types/plotly.js-dist-min": "^2.3.4", "@types/plotly.js-dist-min": "^2.3.4",
"codelyzer": "^6.0.2", "codelyzer": "^6.0.2",
"eslint": "^9.17.0",
"fontnik": "^0.7.2", "fontnik": "^0.7.2",
"jasmine-core": "~5.1.2", "jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0", "jasmine-spec-reporter": "~7.0.0",
@ -72,11 +73,9 @@
"karma-cli": "^2.0.0", "karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3", "karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"protractor": "~7.0.0",
"source-map-explorer": "^2.5.3", "source-map-explorer": "^2.5.3",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"tslib": "^2.6.2", "tslib": "^2.6.2",
"tslint": "~6.1.0",
"typescript": "~5.4.5" "typescript": "~5.4.5"
} }
} }

11483
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,28 +0,0 @@
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome'
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
},
onPrepare() {
require('ts-node').register({
project: 'e2e/tsconfig.e2e.json'
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};