-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 865 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 865 Bytes
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
{
"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"
}
}