forked from credebl/mediator-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "mediator-agent",
"version": "0.0.1",
"description": "Mediator agent",
"author": "Animo Solutions <[email protected]>",
"private": true,
"main": "build/index",
"types": "build/index",
"files": [
"build"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"yarn": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/animo/animo-mediator"
},
"scripts": {
"test": "jest",
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node build/index.js"
},
"dependencies": {
"@credo-ts/askar": "0.5.6",
"@credo-ts/core": "0.5.6",
"@credo-ts/node": "0.5.6",
"@hyperledger/aries-askar-nodejs": "0.2.1",
"dotenv": "^16.4.5",
"express": "^4.18.1",
"nconf": "^0.12.1",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tslog": "^3.3.3",
"tsyringe": "^4.8.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@ngrok/ngrok": "^1.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.0",
"@types/nconf": "^0",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.11",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}