-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.42 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
{
"name": "hypersign-auth-server",
"version": "5.1.1",
"description": "Server to issue Hypersign Auth Credential. It uses hypersign-auth-js-sdk for this purpose ",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node dist/src/app.js",
"prod": "NODE_ENV=production node dist/api.bundle.js",
"dev": "NODE_ENV=production nodemon src/app.ts",
"service:dev": "NODE_ENV=production nodemon src/services/processBatchTxn.ts",
"service:start": "NODE_ENV=production node dist/src/services/processBatchTxn.js",
"build": "rimraf dist && tsc -p . && cp -r public dist",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"bootstrap": "NODE_ENV=production ts-node src/bootStrapHypersignIssuer.ts"
},
"author": "Vishwas Anand Bhushan",
"license": "MIT",
"dependencies": {
"@cosmjs/crypto": "^0.29.5",
"@digitalbazaar/ed25519-verification-key-2020": "^3.3.0",
"@digitalbazaar/x25519-key-agreement-key-2020": "^2.1.0",
"bullmq": "^3.1.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-validator": "^6.12.2",
"helmet": "^4.4.1",
"hid-hd-wallet": "github:hypersign-protocol/hid-hd-wallet#ssi-integration",
"hs-ssi-sdk": "github:hypersign-protocol/hid-ssi-js-sdk#testcase/bjj",
"hypersign-auth-node-sdk": "github:hypersign-protocol/hypersign-auth-node-sdk#update-prajna",
"hypersign-edv-client": "github:hypersign-protocol/hypersign-edv-client#develop",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.12.3",
"node-cron": "^3.0.2",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/method-override": "0.0.31",
"@types/morgan": "^1.7.35",
"@types/node": "^12.6.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"ts-loader": "^8.0.18",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"webpack": "^5.27.1",
"webpack-cli": "^5.1.4"
}
}