-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.08 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.08 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "credo-controller",
"main": "build/index",
"types": "build/index",
"version": "2.1.3",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"description": "Rest endpoint wrapper for using your agent over HTTP",
"homepage": "https://github.com/hyperledger/aries-framework-javascript-ext/tree/main/packages/rest",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/aries-framework-javascript-ext",
"directory": "packages/rest"
},
"bin": {
"afj-rest": "bin/afj-rest.js"
},
"scripts": {
"check-types": "tsc --noEmit -p tsconfig.build.json",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"tsoa": "tsoa spec-and-routes",
"dev": "tsoa spec-and-routes && tsnd --respawn samples/sampleWithApp.ts",
"build": "yarn run clean && yarn run compile",
"prestart:dev": "yarn run clean && yarn run compile",
"start:dev": "yarn build && ./bin/afj-rest.js --config ./samples/cliConfig.json",
"clean": "rimraf -rf ./build",
"compile": "tsoa spec-and-routes && tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"test": "jest",
"postinstall": "patch-package",
"lint": "eslint --config eslint.config.mjs .",
"validate": "yarn lint && yarn check-types && yarn check-format"
},
"dependencies": {
"@ayanworks/credo-polygon-w3c-module": "1.0.1-alpha.1",
"@credo-ts/anoncreds": "0.5.15",
"@credo-ts/askar": "0.5.15",
"@credo-ts/core": "0.5.15",
"@credo-ts/indy-vdr": "0.5.15",
"@credo-ts/node": "^0.5.15",
"@credo-ts/push-notifications": "^0.7.1",
"@credo-ts/question-answer": "0.5.15",
"@credo-ts/tenants": "0.5.15",
"@hyperledger/anoncreds-nodejs": "0.3.1",
"@hyperledger/aries-askar-nodejs": "0.2.3",
"@hyperledger/indy-vdr-nodejs": "0.2.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.202.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.202.0",
"@opentelemetry/instrumentation-express": "^0.51.0",
"@opentelemetry/instrumentation-http": "^0.202.0",
"@opentelemetry/instrumentation-nestjs-core": "^0.48.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-logs": "^0.202.0",
"@opentelemetry/sdk-node": "^0.202.0",
"@opentelemetry/semantic-conventions": "^1.34.0",
"@tsoa/runtime": "^6.6.0",
"@types/node-fetch": "^2.6.4",
"@types/ref-struct-di": "^1.1.12",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"node-fetch": "2",
"patch-package": "^8.0.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^4.4.0",
"tslog": "^3.3.3",
"tsoa": "^6.0.1",
"tsyringe": "^4.8.0",
"ws": "^8.18.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.18",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.2",
"@types/express-serve-static-core": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.0",
"@types/ref-array-di": "^1.2.8",
"@types/ref-struct-di": "^1.1.12",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"ngrok": "^4.3.3",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"resolutions": {
"@credo-ts/core": "0.5.15",
"@credo-ts/askar": "0.5.15"
}
}