-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "devcard",
"version": "1.0.0",
"description": "Dynamically generated GitHub stats for your profile README",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"wrangler dev\"",
"dev:client": "vite",
"dev:worker": "wrangler dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && wrangler deploy",
"typecheck": "tsc --noEmit",
"typecheck:client": "tsc --noEmit -p tsconfig.client.json",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched"
]
},
"keywords": [
"github",
"readme",
"stats",
"cloudflare-workers"
],
"author": "",
"license": "MIT",
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.11.4",
"i18next": "25.7.3",
"lucide-react": "^0.468.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "16.5.1",
"react-router-dom": "^7.0.0",
"tailwind-merge": "^2.6.0",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@cloudflare/workers-types": "^4.0.0",
"@playwright/test": "1.57.0",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"wrangler": "^4.54.0"
}
}