-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d7d798
commit a46cf86
Showing
13 changed files
with
1,655 additions
and
1,917 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
POSTGRES_USER= | ||
POSTGRES_PASSWORD= | ||
POSTGRES_DATABASE_URL= | ||
POSTGRES_HOST= | ||
POSTGRES_ADMIN_USER= | ||
POSTGRES_ADMIN_PASSWORD= | ||
POSTGRES_TLS_CA= |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,10 @@ | |
"type": "git", | ||
"url": "https://github.com/animo/animo-mediator" | ||
}, | ||
"engines": { | ||
"node": "^18.0.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"test": "jest", | ||
"build": "yarn run clean && yarn run compile", | ||
|
@@ -26,27 +30,30 @@ | |
"start": "NODE_ENV=production node build/index.js", | ||
"validate": "yarn build && yarn check-format" | ||
}, | ||
"dependencies": { | ||
"@aries-framework/askar": "^0.4.1-alpha.22", | ||
"@aries-framework/core": "^0.4.1-alpha.22", | ||
"@aries-framework/node": "^0.4.1-alpha.22", | ||
"@hyperledger/aries-askar-nodejs": "^0.1.0", | ||
"express": "^4.18.1", | ||
"prettier": "^2.8.4", | ||
"tslog": "^3.3.3", | ||
"tsyringe": "^4.7.0", | ||
"ws": "^8.8.1" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.13", | ||
"@types/indy-sdk": "^1.16.26", | ||
"@types/jest": "^29.2.0", | ||
"@types/node": "^16", | ||
"@types/node-fetch": "^2.6.4", | ||
"dotenv": "^16.0.1", | ||
"jest": "^29.2.2", | ||
"ngrok": "^4.3.1", | ||
"ts-jest": "^29.0.3", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.8.4" | ||
}, | ||
"dependencies": { | ||
"@aries-framework/core": "^0.4.0-alpha.66", | ||
"@aries-framework/indy-sdk": "^0.4.0-alpha.66", | ||
"@aries-framework/node": "^0.4.0-alpha.66", | ||
"express": "^4.18.1", | ||
"indy-sdk": "^1.16.0-dev-1655", | ||
"prettier": "^2.8.4", | ||
"tslog": "^3.3.3", | ||
"tsyringe": "^4.7.0", | ||
"ws": "^8.8.1" | ||
"resolutions": { | ||
"ref-napi": "npm:@2060.io/ref-napi" | ||
} | ||
} |
Oops, something went wrong.