-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.07 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.07 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
{
"name": "qucore-dynamic-auth-server",
"description": "Backend service for QuCore site authentication and Single Sign-On (SSO). Handles JWT orchestration, role-based access control (RBAC), and secure user management.",
"version": "1.0.0",
"author": "Artem_Zhyto <https://github.com/ArtemZhyto>",
"contributors": [
"Artem_Zhyto <https://github.com/ArtemZhyto>"
],
"license": "PolyForm-Noncommercial-1.0.0",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "jest --verbose --passWithNoTests",
"i:all": "npm i & npm i --prefix services/auth & npm i --prefix services/audit & npm i --prefix services/invite & npm i --prefix services/metrics & npm i --prefix services/org & npm i --prefix services/users"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"eslint": "^9.9.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.4.9",
"typescript-eslint": "^8.4.0"
}
}