-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 4.2 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
{
"name": "@giwan/blog",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "npm run populateSearchData",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"populateSearchData": "node populateSearchData.js",
"build:scripts": "tsc -p tsconfig.scripts.json",
"validate-pwa": "npm run build:scripts && node --experimental-specifier-resolution=node scripts/dist/scripts/validate-pwa-build.js",
"validate-pwa-final": "node scripts/validate-pwa-final.js",
"test-pwa-functionality": "node scripts/test-pwa-functionality.js",
"lighthouse-audit": "node scripts/lighthouse-audit.js",
"build:pwa": "npm run build && npm run validate-pwa",
"test:pwa": "npm run validate-pwa-final && npm run test-pwa-functionality",
"audit:pwa": "npm run lighthouse-audit",
"predeploy": "npm run build:pwa",
"test": "jest",
"clean": "rm -rf docs/*",
"validate:tools": "node scripts/validate-tools.js",
"validate:tools:quick": "node scripts/validate-tools.js --quick",
"validate:tools:urls": "node scripts/validate-tools.js --urls",
"validate:blog-seo": "node scripts/check-blog-seo.js",
"validate:ssr-hydration": "node scripts/verify-ssr-hydration.js",
"audit:tools": "node scripts/audit-tools.js",
"maintenance:status": "node scripts/maintenance-scheduler.js status",
"maintenance:checklist": "node scripts/maintenance-scheduler.js checklist",
"maintenance:complete": "node scripts/maintenance-scheduler.js complete",
"tools:freshness": "node scripts/tool-freshness-tracker.js",
"lint": "eslint src --ext .ts,.tsx,.astro",
"lint:putout": "npx putout \"src/**/*.{js,ts,tsx,json,md}\"",
"lint:putout:fix": "npx putout \"src/**/*.{js,ts,tsx,json,md}\" --fix"
},
"dependencies": {
"@astrojs/mdx": "7.0.5",
"@astrojs/react": "5.0.7",
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"@fontsource/fira-code": "5.3.0",
"@fontsource/inter": "5.3.0",
"@fontsource/jetbrains-mono": "5.3.0",
"@fontsource/merriweather": "5.3.0",
"@giwan/is-valid-page-number": "0.0.4",
"@nanostores/react": "1.1.0",
"@radix-ui/react-slot": "1.3.3",
"@rollup/plugin-terser": "1.0.0",
"@tailwindcss/vite": "4.3.3",
"@types/jest": "30.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"astro": "7.1.6",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "1.27.0",
"nanostores": "1.4.2",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@emnapi/wasi-threads": "1.2.3",
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@putout/processor-html": "14.1.1",
"@tailwindcss/typography": "0.5.20",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.10.0",
"@testing-library/react": "16.3.2",
"@types/node": "25.9.5",
"@vite-pwa/astro": "1.2.0",
"babel-jest": "30.4.1",
"eslint": "10.8.0",
"eslint-plugin-astro": "1.7.0",
"http-server": "14.1.1",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"puppeteer": "24.43.1",
"putout": "42.10.3",
"ts-jest": "29.4.12",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0"
},
"overrides": {
"astro": "7.1.6",
"serialize-javascript": "^7.0.5",
"esbuild": "^0.28.1",
"filelist": "^1.0.6",
"jake": "^10.9.4",
"ejs": "^4.0.1",
"glob": "^10.5.0",
"minimatch": "^10.0.2",
"brace-expansion": "^5.0.7",
"@emnapi/runtime": "1.11.3",
"@emnapi/core": "1.11.3",
"@emnapi/wasi-threads": "1.2.3"
}
}