-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "animo-mediator",
"version": "0.0.0",
"description": "Mediator agent",
"private": true,
"main": "build/index",
"types": "build/index",
"files": [
"build"
],
"author": "Animo Solutions <[email protected]>",
"repository": {
"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",
"clean": "rimraf -rf ./build",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts|md|yml|yaml|mdx)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"dev": "ts-node dev",
"start": "NODE_ENV=production node build/index.js",
"validate": "yarn build && yarn check-format"
},
"dependencies": {
"@aries-framework/askar": "^0.4.1",
"@aries-framework/core": "^0.4.1",
"@aries-framework/node": "^0.4.1",
"@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/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"
},
"resolutions": {
"ref-napi": "npm:@2060.io/ref-napi"
}
}