diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 193a29306..7e1f539b8 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -85,7 +85,7 @@ module.exports = { '**/jest.d.ts', '**/test/**', '**/tests/**', - '**/vite.config.ts', + '**/vite.config.mts', '**/scripts/**/*.ts', ], }, diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23741fc58..496b9415e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: jobs: main: name: Nx Cloud - Main Job - uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.13.0 + uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.14.0 secrets: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} with: @@ -29,7 +29,7 @@ jobs: agents: name: Nx Cloud - Agents - uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.13.0 + uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.14.0 secrets: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} with: diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 45db4e6be..dd0484304 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -8,7 +8,7 @@ on: jobs: main: name: Nx Cloud - Cron Job - uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.13.0 + uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.14.0 secrets: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} with: @@ -21,7 +21,7 @@ jobs: agents: name: Nx Cloud - Agents - uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.13.0 + uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.14.0 secrets: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b9ee1c47f..9ce0b074f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,19 +18,19 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master fetch-depth: 0 token: ${{ secrets.BCLABUM_GITHUB_TOKEN }} - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - name: Install node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.10.0 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/release-beta.yml b/.github/workflows/release-beta.yml index 36b7409dc..47cf12aac 100644 --- a/.github/workflows/release-beta.yml +++ b/.github/workflows/release-beta.yml @@ -21,19 +21,19 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: develop fetch-depth: 0 token: ${{ secrets.BCLABUM_GITHUB_TOKEN }} - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - name: Install node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.10.0 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 1e9e18561..f4acdba67 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -14,17 +14,17 @@ jobs: name: SonarCloud snap runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: nrwl/nx-set-shas@v3 with: main-branch-name: 'develop' - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 20.10.0 cache: pnpm @@ -49,17 +49,17 @@ jobs: name: SonarCloud datamanager runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: nrwl/nx-set-shas@v3 with: main-branch-name: 'develop' - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 20.10.0 cache: pnpm @@ -84,7 +84,7 @@ jobs: name: SonarCloud connector runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Scan connector @@ -102,7 +102,7 @@ jobs: name: SonarCloud dapp runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Scan dapp @@ -120,7 +120,7 @@ jobs: name: SonarCloud docs runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Scan docs @@ -138,17 +138,17 @@ jobs: name: SonarCloud did-provider-key runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: nrwl/nx-set-shas@v3 with: main-branch-name: 'develop' - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 20.10.0 cache: pnpm diff --git a/.github/workflows/sync_beta.yml b/.github/workflows/sync_beta.yml index a5e0b01cd..725098c36 100644 --- a/.github/workflows/sync_beta.yml +++ b/.github/workflows/sync_beta.yml @@ -9,7 +9,7 @@ jobs: sync: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: develop diff --git a/.github/workflows/sync_fork.yml b/.github/workflows/sync_fork.yml index fd33570e0..25a2b5b5b 100644 --- a/.github/workflows/sync_fork.yml +++ b/.github/workflows/sync_fork.yml @@ -15,7 +15,7 @@ jobs: sync: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event_name == 'workflow_run' && 'beta' || github.head_ref || github.ref_name }} diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 6e50dd6e0..f45bff372 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -37,18 +37,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: master - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8.11.0 - name: Install node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.10.0 registry-url: https://registry.npmjs.org/ diff --git a/libs/did-provider-ebsi/package.json b/libs/did-provider-ebsi/package.json index 9d9917575..6e57b717e 100644 --- a/libs/did-provider-ebsi/package.json +++ b/libs/did-provider-ebsi/package.json @@ -39,20 +39,20 @@ "@cef-ebsi/key-did-resolver": "^1.1.0", "@cef-ebsi/siop-auth": "^3.2.0", "@cef-ebsi/verifiable-presentation": "^5.4.1", - "@veramo/core": "5.6.0", - "@veramo/did-manager": "5.6.0", - "@veramo/utils": "5.6.0", + "@veramo/core": "5.6.1-next.57", + "@veramo/did-manager": "5.6.1-next.57", + "@veramo/utils": "5.6.1-next.57", "did-resolver": "4.1.0", "elliptic": "^6.5.4", "ethers": "^5.7.0", - "jose": "^4.15.4", + "jose": "^5.2.2", "multiformats": "^12.1.3", "uuid": "^9.0.1" }, "devDependencies": { - "@types/elliptic": "^6.4.16", - "@types/uuid": "^9.0.6", - "tsup": "^7.2.0" + "@types/elliptic": "^6.4.18", + "@types/uuid": "^9.0.8", + "tsup": "^8.0.2" }, "publishConfig": { "access": "public" diff --git a/libs/did-provider-key/package.json b/libs/did-provider-key/package.json index 6a93f6d8f..d388eb728 100644 --- a/libs/did-provider-key/package.json +++ b/libs/did-provider-key/package.json @@ -38,28 +38,28 @@ }, "dependencies": { "@blockchain-lab-um/utils": "1.3.7", - "@cef-ebsi/key-did-resolver": "^1.1.0", + "@cef-ebsi/key-did-resolver": "^2.0.0", "@stablelib/ed25519": "^1.0.3", - "@veramo/core": "5.6.0", - "@veramo/did-manager": "5.6.0", + "@veramo/core": "5.6.1-next.57", + "@veramo/did-manager": "5.6.1-next.57", "did-resolver": "4.1.0" }, "devDependencies": { - "@veramo/core-types": "5.6.0", - "@veramo/credential-w3c": "5.6.0", - "@veramo/data-store": "5.6.0", - "@veramo/did-resolver": "5.6.0", - "@veramo/key-manager": "5.6.0", - "@veramo/kms-local": "5.6.0", - "@vitest/coverage-v8": "1.0.0-beta.3", - "better-sqlite3": "^9.0.0", + "@veramo/core-types": "5.6.1-next.57", + "@veramo/credential-w3c": "5.6.1-next.57", + "@veramo/data-store": "5.6.1-next.57", + "@veramo/did-resolver": "5.6.1-next.57", + "@veramo/key-manager": "5.6.1-next.57", + "@veramo/kms-local": "5.6.1-next.57", + "@vitest/coverage-v8": "1.3.1", + "better-sqlite3": "^9.4.3", "jest-extended": "4.0.2", - "multiformats": "^12.1.3", - "tsup": "^7.2.0", - "typeorm": "^0.3.17", - "vite": "^4.5.0", - "vite-tsconfig-paths": "^4.2.1", - "vitest": "1.0.0-beta.3" + "multiformats": "^13.1.0", + "tsup": "^8.0.2", + "typeorm": "^0.3.20", + "vite": "^5.1.5", + "vite-tsconfig-paths": "^4.3.1", + "vitest": "1.3.1" }, "publishConfig": { "access": "public" diff --git a/libs/did-provider-key/vite.config.ts b/libs/did-provider-key/vite.config.mts similarity index 97% rename from libs/did-provider-key/vite.config.ts rename to libs/did-provider-key/vite.config.mts index 42bd0a9d1..1d4b5128a 100644 --- a/libs/did-provider-key/vite.config.ts +++ b/libs/did-provider-key/vite.config.mts @@ -1,4 +1,3 @@ -// vite.config.ts import tsconfigPaths from 'vite-tsconfig-paths'; import { defineConfig } from 'vitest/config'; diff --git a/libs/extended-verification/vite.config.ts b/libs/extended-verification/vite.config.mts similarity index 97% rename from libs/extended-verification/vite.config.ts rename to libs/extended-verification/vite.config.mts index 3e7d99b79..15237a065 100644 --- a/libs/extended-verification/vite.config.ts +++ b/libs/extended-verification/vite.config.mts @@ -1,4 +1,3 @@ -// vite.config.ts import tsconfigPaths from 'vite-tsconfig-paths'; import { defineConfig } from 'vitest/config'; diff --git a/libs/oidc/client-plugin/package.json b/libs/oidc/client-plugin/package.json index f46e5e91f..99fbbd1a8 100644 --- a/libs/oidc/client-plugin/package.json +++ b/libs/oidc/client-plugin/package.json @@ -31,22 +31,22 @@ "@blockchain-lab-um/oidc-types": "0.0.8", "@blockchain-lab-um/utils": "1.3.7", "@sphereon/pex": "^2.0.1", - "@veramo/core": "5.6.0", - "@veramo/utils": "5.6.0", + "@veramo/core": "5.6.1-next.57", + "@veramo/utils": "5.6.1-next.57", "cross-fetch": "^4.0.0", - "ethereum-cryptography": "^2.1.2", - "jose": "^4.15.4", + "ethereum-cryptography": "^2.1.3", + "jose": "^5.2.2", "qs": "^6.11.2" }, "devDependencies": { "@sphereon/ssi-types": "^0.11.0", - "@types/qs": "^6.9.9", - "@vitest/coverage-v8": "1.0.0-beta.3", + "@types/qs": "^6.9.12", + "@vitest/coverage-v8": "1.3.1", "jest-extended": "4.0.2", - "tsup": "^7.2.0", - "vite": "^4.5.0", - "vite-tsconfig-paths": "^4.2.1", - "vitest": "1.0.0-beta.3" + "tsup": "^8.0.2", + "vite": "^5.1.5", + "vite-tsconfig-paths": "^4.3.1", + "vitest": "1.3.1" }, "veramo": { "pluginInterfaces": { diff --git a/libs/oidc/client-plugin/vite.config.ts b/libs/oidc/client-plugin/vite.config.mts similarity index 97% rename from libs/oidc/client-plugin/vite.config.ts rename to libs/oidc/client-plugin/vite.config.mts index 020a034a6..f7e8d74b5 100644 --- a/libs/oidc/client-plugin/vite.config.ts +++ b/libs/oidc/client-plugin/vite.config.mts @@ -1,4 +1,3 @@ -// vite.config.ts import tsconfigPaths from 'vite-tsconfig-paths'; import { defineConfig } from 'vitest/config'; diff --git a/libs/oidc/types/package.json b/libs/oidc/types/package.json index 1a5347f50..7a23417a2 100644 --- a/libs/oidc/types/package.json +++ b/libs/oidc/types/package.json @@ -35,10 +35,10 @@ "lint:prettier": "prettier . --check" }, "dependencies": { - "@veramo/core": "5.6.0" + "@veramo/core": "5.6.1-next.57" }, "devDependencies": { - "tsup": "^7.2.0" + "tsup": "^8.0.2" }, "publishConfig": { "access": "public" diff --git a/libs/utils/package.json b/libs/utils/package.json index 90c86dcd9..5906b58e6 100644 --- a/libs/utils/package.json +++ b/libs/utils/package.json @@ -35,16 +35,16 @@ "lint:prettier": "prettier . --check" }, "dependencies": { - "@veramo/utils": "5.6.0", + "@veramo/utils": "5.6.1-next.57", "did-resolver": "4.1.0", - "elliptic": "^6.5.4", - "multiformats": "12.1.3", + "elliptic": "^6.5.5", + "multiformats": "13.1.0", "secp256k1": "5.0.0" }, "devDependencies": { - "@types/elliptic": "^6.4.16", - "@types/secp256k1": "^4.0.5", - "tsup": "^7.2.0" + "@types/elliptic": "^6.4.18", + "@types/secp256k1": "^4.0.6", + "tsup": "^8.0.2" }, "publishConfig": { "access": "public" diff --git a/package.json b/package.json index afb5ca049..f392d4168 100644 --- a/package.json +++ b/package.json @@ -42,43 +42,43 @@ "test:cron": "cross-env CRON=true pnpm nx run-many --target=test:cron" }, "dependencies": { - "@changesets/cli": "2.26.2" + "@changesets/cli": "2.27.1" }, "devDependencies": { - "@changesets/changelog-github": "0.4.8", - "@commitlint/cli": "^18.2.0", - "@commitlint/config-conventional": "^18.1.0", + "@changesets/changelog-github": "0.5.0", + "@commitlint/cli": "^19.0.3", + "@commitlint/config-conventional": "^19.0.3", "@ianvs/prettier-plugin-sort-imports": "^4.1.1", - "@nx/devkit": "17.0.2", - "@nx/jest": "17.0.2", - "@types/eslint": "^8.44.6", - "@types/jest": "^29.5.6", - "@types/node": "^18.18.6", - "@typescript-eslint/eslint-plugin": "^6.9.0", - "@typescript-eslint/parser": "^6.9.0", + "@nx/devkit": "18.0.7", + "@nx/jest": "18.0.7", + "@types/eslint": "^8.56.5", + "@types/jest": "^29.5.12", + "@types/node": "^20.11.24", + "@typescript-eslint/eslint-plugin": "^7.1.1", + "@typescript-eslint/parser": "^7.1.1", "concurrently": "^8.2.2", "cross-env": "^7.0.3", - "eslint": "^8.52.0", + "eslint": "^8.57.0", "eslint-config-airbnb-base": "^15.0.0", - "eslint-config-airbnb-typescript": "17.1.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-jest": "^27.4.3", + "eslint-config-airbnb-typescript": "18.0.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jest": "^27.9.0", "eslint-plugin-jest-extended": "^2.0.0", - "eslint-plugin-unused-imports": "^3.0.0", + "eslint-plugin-unused-imports": "^3.1.0", "execa": "^8.0.1", - "husky": "^8.0.3", + "husky": "^9.0.11", "is-ci": "^3.0.1", "jest-extended": "^4.0.2", - "lint-staged": "^15.0.2", - "nx": "17.0.2", - "nx-cloud": "^16.5.2", - "prettier": "^3.0.3", - "prettier-plugin-packagejson": "^2.4.6", - "prettier-plugin-tailwindcss": "^0.5.6", + "lint-staged": "^15.2.2", + "nx": "18.0.7", + "nx-cloud": "^18.0.0", + "prettier": "^3.2.5", + "prettier-plugin-packagejson": "^2.4.12", + "prettier-plugin-tailwindcss": "^0.5.11", "rimraf": "^5.0.5", - "ts-node": "^10.9.1", - "typescript": "^5.2.2" + "ts-node": "^10.9.2", + "typescript": "^5.3.3" }, "packageManager": "pnpm@8.11.0", "engines": { @@ -95,8 +95,8 @@ "cross-fetch@3.1.8": "patches/cross-fetch@3.1.8.patch", "cross-fetch@4.0.0": "patches/cross-fetch@4.0.0.patch", "@ceramicnetwork/common@2.30.0": "patches/@ceramicnetwork__common@2.30.0.patch", - "@changesets/assemble-release-plan@5.2.4": "patches/@changesets__assemble-release-plan@5.2.4.patch", - "@metamask/snaps-sdk@1.2.0": "patches/@metamask__snaps-sdk@1.2.0.patch" + "@metamask/snaps-sdk@1.2.0": "patches/@metamask__snaps-sdk@1.2.0.patch", + "@changesets/assemble-release-plan@6.0.0": "patches/@changesets__assemble-release-plan@6.0.0.patch" }, "allowNonAppliedPatches": true } diff --git a/packages/connector/package.json b/packages/connector/package.json index 47d04a06d..87bf0588c 100644 --- a/packages/connector/package.json +++ b/packages/connector/package.json @@ -45,15 +45,15 @@ "@blockchain-lab-um/masca-types": "1.3.0", "@blockchain-lab-um/utils": "1.3.7", "@didtools/pkh-ethereum": "0.4.0", - "@veramo/core": "5.6.0", + "@veramo/core": "5.6.1-next.57", "did-session": "2.0.1", "eip-712-types-generation": "^0.1.6", "mipd": "^0.0.5", - "viem": "^2.5.0" + "viem": "^2.7.20" }, "devDependencies": { - "esbuild-loader": "^4.0.2", - "tsup": "^7.2.0", + "esbuild-loader": "^4.0.3", + "tsup": "^8.0.2", "webpack-cli": "^5.1.4" }, "publishConfig": { diff --git a/packages/dapp/.lintstagedrc.cjs b/packages/dapp/.lintstagedrc.cjs index cd5d84f4b..1dd3fc6e1 100644 --- a/packages/dapp/.lintstagedrc.cjs +++ b/packages/dapp/.lintstagedrc.cjs @@ -9,5 +9,4 @@ module.exports = { '*.{js,jsx,ts,tsx}': [buildEslintCommand], '*.{md,json,yml,yaml}': ['prettier --write'], '*.{ts,tsx}': () => 'tsc -p tsconfig.json --noEmit --incremental false', - '*.{css,scss}': ['stylelint --fix'], }; diff --git a/packages/dapp/.stylelintignore b/packages/dapp/.stylelintignore deleted file mode 100644 index 65eb68dd1..000000000 --- a/packages/dapp/.stylelintignore +++ /dev/null @@ -1,3 +0,0 @@ -.next -node_modules -out diff --git a/packages/dapp/.stylelintrc.json b/packages/dapp/.stylelintrc.json deleted file mode 100644 index bc5860dc9..000000000 --- a/packages/dapp/.stylelintrc.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "extends": [ - "stylelint-config-standard-scss", - "stylelint-config-prettier-scss", - "stylelint-config-css-modules" - ], - "rules": { - "at-rule-no-unknown": null, - "scss/at-rule-no-unknown": [ - true, - { - "ignoreAtRules": [ - "apply", - "layer", - "responsive", - "screen", - "tailwind", - "variants" - ] - } - ], - "declaration-block-trailing-semicolon": null, - "no-descending-specificity": null - } -} diff --git a/packages/dapp/next.config.js b/packages/dapp/next.config.js index d6ab18724..8385625d8 100644 --- a/packages/dapp/next.config.js +++ b/packages/dapp/next.config.js @@ -1,4 +1,3 @@ -const StylelintPlugin = require('stylelint-webpack-plugin'); const path = require('path'); const withNextIntl = require('next-intl/plugin')(); @@ -33,7 +32,6 @@ const nextConfig = { hostname: '**', }, ], - domains: ['localhost'], loader: 'default', }, optimizeFonts: true, @@ -107,7 +105,6 @@ const nextConfig = { }, webpack: (config) => { - config.plugins.push(new StylelintPlugin()); config.module.rules.push({ test: /\.svg$/, use: ['@svgr/webpack'], diff --git a/packages/dapp/package.json b/packages/dapp/package.json index 38930e57b..d17a43795 100644 --- a/packages/dapp/package.json +++ b/packages/dapp/package.json @@ -11,11 +11,10 @@ "dev": "cross-env next dev", "dev:local": "cross-env USE_LOCAL='true' next dev", "docker:build": "docker build . -t blockchain-lab-um/dapp:latest", - "lint": "pnpm lint:next && pnpm lint:tsc && pnpm lint:prettier && pnpm lint:stylelint", + "lint": "pnpm lint:next && pnpm lint:tsc && pnpm lint:prettier", "lint:fix": "next lint . --fix && prettier . --write", "lint:next": "next lint", "lint:prettier": "prettier . --check", - "lint:stylelint": "stylelint \"src/**/*.{css,scss}\"", "lint:tsc": "tsc -p tsconfig.json --noEmit --incremental false", "start": "next start", "supabase:generate": "supabase gen types typescript --project-id vfxyvzkprpeegheyapzg --schema public > src/utils/supabase/database.types.ts" @@ -24,47 +23,47 @@ "@blockchain-lab-um/did-provider-key": "1.0.8-beta.0", "@blockchain-lab-um/masca-connector": "1.3.0", "@blockchain-lab-um/oidc-types": "0.0.8", - "@headlessui/react": "^1.7.17", - "@heroicons/react": "^2.0.18", - "@nextui-org/react": "^2.2.9", + "@headlessui/react": "^1.7.18", + "@heroicons/react": "^2.1.1", + "@nextui-org/react": "^2.2.10", "@radix-ui/react-toast": "^1.1.5", - "@react-oauth/google": "^0.11.1", - "@supabase/supabase-js": "^2.38.5", - "@tanstack/react-query": "^5.17.15", - "@tanstack/react-table": "^8.10.7", + "@react-oauth/google": "^0.12.1", + "@supabase/supabase-js": "^2.39.7", + "@tanstack/react-query": "^5.25.0", + "@tanstack/react-table": "^8.13.2", "@types/dompurify": "^3.0.5", "@types/js-cookie": "^3.0.6", "@types/jsdom": "^21.1.6", - "@veramo/core": "5.6.0", - "@veramo/credential-eip712": "5.6.0", - "@veramo/credential-w3c": "5.6.0", - "@veramo/did-provider-ethr": "5.6.0", - "@veramo/did-provider-pkh": "5.6.0", - "@veramo/did-resolver": "5.6.0", - "@veramo/utils": "5.6.0", - "@vercel/analytics": "^1.1.1", - "@vercel/og": "^0.5.20", - "clsx": "^2.0.0", - "date-fns": "^2.30.0", + "@veramo/core": "5.6.1-next.57", + "@veramo/credential-eip712": "5.6.1-next.57", + "@veramo/credential-w3c": "5.6.1-next.57", + "@veramo/did-provider-ethr": "5.6.1-next.57", + "@veramo/did-provider-pkh": "5.6.1-next.57", + "@veramo/did-resolver": "5.6.1-next.57", + "@veramo/utils": "5.6.1-next.57", + "@vercel/analytics": "^1.2.2", + "@vercel/og": "^0.6.2", + "clsx": "^2.1.0", + "date-fns": "^3.3.1", "did-jwt-vc": "^3.2.13", "did-resolver": "4.1.0", "dompurify": "^3.0.9", "encoding": "^0.1.13", "ens-did-resolver": "^1.0.4", - "ethers": "^6.9.0", - "ethr-did-resolver": "10.1.3", + "ethers": "6.11.1", + "ethr-did-resolver": "10.1.5", "file-saver": "^2.0.5", - "framer-motion": "^10.16.5", - "googleapis": "^128.0.0", - "headless-stepper": "^1.9.1", + "framer-motion": "^11.0.8", + "googleapis": "^133.0.0", + "headless-stepper": "^1.10.0", "html5-qrcode": "^2.3.8", "js-cookie": "^3.0.5", "jsdom": "^24.0.0", "jsonwebtoken": "^9.0.2", - "luxon": "^3.4.3", - "marked": "^12.0.0", - "next": "13.5.6", - "next-intl": "3.4.0", + "luxon": "^3.4.4", + "marked": "^12.0.1", + "next": "14.1.2", + "next-intl": "3.9.2", "next-sitemap": "^4.2.3", "next-themes": "^0.2.1", "pino-pretty": "^10.3.1", @@ -72,35 +71,28 @@ "qs": "^6.11.2", "react": "18.2.0", "react-dom": "18.2.0", - "react-share": "^5.0.3", - "sharp": "^0.32.6", + "react-share": "^5.1.0", + "sharp": "^0.33.2", "siwe": "^2.1.4", - "swr": "^2.2.4", - "tailwind-scrollbar": "^3.0.5", - "viem": "^2.5.0", - "wagmi": "^2.5.1", - "zustand": "^4.4.4" + "swr": "^2.2.5", + "tailwind-scrollbar": "^3.1.0", + "viem": "^2.7.20", + "wagmi": "^2.5.7", + "zustand": "^4.5.2" }, "devDependencies": { "@svgr/webpack": "^8.1.0", - "@types/file-saver": "^2.0.6", - "@types/jsonwebtoken": "^9.0.5", - "@types/luxon": "^3.3.3", - "@types/qs": "^6.9.9", - "@types/react": "18.2.33", - "@types/react-dom": "18.2.14", - "autoprefixer": "^10.4.16", - "eslint-config-next": "^13.5.6", - "postcss": "^8.4.31", - "sass": "^1.69.5", - "stylelint": "^15.11.0", - "stylelint-config-css-modules": "^4.3.0", - "stylelint-config-prettier-scss": "^1.0.0", - "stylelint-config-standard-scss": "^11.0.0", - "stylelint-prettier": "^4.0.2", - "stylelint-webpack-plugin": "^4.1.1", - "supabase": "^1.113.3", - "tailwindcss": "^3.3.5" + "@types/file-saver": "^2.0.7", + "@types/jsonwebtoken": "^9.0.6", + "@types/luxon": "^3.4.2", + "@types/qs": "^6.9.12", + "@types/react": "18.2.63", + "@types/react-dom": "18.2.20", + "autoprefixer": "^10.4.18", + "eslint-config-next": "^14.1.2", + "postcss": "^8.4.35", + "supabase": "^1.148.6", + "tailwindcss": "^3.4.1" }, "nx": { "namedInputs": { diff --git a/packages/dapp/src/app/[locale]/app/(protected)/shared-presentations/sharedPresentations.tsx b/packages/dapp/src/app/[locale]/app/(protected)/shared-presentations/sharedPresentations.tsx index 6e46a40c5..6a9796bae 100644 --- a/packages/dapp/src/app/[locale]/app/(protected)/shared-presentations/sharedPresentations.tsx +++ b/packages/dapp/src/app/[locale]/app/(protected)/shared-presentations/sharedPresentations.tsx @@ -244,8 +244,8 @@ export const SharedPresentations = () => { column.key === 'actions' ? 'text-end' : column.key === 'title' - ? 'text-start' - : 'text-center' + ? 'text-start' + : 'text-center' )} > {column.label} @@ -265,8 +265,8 @@ export const SharedPresentations = () => { columnKey === 'actions' ? 'text-end' : columnKey === 'title' - ? 'text-start' - : 'text-center' + ? 'text-start' + : 'text-center' )} > {renderCell(item, columnKey)} diff --git a/packages/dapp/src/app/[locale]/app/(public)/share-presentation/[id]/formattedView.tsx b/packages/dapp/src/app/[locale]/app/(public)/share-presentation/[id]/formattedView.tsx index 138a229ef..1c31f0ba4 100644 --- a/packages/dapp/src/app/[locale]/app/(public)/share-presentation/[id]/formattedView.tsx +++ b/packages/dapp/src/app/[locale]/app/(public)/share-presentation/[id]/formattedView.tsx @@ -77,10 +77,9 @@ export const FormattedView = ({ holder.lastIndexOf(':') )}:${holder .split(':') - [holder.split(':').length - 1].slice( - 0, - 6 - )}...${holder.slice(-4)}`} + [ + holder.split(':').length - 1 + ].slice(0, 6)}...${holder.slice(-4)}`}