-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.58 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
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
{
"name": "qauth",
"version": "0.0.0",
"description": "Post-quantum ready, headless-first identity platform. A developer-friendly alternative to Keycloak.",
"license": "Apache-2.0",
"author": "QAuth Labs",
"repository": {
"type": "git",
"url": "https://github.com/qauth-labs/qauth.git"
},
"keywords": [
"authentication",
"authorization",
"oauth2",
"oidc",
"sso",
"identity",
"security",
"jwt",
"keycloak-alternative"
],
"private": true,
"engines": {
"node": ">=24.7.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"prepare": "husky",
"dev": "nx serve",
"build": "nx build",
"lint": "nx lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "nx run-many -t test --all",
"test:watch": "nx run-many -t test --all --watch",
"test:ui": "vitest --ui",
"test:coverage": "nx run-many -t test --all --coverage",
"test:affected": "nx affected -t test",
"test:integration": "vitest run --config vitest.integration.config.ts"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"**/*.{js,jsx,json,yml,yaml,css,less,scss,ts,tsx,md,graphql}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@eslint/js": "catalog:",
"@nx/esbuild": "catalog:",
"@nx/eslint": "catalog:",
"@nx/eslint-plugin": "catalog:",
"@nx/js": "catalog:",
"@nx/node": "catalog:",
"@nx/react": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "catalog:",
"@nx/web": "catalog:",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@types/node": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"esbuild": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-jsx-a11y": "catalog:",
"eslint-plugin-prettier": "catalog:",
"eslint-plugin-react": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-simple-import-sort": "catalog:",
"husky": "catalog:",
"jiti": "catalog:",
"jsdom": "catalog:",
"jsonc-eslint-parser": "catalog:",
"lint-staged": "catalog:",
"nx": "catalog:",
"prettier": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {}
}