-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@digicatapult/veritable-cloudagent",
"version": "0.12.39",
"main": "build/index",
"type": "module",
"types": "build/index",
"files": [
"build"
],
"keywords": [
"OpenAPI",
"Blockchain"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"description": "Rest endpoint wrapper for using your agent over HTTP",
"homepage": "https://github.com/digicatapult/veritable-cloudagent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/veritable-cloudagent.git"
},
"bin": {
"veritable-cloudagent": "build/index.js"
},
"scripts": {
"depcheck": "depcheck",
"lint": "eslint .",
"lint:fix": "npm run lint -- -- fix",
"check": "npm run tsoa:build && tsc --noEmit",
"clean": "rimraf -rf ./build",
"build": "npm run clean && npm run tsoa:build && swc ./src -d ./build --strip-leading-paths --copy-files",
"tsoa:build": "tsoa spec-and-routes",
"tsoa:watch": "node --watch-path=./src ./node_modules/.bin/tsoa spec-and-routes",
"dev": "concurrently \"npm run tsoa:watch\" \"SWCRC=true NODE_ENV=dev node --import @swc-node/register/esm-register --enable-source-maps --watch-path=./src --watch-path=./build/routes/swagger.json ./src/index.ts | pino-colada\"",
"start": "node build/index.js",
"test": "mocha --config ./tests/mocharc.json tests/unit/**/*.test.ts **/__tests__/*.test.ts",
"test:integration": "mocha --config ./tests/mocharc.json tests/integration/**/*.test.ts",
"test-watch": "npm run test -- --watch --watch-files src/,tests/unit/"
},
"dependencies": {
"@credo-ts/anoncreds": "^0.5.9",
"@credo-ts/askar": "^0.5.9",
"@credo-ts/core": "^0.5.9",
"@credo-ts/drpc": "^0.5.9",
"@credo-ts/node": "^0.5.9",
"@hyperledger/anoncreds-nodejs": "^0.2.4",
"@hyperledger/aries-askar-nodejs": "^0.2.3",
"@tsoa/runtime": "^6.6.0",
"@types/ws": "^8.5.13",
"body-parser": "^1.20.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"did-resolver": "^4.1.0",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^4.21.2",
"http-errors": "^2.0.0",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"tsyringe": "^4.8.0",
"undici": "^7.2.0",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.1",
"@types/body-parser": "^1.19.5",
"@types/chai": "^5.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.10",
"@types/pino": "^7.0.5",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"chai": "^5.1.2",
"concurrently": "^9.1.0",
"depcheck": "^1.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"pino-colada": "^2.2.2",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"supertest": "^7.0.0",
"typescript": "~5.7.2"
},
"engines": {
"node": ">= 20"
},
"overrides": {
"ref-napi": "npm:@2060.io/ref-napi"
}
}