-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.49 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wallet-enterprise-issuer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"dev": "nodemon --config nodemon.json --exec \"npx tsc && yarn start\"",
"dev-docker": "npx nodemon --config nodemon.json --exec \"npx tsc --outdir /app/dist && yarn start\"",
"start": "node -r source-map-support/register dist/src/app.js",
"build:prod": "rm -rf node_modules && yarn install && yarn build && rm -rf node_modules && yarn install --production",
"snapshot": "paketo"
},
"keywords": [],
"author": "",
"description": "",
"dependencies": {
"@digitalbazaar/did-io": "^2.0.0",
"@digitalbazaar/did-method-key": "^5.1.0",
"@sd-jwt/core": "^0.2.1",
"@transmute/did-key-ed25519": "^0.3.0-unstable.10",
"ajv": "^8.11.0",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"body-parser": "^1.20.0",
"client-oauth2": "^4.3.3",
"connect-redis": "^7.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"did-resolver": "^4.1.0",
"express": "^4.18.1",
"express-session": "^1.17.3",
"http-errors": "^2.0.0",
"inversify": "^6.0.1",
"jose": "^4.9.3",
"jsonpath-plus": "^7.2.0",
"key-did-resolver": "^3.0.0",
"lodash": "^4.17.21",
"multiformats": "^9.6.4",
"mysql": "^2.18.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"pug": "^3.0.2",
"qrcode": "^1.5.1",
"querystring": "^0.2.1",
"randomstring": "^1.2.3",
"redis": "^4.3.1",
"reflect-metadata": "^0.1.13",
"ts-results": "^3.3.0",
"typeorm": "^0.3.9",
"winston": "^3.8.2",
"ws": "^8.9.0",
"xlsx": "^0.18.5",
"xml-js": "^1.6.11",
"zod": "^3.20.6"
},
"devDependencies": {
"@gsiou/paketo": "^0.0.1",
"@total-typescript/ts-reset": "^0.4.2",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.7",
"@types/http-errors": "^2.0.1",
"@types/lodash": "^4.14.192",
"@types/node": "^18.7.17",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/qrcode": "^1.5.0",
"@types/randomstring": "^1.1.8",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.19",
"source-map-support": "^0.5.21",
"typescript": "^4.8.3"
}
}