Skip to content

Commit

Permalink
Merge pull request #131 from velocitycareerlabs/VL-8414-upgrade-pkgs-…
Browse files Browse the repository at this point in the history
…v0.9.22

VL-8414: sdk v0.9.22 upgrade packages
  • Loading branch information
michaelavoyan authored Sep 26, 2024
2 parents 4618d32 + 66173fa commit 9789460
Show file tree
Hide file tree
Showing 10 changed files with 764 additions and 711 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"test": "jest"
},
"engines": {
"node": ">= 18.0.0"
"node": ">= 20.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/babel__core": "^7.20.5",
"lerna": "^6.6.1"
},
"workspaces": [
Expand Down
30 changes: 20 additions & 10 deletions packages/sample-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,28 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.101",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
"react-scripts": "5.0.1"
},
"devDependencies": {
"eslint": "~8.57.1",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-autofix": "~2.2.0",
"eslint-plugin-better-mutation": "~1.5.0",
"eslint-plugin-import": "~2.30.0",
"eslint-plugin-prefer-arrow-functions": "~3.4.1",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unused-imports": "~4.1.4",
"jest": "~29.7.0",
"@types/jest": "~29.5.13",
"@types/node": "~20.16.0",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"typescript": "~5.6.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2"
},
"scripts": {
"start": "react-scripts start",
Expand Down
6 changes: 0 additions & 6 deletions packages/sample-app/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
Expand All @@ -12,8 +11,3 @@ root.render(
<App />
</React.StrictMode>
);

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
15 changes: 0 additions & 15 deletions packages/sample-app/src/reportWebVitals.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/sample-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"module": "Node16",
"esModuleInterop": true,
"preserveConstEnums": true,
"removeComments": true,
Expand Down
32 changes: 16 additions & 16 deletions packages/sample-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@
"axios": "~1.7.2",
"env-var": "~7.5.0",
"fastify": "~4.28.1",
"fastify-plugin": "4.5.1"
"fastify-plugin": "~4.5.1"
},
"devDependencies": {
"@jest/globals": "~29.7.0",
"@types/jest": "~29.5.12",
"@types/node": "~20.14.9",
"@typescript-eslint/eslint-plugin": "~5.57.0",
"@typescript-eslint/parser": "~5.57.0",
"@types/jest": "~29.5.13",
"@types/node": "~20.16.0",
"@typescript-eslint/eslint-plugin": "~5.57.1",
"@typescript-eslint/parser": "~5.57.1",
"chokidar": "~3.6.0",
"eslint": "~8.57.0",
"eslint": "~8.57.1",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-autofix": "~2.1.0",
"eslint-plugin-better-mutation": "~1.4.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-prefer-arrow-functions": "~3.0.1",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-unused-imports": "~4.0.0",
"eslint-plugin-autofix": "~2.2.0",
"eslint-plugin-better-mutation": "~1.5.0",
"eslint-plugin-import": "~2.30.0",
"eslint-plugin-prefer-arrow-functions": "~3.4.1",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unused-imports": "~4.1.4",
"jest": "~29.7.0",
"json-schema-to-ts": "~3.1.0",
"pino-pretty": "~10.0.0",
"json-schema-to-ts": "~3.1.1",
"pino-pretty": "~11.2.2",
"tree-kill": "~1.2.2",
"ts-jest": "~29.1.5",
"ts-jest": "~29.2.5",
"ts-node-dev": "~2.0.0",
"typescript": "~4.9.5"
"typescript": "~5.6.2"
},
"nx": {
"targets": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sample-server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"module": "Node16",
"esModuleInterop": true,
"preserveConstEnums": true,
"removeComments": true,
Expand Down
48 changes: 24 additions & 24 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@velocitycareerlabs/vnf-nodejs-wallet-sdk",
"version": "0.9.21",
"version": "0.9.22",
"description": "VNF Wallet SDK Nodejs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,36 +15,36 @@
"author": "Andres Olave",
"license": "Apache-2.0",
"engines": {
"node": ">= 18.0.0"
"node": ">= 20.0.0"
},
"dependencies": {
"@velocitycareerlabs/vc-checks": "1.20.0",
"canonicalize": "^2.0.0",
"jose": "~4.13.1",
"lodash": "~4.17.20"
"canonicalize": "~2.0.0",
"jose": "~5.9.3",
"lodash": "~4.17.21"
},
"devDependencies": {
"@jest/globals": "~29.5.0",
"@rollup/plugin-node-resolve": "~15.0.1",
"@rollup/plugin-typescript": "~11.0.0",
"@types/jest": "~29.5.0",
"@types/node": "~18.15.10",
"@typescript-eslint/eslint-plugin": "~5.57.0",
"@typescript-eslint/parser": "~5.57.0",
"eslint": "~8.57.0",
"@jest/globals": "~29.7.0",
"@rollup/plugin-node-resolve": "~15.3.0",
"@rollup/plugin-typescript": "~12.1.0",
"@types/jest": "~29.5.13",
"@types/node": "~20.16.0",
"@typescript-eslint/eslint-plugin": "~5.57.1",
"@typescript-eslint/parser": "~5.57.1",
"eslint": "~8.57.1",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-autofix": "^1.0.0",
"eslint-plugin-better-mutation": "1.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow-functions": "^3.0.1",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-unused-imports": "^4.0.0",
"jest": "~29.5.0",
"rimraf": "~4.4.1",
"rollup": "~3.20.2",
"ts-jest": "~29.0.5",
"eslint-plugin-autofix": "~2.2.0",
"eslint-plugin-better-mutation": "~1.5.0",
"eslint-plugin-import": "~2.30.0",
"eslint-plugin-prefer-arrow-functions": "~3.4.1",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unused-imports": "~4.1.4",
"jest": "~29.7.0",
"rimraf": "~6.0.1",
"rollup": "~4.22.4",
"ts-jest": "~29.2.5",
"ts-node-dev": "~2.0.0",
"typescript": "~4.9.5"
"typescript": "~5.6.2"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"module": "Node16",
"esModuleInterop": true,
"preserveConstEnums": true,
"removeComments": true,
Expand Down
Loading

0 comments on commit 9789460

Please sign in to comment.