-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "didcomm-mediator",
"version": "1.0.0",
"description": "2060 DIDComm Mediator",
"main": "build/index.js",
"scripts": {
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-types": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"check-format": "yarn prettier --list-different",
"lint": "eslint --ignore-path .gitignore .",
"validate": "yarn lint && yarn check-format",
"build": "tsc",
"start": "node ./build/index.js",
"vdrproxy": "node ./build/vdrproxy/index.js",
"test": "jest --verbose",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "https://github.com/2060-io/didcomm-mediator.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@2060.io/credo-ts-message-pickup-repository-pg": "^0.0.7",
"@2060.io/message-pickup-repository-client": "^0.0.7",
"@credo-ts/askar": "0.5.11",
"@credo-ts/core": "0.5.11",
"@credo-ts/node": "0.5.11",
"@credo-ts/push-notifications": "^0.7.1",
"@hyperledger/anoncreds-shared": "^0.2.2",
"@hyperledger/aries-askar-nodejs": "^0.2.2",
"@hyperledger/aries-askar-shared": "^0.2.3",
"@mawhea/mongopubsub": "^1.0.0",
"@types/amqplib": "^0.10.4",
"@types/pg": "^8.10.9",
"amqplib": "^0.10.3",
"axios": "^1.6.5",
"cors": "^2.8.5",
"cross-spawn": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"firebase-admin": "^11.0.0",
"fs": "^0.0.1-security",
"jest": "^27.2.0",
"mongodb": "^6.5.0",
"path": "^0.12.7",
"pg": "^8.11.3",
"pg-pubsub": "^0.8.1",
"supertest": "^6.1.6",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.0.0",
"tslog": "^4.9.1",
"typescript": "5.6.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/cross-spawn": "^6.0.6",
"@types/express": "^4.17.12",
"@types/jest": "^27.0.1",
"@types/node": "^22.7.6",
"@types/node-fetch": "^2.6.4",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"patch-package": "^6.4.7",
"prettier": "^2.8.0",
"ts-jest": "^29.2.5"
},
"resolutions": {
"tsyringe": "4.8.0",
"typescript": "4.7.4",
"@credo-ts/anoncreds": "0.5.11",
"@credo-ts/askar": "0.5.11",
"@credo-ts/core": "0.5.11",
"@credo-ts/node": "0.5.11",
"@hyperledger/anoncreds-nodejs": "0.2.2",
"@hyperledger/aries-askar-nodejs": "0.2.3",
"ws": "^8.13.0",
"@types/ws": "^8.5.4",
"@types/node": "18.0.3"
}
}