-
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.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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": "issuehub",
"version": "0.1.0",
"private": true,
"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": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/material-nextjs": "7.3.9",
"@octokit/core": "^7.0.6",
"@tanstack/react-query": "^5.90.20",
"next": "16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "5.1.3",
"depcheck": "^1.4.7",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jsdom": "28.0.0",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "4.0.18"
}
}