This repository was archived by the owner on Jun 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "issuehub",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --project=chromium --grep-invert '@skip-ci'",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\" --ignore-path .prettierignore",
"deps:check": "npx depcheck --ignores=\"@tailwindcss/postcss,tailwindcss,@types/react-dom\""
},
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.0.1",
"@mui/material-nextjs": "9.1.1",
"@octokit/core": "^7.0.6",
"@tanstack/react-query": "^5.101.0",
"next": "16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "16.2.9",
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "6.0.2",
"depcheck": "^1.4.7",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"jsdom": "29.1.1",
"prettier": "^3.8.4",
"tailwindcss": "^4",
"typescript": "^6",
"typescript-eslint": "8.61.1",
"vitest": "4.1.9"
}
}