-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.21 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
{
"name": "github-repo-stats",
"version": "1.0.0",
"description": "GitHub repository statistics analyzer - lines of code, commits, and language breakdown",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"lucide-react": "^0.468.0",
"next": "^15.3.7",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.3",
"react-dom": "^19.0.3",
"recharts": "^2.15.0",
"swr": "^2.4.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.1.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "^15.3.7",
"jsdom": "^28.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.17.0"
}
}