-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "repo-guardian",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.26.1",
"scripts": {
"dev": "pnpm --parallel --filter @repo-guardian/api --filter @repo-guardian/web run dev",
"dev:api": "pnpm --filter @repo-guardian/api run dev",
"dev:web": "pnpm --filter @repo-guardian/web run dev",
"generate:api-client": "pnpm --filter @repo-guardian/api-spec run generate",
"lint": "pnpm -r --if-present run lint",
"typecheck": "pnpm -r --if-present run typecheck",
"test": "pnpm -r --if-present run test",
"build": "pnpm -r --if-present run build"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.6.0",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.17",
"@types/react-dom": "^19.1.9",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.0.4",
"esbuild": "^0.27.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"supertest": "^7.1.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitest": "^3.2.4"
}
}