-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.32 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
{
"name": "ghloc-web",
"private": true,
"type": "module",
"scripts": {
"build": "cross-env FORCE_COLOR=1 run-s -l prepare:nitro build:*",
"build:languages": "tsx scripts/build-languages.ts",
"build:sitemap": "tsx scripts/build-sitemap.ts",
"build:vite": "vite build",
"build:nitro": "nitro build",
"dev": "cross-env FORCE_COLOR=1 npm-run-all -l -s build:languages prepare:nitro -p dev:*",
"dev:vite": "vite --watch build",
"dev:nitro": "cross-env NODE_OPTIONS=--enable-source-maps nitro dev",
"preview": "cross-env NODE_OPTIONS=--enable-source-maps node .output/server/index.mjs",
"lint": "cross-env FORCE_COLOR=1 run-p -lc lint:*",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit",
"lint:format": "prettier . --check",
"format": "prettier . --write",
"clean": "rimraf dist dist-vite .nitro .output .vercel node_modules/.cache",
"prepare": "cross-env FORCE_COLOR=1 run-s -l prepare:*",
"prepare:husky": "husky",
"prepare:nitro": "nitropack prepare"
},
"dependencies": {
"@arborium/arborium": "^2.13.0",
"@vercel/analytics": "^1.6.1",
"@vercel/og": "^0.9.0",
"@vercel/speed-insights": "^1.3.1",
"dayjs": "^1.11.19",
"devalue": "^5.6.2",
"ofetch": "^1.5.1"
},
"devDependencies": {
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^10.0.1",
"@octokit/types": "^16.0.0",
"@pajecawav/prettier-config": "^1.0.0",
"@tailwindcss/vite": "^4.2.1",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.10.15",
"cross-env": "^10.1.0",
"eslint": "^10.0.2",
"hono": "^4.11.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nitropack": "^2.13.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"tailwindcss": "^4.2.1",
"tiny-server-timing": "^0.1.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"unplugin": "^3.0.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-tsconfig-paths": "^6.1.1"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}