-
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.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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": "github-unlisted",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --webpack -p 3000",
"build": "next build",
"start": "next start",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"markdown-it": "^14.1.1",
"next": "^16.2.6",
"octokit": "^5.0.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"shiki": "^4.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.8.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}