-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
158 lines (158 loc) · 4.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@cheqd/studio",
"version": "3.5.0",
"description": "cheqd Studio Backend",
"source": "src/index.ts",
"main": "dist/index.js",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": "https://github.com/cheqd/studio.git",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts",
"build": "npm run build:swagger && npm run build:app",
"build:app": "tsc",
"build:swagger-api": "swagger-jsdoc --definition src/static/swagger-api-options.json -o src/static/swagger-api.json ./src/controllers/api/*.ts ./src/types/swagger-api-types.ts",
"build:swagger-admin": "swagger-jsdoc --definition src/static/swagger-admin-options.json -o src/static/swagger-admin.json ./src/controllers/admin/*.ts ./src/types/swagger-admin-types.ts",
"build:swagger": "npm run build:swagger-api && npm run build:swagger-admin",
"start": "node dist/index.js",
"start:local": "npm run build:app && npm run start",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'",
"lint": "eslint --max-warnings=0 src && prettier --check '**/*.{js,ts,cjs,mjs,json}'",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --verbose",
"test:e2e": "TEST_MODE_PARALLEL=true npx playwright test -c playwright.config.ts && npx playwright test -c playwright.config.ts",
"typeorm": "typeorm-ts-node-esm -d ./dist/database/ormconfig.js",
"generate": "npm run typeorm migration:generate .",
"migrate": "npm run typeorm migration:run"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"files": [
"dist",
"example.env",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@cheqd/did-provider-cheqd": "^4.2.1-develop.1",
"@cheqd/sdk": "^4.0.5",
"@cheqd/ts-proto": "^3.4.4",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@logto/express": "^2.3.16",
"@stablelib/ed25519": "^1.0.3",
"@veramo/core": "^6.0.0",
"@veramo/credential-ld": "^6.0.0",
"@veramo/credential-w3c": "^6.0.0",
"@veramo/data-store": "^6.0.0",
"@veramo/did-manager": "^6.0.0",
"@veramo/did-provider-key": "^6.0.0",
"@veramo/did-resolver": "^6.0.0",
"@veramo/key-manager": "^6.0.0",
"@veramo/kms-local": "^6.0.0",
"@veramo/utils": "^6.0.0",
"@verida/account-node": "^3.0.3",
"@verida/client-ts": "^3.0.4",
"@verida/encryption-utils": "^3.0.1",
"@verida/types": "^3.0.2",
"@verida/vda-did-resolver": "^3.0.3",
"bcrypt": "^5.1.1",
"bs58": "^6.0.0",
"cookie-parser": "^1.4.6",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"did-resolver": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-session": "^1.18.0",
"express-validator": "^7.2.0",
"helmet": "^7.2.0",
"http-status-codes": "^2.3.0",
"js-sha3": "^0.9.3",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"loglevel": "^1.9.2",
"multiformats": "^13.3.0",
"node-cache": "^5.1.2",
"pg": "^8.13.0",
"pg-connection-string": "^2.7.0",
"secp256k1": "^5.0.0",
"sqlite3": "^5.1.7",
"stripe": "^14.25.0",
"swagger-ui-dist": "5.17.14",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"uint8arrays": "^5.1.0",
"uri-js": "^4.4.1"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/bcrypt": "^5.0.2",
"@types/bs58": "^4.0.4",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/helmet": "^4.0.0",
"@types/json-stringify-safe": "^5.0.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.16.10",
"@types/secp256k1": "^4.0.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"buffer": "6.0.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.2",
"swagger-jsdoc": "^6.2.8",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"uint8arrays": "^5.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}