forked from cheqd/did-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "@cheqd/did-registrar",
"version": "2.0.2",
"description": "Universal Registrar for cheqd DID method",
"homepage": "https://github.com/cheqd/did-registrar#readme",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": {
"type": "git",
"url": "git+https://github.com/cheqd/did-registrar.git"
},
"bugs": {
"url": "https://github.com/cheqd/did-registrar/issues"
},
"source": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"build": "esbuild src/index.ts --platform=node --bundle --minify --outdir=dist --external:swagger-ui-express"
},
"dependencies": {
"@cheqd/sdk": "^3.1.1",
"@cheqd/ts-proto": "^3.1.2",
"@cosmjs/proto-signing": "^0.29.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.0",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"esbuild": "^0.17.11",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^2.8.4",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}