fix: playwright in dev mode in package.json

This commit is contained in:
ISA
2025-08-20 13:18:01 +02:00
parent 680c643ea5
commit 4161bfa948
5 changed files with 8 additions and 9 deletions

View File

@@ -24,4 +24,4 @@ NEXT_PUBLIC_USE_MOCKS=true
# z.B. http://10.10.0.13/xyz/index.aspx -> basePath in config.json auf /xyz setzen
# basePath wird jetzt in public/config.json gepflegt
# App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.1.323
NEXT_PUBLIC_APP_VERSION=1.1.324

View File

@@ -25,4 +25,4 @@ NEXT_PUBLIC_USE_MOCKS=false
# basePath wird jetzt in public/config.json gepflegt
# App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.1.323
NEXT_PUBLIC_APP_VERSION=1.1.324

Binary file not shown.

8
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "nodemap",
"version": "1.1.323",
"version": "1.1.324",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "nodemap",
"version": "1.1.323",
"version": "1.1.324",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
@@ -29,7 +29,6 @@
"next": "^14.2.5",
"nextjs-cors": "^2.2.0",
"overlapping-marker-spiderfier-leaflet": "^0.2.7",
"playwright": "^1.54.2",
"postcss": "^8.4.40",
"react": "^18.3.1",
"react-dom": "^18.3.1",
@@ -4482,6 +4481,7 @@
"version": "1.54.2",
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.54.2.tgz",
"integrity": "sha512-Hu/BMoA1NAdRUuulyvQC0pEqZ4vQbGfn8f7wPXcnqQmM+zct9UliKxsIkLNmz/ku7LElUNqmaiv1TG/aL5ACsw==",
"devOptional": true,
"dependencies": {
"playwright-core": "1.54.2"
},
@@ -4499,6 +4499,7 @@
"version": "1.54.2",
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.54.2.tgz",
"integrity": "sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA==",
"devOptional": true,
"bin": {
"playwright-core": "cli.js"
},
@@ -4510,6 +4511,7 @@
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
"dev": true,
"hasInstallScript": true,
"optional": true,
"os": [

View File

@@ -1,6 +1,6 @@
{
"name": "nodemap",
"version": "1.1.323",
"version": "1.1.324",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
@@ -23,7 +23,6 @@
"next": "^14.2.5",
"nextjs-cors": "^2.2.0",
"overlapping-marker-spiderfier-leaflet": "^0.2.7",
"playwright": "^1.54.2",
"postcss": "^8.4.40",
"react": "^18.3.1",
"react-dom": "^18.3.1",
@@ -45,8 +44,6 @@
"start": "cross-env NODE_ENV=production node server.js",
"export": "next export",
"test": "jest",
"cypress": "cypress open",
"cypress:run": "cypress run",
"prepare": "husky",
"bump-version": "node ./scripts/bumpVersion.js"
},