-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "hedera-vc-api",
"version": "0.1.0",
"description": "REST API to manage Hedera Verifiable Credentials, Presentations and DIDs",
"scripts": {
"clean": "rm -rf ./dist/*",
"lint": "eslint ./src/ --ext .ts --max-warnings 0",
"prettier-write": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "npx tsc",
"start": "node ./dist/src/index.js",
"debug": "node --inspect-brk ./dist/src/index.js",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/src/index.js\"",
"tsoa-spec": "npx tsoa spec",
"tsoa-routes": "npx tsoa routes"
},
"keywords": [
"HEDERA",
"DID",
"VC",
"REST",
"API"
],
"author": "Olivier Scherrer <olivier.scherrer@meranti.fr>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/express": "^4.17.17",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@digitalbazaar/did-method-key": "^5.1.0",
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/vc": "^6.0.2",
"@digitalbazaar/vc-status-list": "^7.0.0",
"@digitalbazaar/vc-status-list-context": "^3.0.1",
"@hashgraph/did-sdk-js": "git@github.com:Meeco/hedera-did-sdk-js.git",
"@hashgraph/sdk": "^2.33.0",
"axios": "^1.5.1",
"base58-universal": "^2.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"swagger-ui-express": "^5.0.0",
"tsoa": "^5.1.1"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}