Skip to content

Commit

Permalink
feat: merge mine in package json
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihar committed Apr 2, 2024
2 parents 5d1f6be + 344154d commit 0fec16a
Show file tree
Hide file tree
Showing 18 changed files with 56 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Guardian is a modular open-source solution that includes best-in-class identity management and decentralized ledger technology (DLT) libraries. At the heart of Guardian solution is a sophisticated Policy Workflow Engine (PWE) that enables applications to offer a digital (or digitized) Measurement, Reporting, and Verification requirements-based tokenization implementation.

[HIP-19](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-19.md) · [HIP-28](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-28.md) · [HIP-29](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-29.md) · [Report a Bug](CONTRIBUTING#bug-reports) · [Request a Policy or a Feature](CONTRIBUTING#new-policy-or-feature-requests)
[HIP-19](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-19.md) · [HIP-28](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-28.md) · [HIP-29](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-29.md) · [Report a Bug](CONTRIBUTING.md#bug-reports) · [Request a Policy or a Feature](CONTRIBUTING.md#new-policy-or-feature-requests)

## Discovering Digital Environmental Assets assets on Hedera

Expand Down
7 changes: 5 additions & 2 deletions ai-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"main": "dist/app.js",
"license": "Apache-2.0",
"dependencies": {
"@mikro-orm/core": "^6.1.11",
"@mikro-orm/mongodb": "^6.1.11",
"@guardian/common": "^2.23.0",
"@guardian/interfaces": "^2.23.0",
"@mikro-orm/core": "^6.1.11",
"@mikro-orm/mongodb": "^6.1.11",
"@nestjs/common": "^9.4.1",
"@nestjs/core": "^9.4.1",
"@types/express": "^4.17.18",
Expand All @@ -32,5 +32,8 @@
"devDependencies": {
"nodemon": "^3.0.1"
},
"resolutions": {
"@types/mime": "3.0.4"
},
"type": "module"
}
3 changes: 2 additions & 1 deletion analytics-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
},
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"dependencies": {
Expand Down
5 changes: 3 additions & 2 deletions api-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"dependencies": {
Expand Down Expand Up @@ -84,4 +85,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
3 changes: 3 additions & 0 deletions api-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1"
},
"resolutions": {
"@types/mime": "3.0.4"
}
}
5 changes: 3 additions & 2 deletions auth-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@guardian/common": "^2.23.0",
Expand Down Expand Up @@ -76,4 +77,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
3 changes: 2 additions & 1 deletion common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
"name": "@guardian/common",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"scripts": {
"build": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion common/src/models/base-entity.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AfterCreate, BeforeCreate, BeforeUpdate, PrimaryKey, Property, SerializedPrimaryKey } from '@mikro-orm/core';
import { BeforeCreate, BeforeUpdate, PrimaryKey, Property, SerializedPrimaryKey } from '@mikro-orm/core';
import { ObjectId } from '@mikro-orm/mongodb';

/**
Expand Down
5 changes: 3 additions & 2 deletions guardian-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@guardian/common": "^2.23.0",
Expand Down Expand Up @@ -100,4 +101,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
6 changes: 5 additions & 1 deletion interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,9 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"version": "2.23.0"
"version": "2.23.0",
"resolutions": {
"@types/mime": "3.0.4"
}
}

5 changes: 3 additions & 2 deletions logger-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@mikro-orm/core": "^6.1.11",
Expand Down Expand Up @@ -55,4 +56,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
5 changes: 3 additions & 2 deletions mrv-sender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@guardian/common": "^2.23.0",
Expand Down Expand Up @@ -45,4 +46,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
5 changes: 3 additions & 2 deletions notification-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@mikro-orm/core": "^6.1.11",
Expand Down Expand Up @@ -54,4 +55,4 @@
},
"type": "module",
"version": "2.23.0"
}
}
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
"devDependencies": {
"detect-secrets": "^1.0.6"
},
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"scripts": {
"detect-secrets": "detect-secrets-launcher --word-list exclude-secrets.txt k8s-manifests/**/* */src/**.ts **/.env*",
"publish-policies": "guardian-cli publish-policies \"Methodology Library\" -c \"configs/automatic-publish-policies.config.json\" -o \"published-policies.txt\""
Expand Down
3 changes: 2 additions & 1 deletion policy-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"author": "Envision Blockchain Solutions <info@envisionblockchain.com>",
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
"image-size": "1.0.2",
"@types/mime": "3.0.4"
},
"dependencies": {
"@guardian/common": "2.23.0",
Expand Down
5 changes: 4 additions & 1 deletion topic-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@
"start": "node dist/index.js"
},
"type": "module",
"version": "2.23.0"
"version": "2.23.0",
"resolutions": {
"@types/mime": "3.0.4"
}
}
5 changes: 4 additions & 1 deletion tree-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"start": "node dist/index.js"
},
"type": "module",
"version": "2.23.0"
"version": "2.23.0",
"resolutions": {
"@types/mime": "3.0.4"
}
}
5 changes: 4 additions & 1 deletion worker-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,8 @@
},
"type": "module",
"types": "dist/index.d.ts",
"version": "2.23.0"
"version": "2.23.0",
"resolutions": {
"@types/mime": "3.0.4"
}
}

0 comments on commit 0fec16a

Please sign in to comment.