-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.85 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.85 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "konxc.github.io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"validate": "astro check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:astro": "prettier --write \"src/**/*.astro\"",
"format:staged": "prettier --write --staged",
"pre-commit": "./scripts/pre-commit.sh",
"pre-push": "./scripts/pre-push.sh",
"pre-push:build": "./scripts/pre-push.sh --with-build",
"safe-push": "./scripts/pre-push.sh --with-build --confirm",
"test:toc:basic": "node scripts/basic-toc-test.js",
"test:toc:articles": "node scripts/test-toc-articles.js",
"test:mermaid": "node scripts/test-mermaid.mjs",
"analyze": "pnpm run build && echo 'Bundle analysis available at dist/bundle-analysis.html'",
"analyze:open": "pnpm run build && open dist/bundle-analysis.html",
"audit:performance": "pnpm run build && pnpm exec lighthouse http://localhost:4321 --output=html --output-path=./performance-audit.html --chrome-flags='--headless'",
"audit:performance:json": "pnpm run build && pnpm exec lighthouse http://localhost:4321 --output=json --output-path=./performance-audit.json --chrome-flags='--headless'",
"audit:accessibility": "pnpm run build && pnpm exec axe http://localhost:4321 --save=./accessibility-audit.json",
"audit:all": "pnpm run audit:performance && pnpm run audit:accessibility && pnpm run analyze",
"lint": "eslint . --ext .ts,.tsx,.astro",
"lint:fix": "eslint . --ext .ts,.tsx,.astro --fix",
"check:all": "pnpm run astro check && pnpm run lint && pnpm run format:check",
"pre-commit:enhanced": "./scripts/enhanced-pre-commit.sh",
"pre-push:enhanced": "./scripts/enhanced-pre-push.sh",
"test:final-phase": "node scripts/test-final-phase-features.js",
"test:blog:install": "npm install puppeteer",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:playwright:headed": "playwright test --headed",
"test:playwright:debug": "playwright test --debug",
"test:playwright:install": "playwright install",
"test:playwright:install-pnpm": "pnpm exec playwright install",
"test:compare": "node scripts/compare-package-managers.js",
"test:smart-header": "node scripts/simple-smart-header-test.js",
"test:smart-header:install": "pnpm install playwright && pnpx playwright install chromium",
"test:smart-header:quick": "node scripts/quick-smart-header-test.js",
"test:smart-header:html": "node scripts/test-smart-header-html.js",
"test:ecosystem": "node scripts/test-ecosystem-ui.js",
"prepare": "husky",
"db": "drizzle-kit",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/node": "^9.5.0",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/svelte": "^7.2.0",
"@builder.io/qwik": "^1.19.0",
"@builder.io/qwik-city": "^1.19.0",
"@libsql/client": "^0.17.0",
"@qwikdev/astro": "^0.8.3",
"@tailwindcss/vite": "^4.1.16",
"astro": "^5.14.8",
"astro-icon": "^1.1.5",
"better-auth": "^1.4.18",
"chart.js": "^4.5.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"highlightjs-solidity": "^2.0.6",
"katex": "^0.16.28",
"marked": "^17.0.3",
"marked-highlight": "^2.2.3",
"mermaid": "^11.12.3",
"puppeteer": "^24.26.1",
"slugify": "^1.6.6",
"svelte": "^5.41.4",
"tailwindcss": "^4.1.16",
"typescript": "^5.9.3",
"zod": "4.3.6"
},
"devDependencies": {
"@axe-core/cli": "^4.11.0",
"@eslint/js": "^9.38.0",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.71",
"@playwright/test": "^1.40.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"astro-eslint-parser": "^1.2.2",
"drizzle-kit": "^0.31.9",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-qwik": "^1.19.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lighthouse": "^13.0.1",
"playwright": "^1.40.0",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.7.1",
"rollup-plugin-visualizer": "^6.0.5",
"sharp": "^0.34.4",
"typescript-eslint": "^8.46.2"
},
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc"
}