-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathpackage.json
70 lines (70 loc) · 2.48 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
{
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@filebase/client": "^0.0.5",
"@guardian/common": "^3.1.0",
"@guardian/interfaces": "^3.1.0",
"@hashgraph/sdk": "2.52.0",
"@nestjs/common": "^9.4.1",
"@nestjs/core": "^9.4.1",
"@nestjs/microservices": "^9.4.1",
"@transmute/credentials-context": "0.7.0-unstable.80",
"@transmute/did-context": "0.7.0-unstable.80",
"@transmute/ed25519-signature-2018": "0.7.0-unstable.80",
"@transmute/json-web-signature": "0.7.0-unstable.80",
"@transmute/jsonld-schema": "0.7.0-unstable.80",
"@transmute/security-context": "0.7.0-unstable.80",
"@transmute/vc.js": "0.7.0-unstable.80",
"@web3-storage/access": "^18.1.0",
"@web3-storage/w3up-client": "^12.0.0",
"axios": "^1.3.6",
"axios-retry": "^3.2.4",
"cross-blob": "^2.0.1",
"dotenv": "^16.0.0",
"ipfs-client": "^0.10.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"fireblocks-sdk": "^5.20.0"
},
"description": "",
"devDependencies": {
"@types/gulp": "^4",
"@types/gulp-rename": "^2",
"@types/node": "^22.10.10",
"chai": "4.3.4",
"concurrently": "^8.2.2",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"nodemon": "^2.0.12",
"rewire": "^6.0.0",
"tsc-alias": "1.8.8",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "queue-service",
"scripts": {
"build": "tsc && tsc-alias",
"build:prod": "tsc --project tsconfig.production.json && tsc-alias",
"debug": "nodemon dist/index.js",
"dev": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"dev:docker": "nodemon .",
"lint": "tslint --config ../tslint.json --project .",
"start": "node dist/index.js",
"test": "mocha tests/**/*.test.mjs --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/worker-service.xml --exit"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "3.1.0"
}