-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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
59
60
61
62
63
{
"name": "@qucore-dynamic/packages",
"description": "Backend utilities for QuCore Dynamic services: JWT validation, request ID generation, type-safe responses, standardized response and error helpers.",
"version": "1.0.0-alpha.4",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qucore-dynamic/qucore-dynamic-packages.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Artem_Zhyto <https://github.com/ArtemZhyto>",
"contributors": [
"Artem_Zhyto <https://github.com/ArtemZhyto>"
],
"license": "PolyForm-Noncommercial-1.0.0",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "jest --verbose -- --passWithNoTests ./tests",
"build": "tsc -p tsconfig.json && tsc-alias",
"prepublishOnly": "npm run build"
},
"keywords": [
"qucore",
"backend",
"express",
"jwt",
"tokens",
"authentication",
"request-id",
"response-helper",
"error-helper",
"typescript",
"microservices"
],
"dependencies": {
"express": "^5.2.1",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@jest/globals": "^30.3.0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.5.2",
"eslint": "^9.9.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.3.3",
"ts-jest": "^29.4.9",
"tsc-alias": "^1.8.16",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}