-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.66 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.66 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
116
117
118
119
120
121
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"optimize": "tsx optimize-images.ts",
"build": "npm run optimize && tsc && vite build",
"build:local-seo": "npm run optimize && tsc && vite build && (npx react-snap || exit 0)",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --host",
"build:css": "tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"start": "npm run optimize && serve -s dist",
"generate-sitemap": "tsx src/utils/generate-sitemap.ts",
"indexnow": "node indexnow.mjs",
"generate:static": "tsx generateStaticPages.ts",
"build:bing": "pnpm run build && pnpm run preview & sleep 5 && node generateStaticPages.ts && pkill -f 'vite.*preview'",
"build:bing:windows": "pnpm run build && start /B pnpm run preview && timeout /t 5 && tsx generateStaticPages.ts && taskkill /F /IM node.exe /FI \"COMMANDLINE:*vite*preview*\""
},
"reactSnap": {
"include": [
"/",
"/femcoders-quienes-somos",
"/equipo",
"/eventos",
"/contacto",
"/blog",
"/login"
],
"crawl": false,
"waitFor": 500,
"removeBlobs": true,
"fixWebpackChunksIssue": false,
"skipThirdPartyRequests": true,
"concurrency": 1,
"timeout": 20000,
"source": "dist",
"destinationDir": "dist",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox",
"--disable-dev-shm-usage",
"--disable-accelerated-2d-canvas",
"--no-first-run",
"--no-zygote",
"--disable-gpu",
"--disable-extensions",
"--disable-web-security",
"--disable-features=VizDisplayCompositor"
],
"inlineCss": true,
"minifyHtml": {
"collapseWhitespace": true,
"removeComments": false
},
"minifyCss": {
"level": 1
},
"ignoreForPrerender": [
"/404",
"/admin/*",
"/register/*"
],
"removeStyleTags": false,
"asyncScriptTags": false,
"cacheAjaxRequests": false,
"preloadImages": false
},
"dependencies": {
"@emailjs/browser": "^4.3.3",
"@tanstack/react-query": "^5.45.1",
"aos": "^2.3.4",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"imagemin": "^9.0.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-webp": "^8.0.0",
"lucide-react": "^0.416.0",
"postcss": "^8.4.38",
"qrcode": "^1.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.24.0",
"react-snap": "^1.23.0",
"serve": "^14.2.3",
"sharp": "^0.33.5",
"sitemap": "^8.0.0"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/date-fns": "^2.6.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.9",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"puppeteer": "24.15.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.19.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-mkcert": "^1.17.5"
}
}