-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.38 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.38 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"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": ">=10.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"
},
"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:",
"lint-staged": "catalog:",
"nx": "catalog:",
"prettier": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {},
"pnpm": {
"overrides": {
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"path-to-regexp@<0.1.13": "0.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"brace-expansion@>=4.0.0 <5.0.5": "5.0.5",
"yaml@>=1.0.0 <1.10.3": "1.10.3",
"yaml@>=2.0.0 <2.8.3": "2.8.3",
"srvx@<0.11.13": "0.11.13",
"h3@>=2.0.0-0 <2.0.1-rc.20": "2.0.1-rc.20",
"h3-v2": "npm:h3@2.0.1-rc.20",
"flatted@<=3.4.1": "3.4.2",
"undici@>=7.0.0 <7.24.0": "7.24.0",
"koa@>=3.0.0 <3.1.2": "3.1.2",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=5.0.0 <5.1.8": "5.1.8",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"rollup@>=4.0.0 <4.59.0": "4.59.0",
"ajv@<6.14.0": "6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0",
"axios@>=1.0.0 <=1.13.4": "1.13.5",
"qs@>=6.7.0 <=6.14.1": "6.14.2",
"esbuild@<=0.24.2": "0.25.0"
}
}
}