-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.23 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
122
123
124
125
126
127
128
{
"name": "@digicatapult/veritable-cloudagent",
"version": "0.20.31",
"main": "build/index",
"type": "module",
"types": "build/index",
"files": [
"build"
],
"keywords": [
"OpenAPI",
"SSI",
"Verifiable Credentials"
],
"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",
"setup:certs": "bash scripts/setup-certs.sh",
"lint": "eslint .",
"lint:fix": "eslint . --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-pretty -c -S\"",
"start": "node build/index.js",
"test:unit": "NODE_OPTIONS='--no-experimental-strip-types' NODE_ENV=test mocha --config ./tests/mocharc.json tests/unit/**/*.test.ts **/__tests__/*.test.ts",
"test:integration": "NODE_OPTIONS='--no-experimental-strip-types' mocha --config ./tests/mocharc.json 'tests/integration/*.test.ts' 'tests/integration/**/*.test.ts'",
"test-watch": "npm run test -- --watch --watch-files src/,tests/unit/",
"db:cmd": "node --import @swc-node/register/esm-register ./node_modules/.bin/knex",
"db:migrate": "npm run db:cmd -- migrate:latest",
"db:rollback": "npm run db:cmd -- migrate:rollback"
},
"dependencies": {
"@credo-ts/anoncreds": "^0.7.0",
"@credo-ts/askar": "^0.7.0",
"@credo-ts/core": "^0.7.0",
"@credo-ts/didcomm": "^0.7.0",
"@credo-ts/drpc": "^0.7.0",
"@credo-ts/node": "^0.7.0",
"@hyperledger/anoncreds-nodejs": "^0.4.0",
"@openwallet-foundation/askar-nodejs": "^0.6.0",
"@tsoa/runtime": "^6.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"envalid": "^8.2.0",
"express": "^5.2.1",
"http-errors": "^2.0.1",
"knex": "^3.3.0",
"pg": "^8.22.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"tsyringe": "^4.10.0",
"undici": "^8.10.0",
"ws": "^8.21.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@swc-node/register": "^1.12.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.47",
"@types/chai": "^5.2.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/http-errors": "^2.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.5",
"@types/sinon": "^22.0.0",
"@types/supertest": "^7.2.1",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"chai": "^6.2.2",
"concurrently": "^10.0.4",
"depcheck": "^1.4.7",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.9.0",
"mocha": "^11.8.0",
"pino-pretty": "13.1.3",
"prettier": "^3.9.6",
"prettier-plugin-organize-imports": "^4.3.0",
"rimraf": "^6.1.3",
"sinon": "^22.1.0",
"supertest": "^7.2.2",
"typescript": "~6.0.3"
},
"engines": {
"node": "24.x",
"npm": "12.x"
},
"overrides": {
"ref-napi": "npm:@2060.io/ref-napi",
"node-addon-api": "8.9.1"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"allowScripts": {
"@openwallet-foundation/askar-nodejs@0.6.0": true,
"@hyperledger/anoncreds-nodejs@0.4.0": true,
"koffi@2.16.3": true,
"cbor-extract@2.2.2": true,
"@swc/core@1.15.46": true,
"@scarf/scarf": false
}
}