-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "unlike-other-authenticator",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.22.0",
"workspaces": [
"API",
"Auth",
"Admin"
],
"scripts": {
"dev:api": "pnpm --filter @uoa/api dev",
"dev:auth": "pnpm --filter @uoa/auth dev",
"dev:admin": "pnpm --filter @uoa/admin dev",
"build": "pnpm -r --if-present build",
"lint": "pnpm -r --if-present lint",
"format": "prettier -w .",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm -r --if-present test"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"pnpm": {
"overrides": {
"axios": "^1.15.2",
"fast-uri": "^3.1.1",
"fast-xml-builder": "^1.1.7",
"form-data": "^4.0.6",
"handlebars": "^4.7.9",
"protobufjs": "^7.5.6",
"react-router": "^7.14.2",
"vite": "^6.4.3",
"ws": "^7.5.11"
},
"auditConfig": {
"ignoreGhsas": [
"GHSA-67mh-4wv8-2f99",
"GHSA-g7r4-m6w7-qqqr",
"GHSA-gv7w-rqvm-qjhr"
]
}
}
}